Skip to content

Commit

Permalink
[setup] disable python 3.12 support, it's not supported yet
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBldy committed Oct 4, 2023
1 parent 7a86882 commit 54812d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
version: ["3.8", "3.9", "3.10", "3.11"]
services:
postgres:
image: "postgres:12.16"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
from setuptools import setup

setup(python_requires=">=3.8.1")
setup(python_requires=">=3.8.1, <3.12")

0 comments on commit 54812d5

Please sign in to comment.