From dd459ad26eb53299e3b4056a66acb8b8947c4222 Mon Sep 17 00:00:00 2001 From: Wes Williams Date: Mon, 9 Mar 2026 10:31:03 -0400 Subject: [PATCH] Upgrade to python 3.13. --- .github/workflows/tests.yml | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7211bde..160e06b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,7 +32,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: 3.13 - name: psycopg3 prerequisites run: sudo apt-get install libpq-dev diff --git a/requirements.txt b/requirements.txt index 0eaee87..8314cbc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ Cython==3.0.10 -psycopg[binary]==3.1.19 +psycopg[binary]==3.3.3 Django==5.2.8 python-dateutil==2.9.0.post0 diff --git a/setup.py b/setup.py index 8c6dac9..e4a1e49 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name='daffodil', - version='0.8.2', + version='0.8.3', author='James Robert', description='A Super-simple DSL for filtering datasets', license='MIT',