From 7a06aa2cfb1cd916972e1678182e91a24f11129c Mon Sep 17 00:00:00 2001 From: chrishavlin Date: Wed, 23 Oct 2024 16:21:35 -0500 Subject: [PATCH] bump min python to 3.10 --- .github/workflows/test_and_deploy.yml | 2 +- .readthedocs.yaml | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 9072e53..2175cc5 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/.readthedocs.yaml b/.readthedocs.yaml index d2d9df2..2998c44 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -9,7 +9,7 @@ version: 2 build: os: ubuntu-20.04 tools: - python: "3.8" + python: "3.10" # You can also specify other tool versions: # nodejs: "16" # rust: "1.55" diff --git a/pyproject.toml b/pyproject.toml index b8416b2..f82e69c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.black] line-length = 88 -target-version = ['py39'] +target-version = ['py310'] [tool.isort] profile = "black" diff --git a/setup.cfg b/setup.cfg index 7c16e20..aabddea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -39,7 +39,7 @@ install_requires = qtpy unyt yt>=4.0.1 -python_requires = >=3.9 +python_requires = >=3.10 package_dir = =src setup_requires =