Skip to content

Commit 3a95885

Browse files
marcopeixelephaint
andauthored
chore: update version to 3.0.0 (#1280)
Co-authored-by: Olivier Sprangers <osprangers@gmail.com>
1 parent 0adcb58 commit 3a95885

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, macos-13, windows-latest]
20-
python-version: ["3.8", "3.9", "3.10", "3.11"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2121
exclude:
2222
- os: windows-latest
2323
python-version: "3.11"

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up python
1717
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # 5.3.0
1818
with:
19-
python-version: 3.8
19+
python-version: "3.10"
2020

2121
- name: Install dependencies
2222
run: pip install black nbdev==2.3.25 pre-commit

neuralforecast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.0.1"
1+
__version__ = "3.0.0"
22
__all__ = ['NeuralForecast']
33
from .core import NeuralForecast
44
from .common._base_model import DistributedConfig # noqa: F401

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.ruff]
2-
target-version = "py38"
2+
target-version = "py39"
33
line-length = 88
44
# Enable Pyflakes `E` and `F` codes by default.
55
lint.select = [

settings.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ author = Nixtla
88
author_email = business@nixtla.io
99
copyright = Nixtla Inc.
1010
branch = main
11-
version = 2.0.1
12-
min_python = 3.8
11+
version = 3.0.0
12+
min_python = 3.9
1313
audience = Developers
1414
language = English
1515
custom_sidebar = True

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
statuses = [ '1 - Planning', '2 - Pre-Alpha', '3 - Alpha',
2424
'4 - Beta', '5 - Production/Stable', '6 - Mature', '7 - Inactive' ]
25-
py_versions = '3.8 3.9 3.10 3.11'.split()
25+
py_versions = '3.9 3.10 3.11 3.12'.split()
2626

2727
requirements = cfg.get('requirements','').split()
2828
aws_requirements = cfg['aws_requirements'].split()

0 commit comments

Comments
 (0)