Skip to content

Commit 08eb0fa

Browse files
committed
Support Python 3.12
1 parent 23fdb26 commit 08eb0fa

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ authors = [ { name = "Adam Dangoor", email = "adamdangoor@gmail.com"} ]
210210
classifiers = [
211211
"Operating System :: POSIX",
212212
"Environment :: Web Environment",
213-
"Programming Language :: Python :: 3.11",
213+
"Programming Language :: Python :: 3.12",
214214
"License :: OSI Approved :: MIT License",
215215
"Development Status :: 5 - Production/Stable",
216216
]
@@ -220,7 +220,7 @@ keywords = ["vuforia", "vws", "client"]
220220
license = { file = "LICENSE" }
221221
name = "vws-python"
222222
readme = { file = "README.rst", content-type = "text/x-rst"}
223-
requires-python = ">=3.10"
223+
requires-python = ">=3.12"
224224
dependencies = [
225225
"VWS-Auth-Tools",
226226
"requests",

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)