Skip to content

Commit b6ed6de

Browse files
committed
Remove deprecated python version and add new ones
1 parent 133c9b4 commit b6ed6de

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["38", "39", "310", "311"]
15+
python-version: ["310", "311", "312", "313"]
1616

1717
steps:
1818
- uses: actions/checkout@v3

doc/userguide.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ python3: command not found
143143
Run the following command::
144144

145145
$ python --version
146-
Python 3.8.5
146+
Python 3.13.4
147147

148-
Check that the version is at least 3.7. If that’s the case, replace ``python3``
148+
Check that the version is at least 3.10. If that’s the case, replace ``python3``
149149
by ``python`` when running commands. If that’s not the case, install Python 3.
150150

151151
First steps with Taxi

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [
55
{name = "Sylvain Fankhauser", email = "sephi@fhtagn.top"},
66
]
77
readme = "README.rst"
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.10"
99
dynamic = ["version"]
1010
dependencies = [
1111
"click>=3.3",
@@ -25,4 +25,3 @@ dummy = "taxi.backends.dummy:DummyBackend"
2525
[build-system]
2626
requires = ["flit_core >=3.2,<4"]
2727
build-backend = "flit_core.buildapi"
28-

0 commit comments

Comments
 (0)