From 9b327eac6dace9dd0895dfb3d301b389b58cbada Mon Sep 17 00:00:00 2001 From: Rehan Khwaja Date: Sun, 12 May 2024 23:46:56 -0400 Subject: [PATCH] Support python 3.13 --- .github/workflows/ci.yml | 4 ++-- pyproject.toml | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9161e4..6b6c76d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 992b795..5bfc952 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" } @@ -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",