From 3488b354667de1a4b287f3dbd61d807f16e18f8c Mon Sep 17 00:00:00 2001 From: Rehan Khwaja Date: Wed, 18 Oct 2023 00:38:01 -0700 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 ac15105..f5353e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 @@ -38,7 +38,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 8820288..ba5ff5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "listdiff" -version = "1.0.2" +version = "1.0.3" description = "Diff 2 python lists using a given key" 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", ] requires-python = ">=3.8" dependencies = []