Skip to content

Commit a7af5bd

Browse files
superbobrycopybara-github
authored andcommitted
Dropped 3.6 from the list of supported Python versions
This commit also upgrades the CI environment to manylinux2014, because manylinux2010 is no longer supported. See pypa/manylinux#1281. PiperOrigin-RevId: 496128466
1 parent 947e87e commit a7af5bd

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
matrix:
3434
os: [windows-latest, ubuntu-latest, macos-latest]
35-
python_tag: [cp36, cp37, cp38, cp39, cp310, cp311]
35+
python_tag: [cp37, cp38, cp39, cp310, cp311]
3636
include:
3737
- os: windows-latest
3838
os_tag: win_amd64
@@ -62,8 +62,8 @@ jobs:
6262
env:
6363
CIBW_BUILD: ${{ matrix.python_tag }}-${{ matrix.os_tag }}
6464
CIBW_BUILD_VERBOSITY: 3
65-
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.6"
66-
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2010_x86_64
65+
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7"
66+
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64
6767
CIBW_TEST_REQUIRES: pytest
6868
CIBW_BEFORE_TEST: pip install -r requirements-test.txt
6969
CIBW_TEST_COMMAND: pytest --pyargs tree

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ def build_extension(self, ext):
143143
'Intended Audience :: Developers',
144144
'Intended Audience :: Science/Research',
145145
'License :: OSI Approved :: Apache Software License',
146-
'Programming Language :: Python :: 3.6',
147146
'Programming Language :: Python :: 3.7',
148147
'Programming Language :: Python :: 3.8',
149148
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)