Skip to content

Commit

Permalink
Remove support for Python 3.7 as it has reached EOL (#186)
Browse files Browse the repository at this point in the history
* Remove support for Python 3.7 as it has reached EOL

* Also remove GitHub workflow
  • Loading branch information
diox committed Apr 2, 2024
1 parent 293767c commit 60f74ca
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -9,7 +9,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 Makefile
Expand Up @@ -15,7 +15,7 @@ clean: ## Clean build artifacts

.PHONY: lint
lint: ## Lint and black reformat files
black --target-version=py37 setup.py dennis tests
black --target-version=py311 setup.py dennis tests
flake8 dennis tests

.PHONY: test
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -47,15 +47,14 @@ def get_version():
[console_scripts]
dennis-cmd=dennis.cmdline:click_run
""",
python_requires=">=3.7",
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"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 Down
3 changes: 1 addition & 2 deletions tox.ini
@@ -1,9 +1,8 @@
[tox]
envlist = py37,py38,py39,py310,py311
envlist = py38,py39,py310,py311

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

0 comments on commit 60f74ca

Please sign in to comment.