Skip to content

Commit 09e24c7

Browse files
authored
chore: drop support for python 3.7 (#282)
1 parent 3c9b138 commit 09e24c7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: ["pypy-3.7", "3.7", "3.8", "3.9", "3.10", "3.11"]
9+
python-version: ["pypy-3.8", "3.8", "3.9", "3.10", "3.11"]
1010
steps:
1111
- name: Check out repository
1212
uses: actions/checkout@v3

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tasks:
77
# Upgrade pyenv itself
88
pyenv update
99
10-
export PY_VERSIONS="3.7 3.8 3.9 3.10 3.11"
10+
export PY_VERSIONS="3.8 3.9 3.10 3.11"
1111
1212
# Install all supported Python versions
1313
for py in $PY_VERSIONS;

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Unreleased (???)
55
-----------------
66

77
* Test against Python 3.11, update listed support in classifiers
8+
* Drop support for Python 3.7
89

910
37.3 (2022-10-31)
1011
-----------------

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
"Programming Language :: Python",
4848
"Programming Language :: Python :: 3",
4949
"Programming Language :: Python :: 3 :: Only",
50-
"Programming Language :: Python :: 3.7",
5150
"Programming Language :: Python :: 3.8",
5251
"Programming Language :: Python :: 3.9",
5352
"Programming Language :: Python :: 3.10",
@@ -60,5 +59,5 @@
6059
include_package_data=True,
6160
extras_require={"md": "cmarkgfm>=0.8.0"},
6261
packages=setuptools.find_packages(exclude=["tests", "tests.*"]),
63-
python_requires=">=3.7",
62+
python_requires=">=3.8",
6463
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,pep8,packaging,noextra,mypy
2+
envlist = py38,py39,py310,py311,pep8,packaging,noextra,mypy
33
isolated_build = True
44

55
[testenv]

0 commit comments

Comments
 (0)