Skip to content

Commit

Permalink
Support python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rkhwaja committed Nov 20, 2023
1 parent b05e6c5 commit fea769b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11"]
python-version: [3.9, "3.10", "3.11", "3.12.0"]

steps:
- uses: actions/checkout@v3
Expand All @@ -36,7 +36,7 @@ jobs:
poe lint
- name: Tests
run: |
if python --version | grep -q 'Python 3.11' ; then
if python --version | grep -q 'Python 3.12' ; then
poe test
fi
- name: Coverage
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
packages = [
{ include = "wccls", from = "src" }
Expand All @@ -29,7 +30,7 @@ requests = ">=2.25.1"
urllib3 = [
{ version = ">=1.26", python = ">=3.10,<4" }
]
aiohttp = ">=3.8.1"
aiohttp = { version = ">=3.9" }

[tool.poetry.group.dev.dependencies]
pytest = ">=7.1"
Expand Down

0 comments on commit fea769b

Please sign in to comment.