Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Add support for Python 3.12 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sinclert authored Oct 3, 2023
1 parent 1efd550 commit 8f04c37
Show file tree
Hide file tree
Showing 2 changed files with 3 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 @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.11", "3.12"]
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click==8.1.5",
Expand Down Expand Up @@ -64,7 +65,7 @@ dialect_map_data = [
# Section with black configuration options
[tool.black]
line-length = 100
target-version = ['py311']
target-version = ['py311', 'py312']
include = '\.pyi?$'
exclude = '''
(
Expand Down

0 comments on commit 8f04c37

Please sign in to comment.