diff options
author | Federico Caselli <cfederico87@gmail.com> | 2020-10-08 21:01:19 +0200 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2020-10-08 21:32:09 +0200 |
commit | 9b3812a0c646ee14a6f102e6dc87298d5c255cec (patch) | |
tree | fa4a9e535b728f803dcce1d7700536c015abd850 /.github | |
parent | bcc17b1d6e2cac3b0e45c0b17a62cf2d5fc5c5ab (diff) | |
download | sqlalchemy-9b3812a0c646ee14a6f102e6dc87298d5c255cec.tar.gz |
Drop python 3.5 support
Fixes: #5634
Change-Id: Ie8d4076ee35234b535a04e6fb9321096df3f648b
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/create-wheels.yaml | 8 | ||||
-rw-r--r-- | .github/workflows/run-test.yaml | 7 |
2 files changed, 3 insertions, 12 deletions
diff --git a/.github/workflows/create-wheels.yaml b/.github/workflows/create-wheels.yaml index 8c2d7ee60..673081fca 100644 --- a/.github/workflows/create-wheels.yaml +++ b/.github/workflows/create-wheels.yaml @@ -24,7 +24,6 @@ jobs: - "macos-latest" python-version: - "2.7" - - "3.5" - "3.6" - "3.7" - "3.8" @@ -83,10 +82,9 @@ jobs: pip install -f dist --no-index sqlalchemy - name: Check c extensions - # on windows in python 2.7 and 3.5 the cextension fail to build. + # on windows in python 2.7 the cextension fail to build. # for python 2.7 visual studio 9 is missing - # for python 3.5 the linker has an error "cannot run 'rc.exe'" - if: matrix.os != 'windows-latest' || ( matrix.python-version != '2.7' && matrix.python-version != '3.5' ) + if: matrix.os != 'windows-latest' || matrix.python-version != '2.7' run: | python -c 'from sqlalchemy import cprocessors, cresultproxy, cutils' @@ -145,7 +143,6 @@ jobs: # the versions are <python tag>-<abi tag> as specified in PEP 425. - cp27-cp27m - cp27-cp27mu - - cp35-cp35m - cp36-cp36m - cp37-cp37m - cp38-cp38 @@ -294,7 +291,6 @@ jobs: - "ubuntu-latest" python-version: # the versions are <python tag>-<abi tag> as specified in PEP 425. - - cp35-cp35m - cp36-cp36m - cp37-cp37m - cp38-cp38 diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index 79f2a6086..7b32950f0 100644 --- a/.github/workflows/run-test.yaml +++ b/.github/workflows/run-test.yaml @@ -29,7 +29,6 @@ jobs: - "macos-latest" python-version: - "2.7" - - "3.5" - "3.6" - "3.7" - "3.8" @@ -47,13 +46,10 @@ jobs: pytest-args: "-k 'not test_autocommit_on and not test_turn_autocommit_off_via_default_iso_level and not test_autocommit_isolation_level'" exclude: - # c-extensions fail to build on windows for python 3.5 and 2.7 + # c-extensions fail to build on windows for python 2.7 - os: "windows-latest" python-version: "2.7" build-type: "cext" - - os: "windows-latest" - python-version: "3.5" - build-type: "cext" # linux and osx do not have x86 python - os: "ubuntu-latest" architecture: x86 @@ -94,7 +90,6 @@ jobs: strategy: matrix: python-version: - - cp35-cp35m - cp36-cp36m - cp37-cp37m - cp38-cp38 |