Skip to content

Commit

Permalink
Support Python 3.12 (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
brainix authored Nov 5, 2023
1 parent b80a595 commit bd306d1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.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.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', 3.12]
services:
redis:
image: redis
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ THIS_FILE := $(lastword $(MAKEFILE_LIST))
venv ?= venv

init upgrade: formulae := {openssl,readline,xz,redis}
python upgrade: version ?= 3.11.6
python upgrade: version ?= 3.12.0
upgrade: requirements ?= requirements-to-freeze.txt
delete-keys: pattern ?= tmp:*

Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ rich==13.6.0
ruamel.yaml==0.17.35
ruamel.yaml.clib==0.2.8
safety==2.3.5
setuptools==68.2.2
six==1.16.0
smmap==5.0.1
stevedore==5.1.0
Expand All @@ -61,4 +62,5 @@ typing_extensions==4.8.0
urllib3==2.0.7
uvloop==0.19.0
webencodings==0.5.1
wheel==0.41.3
zipp==3.17.0
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: AsyncIO',
'Typing :: Typed',
],
Expand Down

0 comments on commit bd306d1

Please sign in to comment.