Skip to content

Commit

Permalink
Support python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rkhwaja committed Oct 8, 2024
1 parent b31813f commit 9b327ea
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", "3.12"]
python-version: ["3.13"]

steps:
- uses: actions/checkout@v4
Expand All @@ -36,7 +36,7 @@ jobs:
uv run poe lint
- name: Tests
run: |
if python --version | grep -q 'Python 3.12' ; then
if python --version | grep -q 'Python 3.13' ; then
uv run poe test
fi
- name: Codecov
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "wccls"
version = "3.1.4"
version = "3.1.5"
description = "Scraper for the WCCLS account page"
maintainers = [
{ name = "Rehan Khwaja", email = "rehan@khwaja.name" }
Expand All @@ -14,7 +14,8 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"beautifulsoup4>=4.9.3",
Expand Down

0 comments on commit 9b327ea

Please sign in to comment.