Skip to content

Commit 6c61fb0

Browse files
author
Giorgio Medico
committed
up to 3.11 3.12 3.13
1 parent dd8b8e1 commit 6c61fb0

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Python
3737
uses: actions/setup-python@v5
3838
with:
39-
python-version: '3.11'
39+
python-version: '3.12'
4040
cache: 'pip'
4141

4242
- name: Install dependencies

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v5
1515
with:
16-
python-version: '3.10'
16+
python-version: '3.11'
1717
- uses: pre-commit/[email protected]

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: '3.10'
15+
python-version: '3.12'
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ['3.10', '3.11', '3.12']
15+
python-version: ['3.11', '3.12', '3.13']
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python ${{ matrix.python-version }}
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: macos-latest
4040
strategy:
4141
matrix:
42-
python-version: ['3.10', '3.11', '3.12']
42+
python-version: ['3.11', '3.12', '3.13']
4343
steps:
4444
- uses: actions/checkout@v4
4545
- name: Set up Python ${{ matrix.python-version }}

interpolatepy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
__version__ file.
33
"""
44

5-
__version__ = "2.0.0"
5+
__version__ = "2.0.1"

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "A comprehensive Python library for generating smooth trajectories
1212
readme = "README.md"
1313
license = "MIT"
1414
license-files = ["LICENSE"]
15-
requires-python = ">=3.10"
15+
requires-python = ">=3.11"
1616
keywords = [
1717
"interpolation",
1818
"trajectory planning",
@@ -81,7 +81,7 @@ minversion = "8.4"
8181
testpaths = "tests"
8282

8383
[tool.ruff]
84-
target-version = "py311"
84+
target-version = "py312"
8585
line-length = 120
8686
extend-exclude = ["docs", "test", "tests"]
8787

@@ -250,7 +250,7 @@ docstring-code-format = false
250250
docstring-code-line-length = "dynamic"
251251

252252
[tool.mypy]
253-
python_version = "3.11"
253+
python_version = "3.12"
254254
ignore_missing_imports = true
255255
follow_imports = "silent"
256256
no_implicit_optional = true
@@ -283,7 +283,7 @@ show_error_codes = true
283283
exclude = ["docs"]
284284

285285
[tool.pyright]
286-
pythonVersion = "3.11"
286+
pythonVersion = "3.12"
287287
typeCheckingMode = "basic"
288288
reportDuplicateImport = true
289289
reportInvalidStubStatement = true

0 commit comments

Comments
 (0)