Skip to content

Commit

Permalink
Bump the ci-dependencies group with 2 updates (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Sep 2, 2024
1 parent 0b5b1ca commit f547b12
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
repository: Nixtla/docs
ref: scripts
path: docs-scripts
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: "3.10"
- name: Build docs
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Set up environment
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Set up environment
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -71,7 +71,7 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Set up python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: "3.10"

Expand All @@ -86,7 +86,7 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: "3.12"

Expand All @@ -104,7 +104,7 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: "3.10"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Set up python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: '3.10'
cache: 'pip'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Set up python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # 5.1.1
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 5.2.0
with:
python-version: '3.10'

Expand All @@ -31,4 +31,4 @@ jobs:
run: python -m build -sw

- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
uses: pypa/gh-action-pypi-publish@8a08d616893759ef8e1aa1f2785787c0b97e20d6 # v1.10.0
14 changes: 10 additions & 4 deletions nbs/docs/getting-started/quick_start_distributed.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"import git\n",
"import numpy as np\n",
"import pandas as pd\n",
"from botocore.exceptions import NoCredentialsError\n",
"import s3fs\n",
"from sklearn.base import BaseEstimator\n",
"\n",
"from mlforecast.distributed import DistributedMLForecast\n",
Expand Down Expand Up @@ -563,8 +563,10 @@
"save_path = f's3://nixtla-tmp/mlf/{save_dir}'\n",
"tmpdir = tempfile.TemporaryDirectory()\n",
"try:\n",
" s3fs.S3FileSystem().ls('s3://nixtla-tmp/')\n",
" fcst.save(save_path)\n",
"except NoCredentialsError:\n",
"except Exception as e:\n",
" print(e)\n",
" save_path = f'{tmpdir.name}/{save_dir}'\n",
" fcst.save(save_path)"
]
Expand Down Expand Up @@ -1249,8 +1251,10 @@
"save_dir = build_unique_name('spark')\n",
"save_path = f's3://nixtla-tmp/mlf/{save_dir}'\n",
"try:\n",
" s3fs.S3FileSystem().ls('s3://nixtla-tmp/')\n",
" fcst.save(save_path)\n",
"except NoCredentialsError:\n",
"except Exception as e:\n",
" print(e)\n",
" save_path = f'{tmpdir.name}/{save_dir}'\n",
" fcst.save(save_path)"
]
Expand Down Expand Up @@ -1805,8 +1809,10 @@
"save_dir = build_unique_name('ray')\n",
"save_path = f's3://nixtla-tmp/mlf/{save_dir}'\n",
"try:\n",
" s3fs.S3FileSystem().ls('s3://nixtla-tmp/')\n",
" fcst.save(save_path)\n",
"except NoCredentialsError:\n",
"except Exception as e:\n",
" print(e)\n",
" save_path = f'{tmpdir.name}/{save_dir}'\n",
" fcst.save(save_path)"
]
Expand Down

0 comments on commit f547b12

Please sign in to comment.