Skip to content

Commit 970e880

Browse files
committed
Merge branch 'main' into skbase-dep
2 parents 5c5ea6e + 5141821 commit 970e880

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/pypi_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
fail-fast: false
6262
matrix:
6363
os: [ubuntu-latest, macos-latest, windows-latest]
64-
python-version: ["3.10", "3.11", "3.12", "3.13"]
64+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
6565

6666
steps:
6767
- uses: actions/checkout@v6

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
fail-fast: false
8383
matrix:
8484
os: [ubuntu-latest, macos-latest, windows-latest]
85-
python-version: ["3.10", "3.11", "3.12", "3.13"]
85+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
8686

8787
steps:
8888
- uses: actions/checkout@v6
@@ -122,7 +122,7 @@ jobs:
122122
fail-fast: false
123123
matrix:
124124
os: [ubuntu-latest, macos-latest, windows-latest]
125-
python-version: ["3.10", "3.11", "3.12", "3.13"]
125+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
126126

127127
steps:
128128
- uses: actions/checkout@v6

docs/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Installation
33

44
``pytorch-forecasting`` currently supports:
55

6-
* Python versions 3.10, 3.11, 3.12 and 3.13.
6+
* Python versions 3.10, 3.11, 3.12, 3.13 and 3.14.
77
* Operating systems : Linux, macOS, and Windows
88

99
Installing pytorch-forecasting

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "1.5.0" # is being replaced automatically
66
authors = [
77
{name = "Jan Beitner"},
88
]
9-
requires-python = ">=3.10,<3.14"
9+
requires-python = ">=3.10,<3.15"
1010
classifiers = [
1111
"Intended Audience :: Developers",
1212
"Intended Audience :: Science/Research",
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.11",
1616
"Programming Language :: Python :: 3.12",
1717
"Programming Language :: Python :: 3.13",
18+
"Programming Language :: Python :: 3.14",
1819
"Topic :: Scientific/Engineering",
1920
"Topic :: Scientific/Engineering :: Mathematics",
2021
"Topic :: Scientific/Engineering :: Artificial Intelligence",
@@ -139,7 +140,7 @@ exclude = [
139140
".history/",
140141
"docs/source/tutorials/",
141142
]
142-
target-version = "py39"
143+
target-version = "py310"
143144

144145
[tool.ruff.format]
145146
# Enable formatting

0 commit comments

Comments
 (0)