Skip to content

Commit

Permalink
feat: drop support for python 3.7 (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
jooola committed Jul 17, 2023
1 parent a84592e commit 2ce71e9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

name: Python ${{ matrix.python-version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Expand Up @@ -12,7 +12,7 @@ test:

parallel:
matrix:
- python_version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
- python_version: ["3.8", "3.9", "3.10", "3.11"]

image: python:${python_version}-alpine
before_script:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -33,7 +33,7 @@ repos:
rev: v3.9.0
hooks:
- id: pyupgrade
args: [--py37-plus]
args: [--py38-plus]

- repo: https://github.com/pycqa/isort
rev: 5.12.0
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -29,13 +29,12 @@
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"python-dateutil>=2.7.5",
"requests>=2.20",
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39, py310, py311
envlist = py38, py39, py310, py311

[testenv]
passenv = FAKE_API_ENDPOINT
Expand All @@ -10,7 +10,6 @@ commands =

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
Expand Down

0 comments on commit 2ce71e9

Please sign in to comment.