Skip to content

Commit

Permalink
python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
cynicaljoy committed Oct 3, 2023
1 parent 4b18abd commit b3144a8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
# Run in all these versions of Python
# current and last three python versions
python-version:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The following versions of Python are supported:
* Python 3.9
* Python 3.10
* Python 3.11
* Python 3.12


Basic Usage
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Operating System :: MacOS :: MacOS X",
Expand Down
14 changes: 14 additions & 0 deletions tests/docker-compose-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@ services:
timeout: 3s
retries: 30

python-312:
environment:
FAUNA_SECRET: "secret"
FAUNA_ENDPOINT: http://faunadb:8443
image: python:3.12.0rc3-alpine3.18
container_name: python-312
depends_on:
- faunadb
volumes:
- "../:/tmp/app"
working_dir: "/tmp/app"
command:
- tests/run-tests.sh

python-311:
environment:
FAUNA_SECRET: "secret"
Expand Down

0 comments on commit b3144a8

Please sign in to comment.