Skip to content

Commit 2ce71e9

Browse files
authored
feat: drop support for python 3.7 (#242)
1 parent a84592e commit 2ce71e9

5 files changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1515

1616
name: Python ${{ matrix.python-version }}
1717
steps:

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test:
1212

1313
parallel:
1414
matrix:
15-
- python_version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
15+
- python_version: ["3.8", "3.9", "3.10", "3.11"]
1616

1717
image: python:${python_version}-alpine
1818
before_script:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ repos:
3333
rev: v3.9.0
3434
hooks:
3535
- id: pyupgrade
36-
args: [--py37-plus]
36+
args: [--py38-plus]
3737

3838
- repo: https://github.com/pycqa/isort
3939
rev: 5.12.0

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,12 @@
2929
"License :: OSI Approved :: MIT License",
3030
"Natural Language :: English",
3131
"Programming Language :: Python :: 3",
32-
"Programming Language :: Python :: 3.7",
3332
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",
3736
],
38-
python_requires=">=3.7",
37+
python_requires=">=3.8",
3938
install_requires=[
4039
"python-dateutil>=2.7.5",
4140
"requests>=2.20",

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37, py38, py39, py310, py311
2+
envlist = py38, py39, py310, py311
33

44
[testenv]
55
passenv = FAKE_API_ENDPOINT
@@ -10,7 +10,6 @@ commands =
1010

1111
[gh-actions]
1212
python =
13-
3.7: py37
1413
3.8: py38
1514
3.9: py39
1615
3.10: py310

0 commit comments

Comments
 (0)