Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Python 3.7 support and add Python 3.12 support #163

Merged
merged 2 commits into from
Mar 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
- macos-latest
- windows-latest
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
cache: 'pip'

- name: Install dependencies
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ Any important notes regarding the update.
### Added

- MacOS support.
- Added Python 3.12 support.

### Removed

- Dropped Python 3.7 support.

## 1.8.1 - 2023-12-17

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Installation guidelines are provided over here:

### System requirements

* Python3, to make everything up and running (supported versions: 3.7, 3.8, 3.9, 3.10, and 3.11).
* Python3, to make everything up and running (supported versions: 3.8, 3.9, 3.10, 3.11, and 3.12).

Linux, Mac and Windows are supported.

Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
black>=22.10.0,<22.11.0
codecov>=2.1.12,<2.2.0
flake8>=5.0.4,<5.1.0
flake8>=7.0.0,<7.1.0
isort>=5.10.1,<5.11.0
pre-commit>=2.20.0,<2.21.0
pytest-asyncio>=0.20.2,<0.21.0
Expand Down
Loading