Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: '3.11'

Expand All @@ -38,7 +38,7 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: '3.11'

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/checkout@v7

- name: python environment step
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.11"

Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.11"
- name: Install dependencies
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
enable-cache: true

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
- uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down
1 change: 1 addition & 0 deletions docs/source/api_v2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ API v2
.. warning::
Please note that the v2 modules are currently in active-development and is in beta right now, so please use this API with caution.
See v1 documentation :doc:`here <api>` - it is stable and can be used in the production pipelines.
Migrating an existing model implementation to v2? See :doc:`migration_v1_to_v2`.

.. currentmodule:: pytorch_forecasting

Expand Down
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"sphinx.ext.githubpages",
"sphinx.ext.napoleon",
"model_overview",
"sphinxcontrib.mermaid",
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
1 change: 1 addition & 0 deletions docs/source/data_v2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Data v2
.. warning::
Please note that the v2 modules are currently in active-development and is in beta right now, so please use this API with caution.
See complete documentation for v2 API :doc:`here <api_v2>` and stable v1 documentation :doc:`here <api>`.
Migrating an existing model implementation to v2? See :doc:`migration_v1_to_v2`.

.. currentmodule:: pytorch_forecasting

Expand Down
Loading
Loading