Skip to content

Commit

Permalink
Support Python 3.12 (#656)
Browse files Browse the repository at this point in the history
* Support Python 3.12

* Install setuptools

---------

Co-authored-by: Uxio Fuentefria <[email protected]>
  • Loading branch information
Uxio0 and Uxio0 authored Feb 19, 2024
1 parent f0f1293 commit 4b3b798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
python-version: [3.12]

steps:
- uses: actions/checkout@v4
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
services:
postgres:
image: postgres:13
Expand All @@ -62,7 +62,7 @@ jobs:
cache-dependency-path: 'requirements*.txt'
- name: Install dependencies
run: |
pip install wheel
pip install wheel setuptools
pip install -r requirements-test.txt coveralls
env:
PIP_USE_MIRRORS: true
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
project_urls =
Expand Down

0 comments on commit 4b3b798

Please sign in to comment.