From 3683b0de97c43cb512190c317e66757e390f614c Mon Sep 17 00:00:00 2001 From: Marcus Read Date: Mon, 24 Jun 2024 19:00:35 +0100 Subject: [PATCH] Bump supported python upper limit to 3.12 --- .github/workflows/main.yml | 4 ++-- pyproject.toml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8c3fc713..3170dbe0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,11 +15,11 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.9", "3.11"] + python-version: ["3.9", "3.12"] include: - python-version: "3.9" requirements_file: requirements_dev.txt - - python-version: "3.11" + - python-version: "3.12" requirements_file: requirements_minpandas.txt steps: diff --git a/pyproject.toml b/pyproject.toml index 5e8e2110..9bd7388c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: Apache Software License", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering", @@ -63,4 +64,4 @@ write_to = "exchange_calendars/_version.py" [tool.black] line-length = 88 -target-version = ['py39', 'py310', 'py311'] +target-version = ['py39', 'py310', 'py311', 'py312']