Skip to content

Commit 74d3a4d

Browse files
ESS-3438 Update to support Python from 3 .11 to 3.13 (#138)
* ESS-3438 Update to Python 3.11 to 3.13
1 parent f44081f commit 74d3a4d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: ["3.10", "3.11", "3.12"]
16+
python-version: ["3.11", "3.12", "3.13"]
1717

1818
steps:
1919
- uses: actions/checkout@v2
@@ -38,4 +38,4 @@ jobs:
3838

3939
- name: Test doc build with tox
4040
run: tox -e docs
41-
if: ${{ (matrix.python-version == '3.11') && (matrix.os == 'ubuntu-latest')}}
41+
if: ${{ (matrix.python-version == '3.12') && (matrix.os == 'ubuntu-latest')}}

.github/workflows/deploy_public.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v3
3737

38-
- name: Set up Python 3.11
38+
- name: Set up Python 3.12
3939
uses: actions/setup-python@v4
4040
with:
41-
python-version: "3.11"
41+
python-version: "3.12"
4242

4343
- name: Install dependencies
4444
run: |

docs/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Head over to `Python.org`_ for instructions.
88

99
Python version support
1010
----------------------
11-
Officially Python 3.10, 3.11, and 3.12. We aim to support the three most
11+
Officially Python 3.11, 3.12, and 3.13. We aim to support the three most
1212
recent major versions.
1313

1414
OS support

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ dynamic = ["version"]
99
description = "DataReservoir.io Python API"
1010
readme = "README.rst"
1111
license = { file = "LICENSE" }
12-
requires-python = ">3.10"
12+
requires-python = ">3.11"
1313
classifiers = [
1414
"Development Status :: 5 - Production/Stable",
1515
"License :: OSI Approved :: MIT License",
1616
"Operating System :: OS Independent",
17-
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
2020
]
2121
dependencies = [
2222
"numpy",
@@ -66,7 +66,7 @@ deps =
6666
6767
6868
[testenv:docs]
69-
basepython = python3.11
69+
basepython = python3.12
7070
commands = sphinx-build -W -b html -d {toxworkdir}/docs_doctree docs {toxworkdir}/docs_out
7171
deps =
7272
sphinx==5.3.0

0 commit comments

Comments
 (0)