Skip to content

Commit

Permalink
chore: update version to 3.0.0 (#1280)
Browse files Browse the repository at this point in the history
Co-authored-by: Olivier Sprangers <[email protected]>
  • Loading branch information
marcopeix and elephaint authored Feb 28, 2025
1 parent 0adcb58 commit 3a95885
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
exclude:
- os: windows-latest
python-version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # 5.3.0
with:
python-version: 3.8
python-version: "3.10"

- name: Install dependencies
run: pip install black nbdev==2.3.25 pre-commit
Expand Down
2 changes: 1 addition & 1 deletion neuralforecast/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.0.1"
__version__ = "3.0.0"
__all__ = ['NeuralForecast']
from .core import NeuralForecast
from .common._base_model import DistributedConfig # noqa: F401
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.ruff]
target-version = "py38"
target-version = "py39"
line-length = 88
# Enable Pyflakes `E` and `F` codes by default.
lint.select = [
Expand Down
4 changes: 2 additions & 2 deletions settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ author = Nixtla
author_email = [email protected]
copyright = Nixtla Inc.
branch = main
version = 2.0.1
min_python = 3.8
version = 3.0.0
min_python = 3.9
audience = Developers
language = English
custom_sidebar = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
statuses = [ '1 - Planning', '2 - Pre-Alpha', '3 - Alpha',
'4 - Beta', '5 - Production/Stable', '6 - Mature', '7 - Inactive' ]
py_versions = '3.8 3.9 3.10 3.11'.split()
py_versions = '3.9 3.10 3.11 3.12'.split()

requirements = cfg.get('requirements','').split()
aws_requirements = cfg['aws_requirements'].split()
Expand Down

0 comments on commit 3a95885

Please sign in to comment.