Skip to content

Commit 1de2ec2

Browse files
Config and documentation changes to target Python 3.10-3.12
* documentation and setup changes to target 3.10, 3.11 and 3.12 * default changed from Python 3.9 to 3.10 on tox conf and deploment workflow
1 parent e00c257 commit 1de2ec2

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yaml

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.9, "3.10", "3.11"]
16+
python-version: ["3.10", "3.11", "3.12"]
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.10') && (matrix.os == 'ubuntu-latest')}}
41+
if: ${{ (matrix.python-version == '3.11') && (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.10
38+
- name: Set up Python 3.11
3939
uses: actions/setup-python@v4
4040
with:
41-
python-version: "3.10"
41+
python-version: "3.11"
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.9, 3.10, and 3.11. We aim to support the three most
11+
Officially Python 3.10, 3.11, and 3.12. We aim to support the three most
1212
recent major versions.
1313

1414
OS support

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ project_urls =
1313
classifiers =
1414
License :: OSI Approved :: MIT License
1515
Operating System :: OS Independent
16-
Programming Language :: Python :: 3.9
1716
Programming Language :: Python :: 3.10
1817
Programming Language :: Python :: 3.11
18+
Programming Language :: Python :: 3.12
1919

2020
[options]
2121
zip_safe = False
2222
packages = find_namespace:
23-
python_requires = >=3.9
23+
python_requires = >=3.10
2424
install_requires =
2525
oauthlib
2626
requests-oauthlib

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ deps =
1212
pytest-cov
1313

1414
[testenv:docs]
15-
basepython = python3.10
15+
basepython = python3.11
1616
changedir = docs
1717
deps =
1818
sphinx==5.3.0

0 commit comments

Comments
 (0)