diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2020-10-10 16:02:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-10-10 16:02:26 +0000 |
commit | d0b5ce2ad4cb6149dbe3a378665c9c093da3f4f7 (patch) | |
tree | cc735df3a6cf162f7b527456f6e470f38364aa84 /.github | |
parent | 2827aa911991fb3a39b8adc3b400053e38265edc (diff) | |
parent | 9b3812a0c646ee14a6f102e6dc87298d5c255cec (diff) | |
download | sqlalchemy-d0b5ce2ad4cb6149dbe3a378665c9c093da3f4f7.tar.gz |
Merge "Drop python 3.5 support"
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 ecf17e990..7d08b2b71 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" @@ -84,10 +83,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' @@ -146,7 +144,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 @@ -296,7 +293,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 a8b0af4b6..1382bc95b 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" @@ -48,13 +47,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 @@ -95,7 +91,6 @@ jobs: strategy: matrix: python-version: - - cp35-cp35m - cp36-cp36m - cp37-cp37m - cp38-cp38 |