Skip to content

Commit 6a105c0

Browse files
Merge pull request #2042 from VWS-Python/python-3.12
Support and require Python 3.12
2 parents 2550f00 + c039e62 commit 6a105c0

File tree

7 files changed

+7
-9
lines changed

7 files changed

+7
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python-version: ["3.11"]
20+
python-version: ["3.12"]
2121
platform: [ubuntu-latest]
2222

2323
runs-on: ${{ matrix.platform }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
python-version: ["3.11"]
14+
python-version: ["3.12"]
1515

1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/windows-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python-version: ["3.11"]
20+
python-version: ["3.12"]
2121
platform: [windows-latest]
2222

2323
runs-on: ${{ matrix.platform }}

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Installation
1313
1414
pip install vws-python
1515
16-
This is tested on Python 3.11+. Get in touch with
16+
This is tested on Python 3.12+. Get in touch with
1717
``adamdangoor@gmail.com`` if you would like to use this with another
1818
language.
1919

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
htmlhelp_basename = "VWSPYTHONdoc"
5757
autoclass_content = "init"
5858
intersphinx_mapping = {
59-
"python": ("https://docs.python.org/3.11", None),
59+
"python": ("https://docs.python.org/3.12", None),
6060
}
6161
nitpicky = True
6262
warning_is_error = True

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,15 +213,13 @@ keywords = [
213213
]
214214
license = { file = "LICENSE" }
215215
authors = [ { name = "Adam Dangoor", email = "adamdangoor@gmail.com"} ]
216-
requires-python = ">=3.10"
216+
requires-python = ">=3.12"
217217
classifiers = [
218218
"Development Status :: 5 - Production/Stable",
219219
"Environment :: Web Environment",
220220
"License :: OSI Approved :: MIT License",
221221
"Operating System :: POSIX",
222222
"Programming Language :: Python :: 3 :: Only",
223-
"Programming Language :: Python :: 3.10",
224-
"Programming Language :: Python :: 3.11",
225223
"Programming Language :: Python :: 3.12",
226224
]
227225
dynamic = [

readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-20.04
55
tools:
6-
python: "3.11"
6+
python: "3.12"
77

88
python:
99
install:

0 commit comments

Comments
 (0)