From 718c9a795f29d92afe550158999455701ff2c4d2 Mon Sep 17 00:00:00 2001 From: Wes Williams Date: Mon, 9 Mar 2026 11:01:20 -0400 Subject: [PATCH] Upgrade to python 3.13 --- .github/workflows/tests.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6ecb82a..3f30430 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.12 + python-version: 3.13 - name: install python dependencies run: | diff --git a/pyproject.toml b/pyproject.toml index d2118f3..41e5674 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "resigner" -version = "0.3.19" +version = "0.3.20" authors = [ {name = "Media Predict"}, {email = "engineering@mediapredict.com"} @@ -13,7 +13,7 @@ description = "Django app that provides a way to simply secure your APIs" license = {text = "GPLv3"} keywords = ["django", "api", "signed"] urls = {homepage = "https://github.com/mediapredict/resigner"} -requires-python = ">=3.12" +requires-python = ">=3.13" dependencies = ["django>=4.2", "requests>=2.31"] classifiers = [ "Development Status :: 5 - Production/Stable",