Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpieters committed Jan 25, 2023
1 parent e203d61 commit dcb44ab
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
needs: [lint]
strategy:
matrix:
pyver: ['3.7', '3.8', '3.9', '3.10', '~3.11.0-0']
pyver: ['3.8', '3.9', '3.10', '~3.11.0-0']
no-extensions: ['', 'Y']
os: [ubuntu, macos, windows]
exclude:
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ build:
image: latest

python:
version: 3.7
version: 3.10
install:
- requirements: requirements/doc.txt
1 change: 1 addition & 0 deletions CHANGES/413.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dropped Python 3.7 support.
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ classifiers =
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -32,7 +31,7 @@ classifiers =
Operating System :: Microsoft :: Windows

[options]
python_requires = >=3.7
python_requires = >=3.8
packages = find:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#setting-the-zip-safe-flag
zip_safe = False
Expand Down
13 changes: 3 additions & 10 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]

envlist = check, clean, {py36,py37,py38,py39}-{cython,pure}, report
envlist = check, clean, {py38,py39,py310}-{cython,pure}, report

[testenv]

Expand All @@ -18,13 +18,6 @@ commands =
setenv =
pure: FROZENLIST_NO_EXTENSIONS = 1

basepython:
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10

[testenv:check]

deps =
Expand All @@ -38,7 +31,7 @@ commands =
python setup.py check -rms

basepython:
python3.8
python3.10

[testenv:clean]

Expand All @@ -49,7 +42,7 @@ commands =
coverage erase

basepython:
python3.8
python3.10

[testenv:report]

Expand Down

0 comments on commit dcb44ab

Please sign in to comment.