Skip to content

Commit

Permalink
Add official support for Python 3.12 and remove official support for
Browse files Browse the repository at this point in the history
Python 3.7
  • Loading branch information
jdholtz committed Oct 7, 2023
1 parent 1912c8d commit c49a015
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: "3.12"
- name: flake8
uses: py-actions/flake8@v2
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ If there is no "Upgrading" header for that version, no post-upgrade actions need


## Upcoming
### New Features
- Added official Python 3.12 support
- Python 3.7 is officially unsupported now
### Upgrading
- Upgrade the dependencies to the latest versions by running `pip install -r requirements.txt`
- If you are using Python 3.7, the script still works. However, it is officially unsupported and therefore recommended to upgrade
to a newer version


## 6.1 (2023-09-28)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine
FROM python:3.12-alpine

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ information beforehand.
## Installation

### Prerequisites
- [Python 3.7+][0]
- [Python 3.8+][0]
- [Pip][1]
- [Any Chromium-based browser][2]

Expand Down

0 comments on commit c49a015

Please sign in to comment.