Skip to content

Commit

Permalink
Drop Python 3.7 support (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
amureki authored Jul 4, 2023
1 parent a49f6ce commit b3b4649
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
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: Test on Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.x"
architecture: x64
- run: pip install tox
- run: tox -e flake8
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
### Dropped
- Support for Python 3.7

## [0.11.2] - 2022-11-18
### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## Requirements

* [Python][python] 3.7+
* [Python][python] 3.8+
* [Django][django] 3.2+
* [Dramatiq][dramatiq] 1.11+

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def rel(*xs):
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -60,6 +59,6 @@ def rel(*xs):
"twine",
]
},
python_requires=">=3.7",
python_requires=">=3.8",
include_package_data=True,
)
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[tox]
envlist=
py37-django{32}
py38-django{32,40,41}
py39-django{32,40,41}
py310-django{32,40,41}
Expand Down

0 comments on commit b3b4649

Please sign in to comment.