Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-14-xlarge, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
exclude:
# Ray doesn't have Windows wheels for Python 3.13
- os: windows-latest
python-version: '3.13'
steps:
- name: Clone repo
uses: actions/checkout@v4
Expand All @@ -43,5 +47,4 @@ jobs:

- name: Run pytest (ubuntu and windows)
if: (matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest')
run: pytest

run: pytest
2 changes: 1 addition & 1 deletion neuralforecast/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.1.2"
__version__ = "3.1.3"
__all__ = ['NeuralForecast']
from .common._base_model import DistributedConfig # noqa: F401
from .core import NeuralForecast
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ authors = [
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
keywords = ["time-series", "forecasting", "deep-learning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"coreforecast>=0.0.6",
Expand Down Expand Up @@ -73,7 +73,7 @@ version = {attr = "neuralforecast.__version__"}
packages = ["neuralforecast"]

[tool.ruff]
target-version = "py39"
target-version = "py310"
line-length = 88
lint.select = ["F"]

Expand Down
Loading