Skip to content

Commit 8bc68e6

Browse files
authored
Backports for v0.16.0 (#3235)
*Description of changes:* Backporting PRs - #3228 - #3232 - #3233 By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. **Please tag this pr with at least one of these labels to make our release process faster:** BREAKING, new feature, bug fix, other change, dev setup
1 parent 3d05d46 commit 8bc68e6

27 files changed

+53
-173
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2222

23-
- name: Set up Python 3.8
24-
uses: actions/setup-python@v4
23+
- uses: actions/setup-python@v4
2524
with:
26-
python-version: 3.8
25+
python-version: 3.11
2726

2827
- name: Install dependencies
2928
run: |

.github/workflows/doctests.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@ jobs:
88
max-parallel: 4
99
fail-fast: false
1010
matrix:
11-
python-version: ['3.9']
11+
python-version: ['3.11']
1212
platform: [ubuntu-latest]
1313

1414
runs-on: ${{ matrix.platform }}
1515

1616
steps:
1717
- uses: actions/checkout@v3
18-
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v4
18+
- uses: actions/setup-python@v4
2019
with:
2120
python-version: ${{ matrix.python-version }}
2221
- name: Install other dependencies

.github/workflows/lints.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-python@v4
15+
with:
16+
python-version: '3.11'
1517
- name: Install tools
1618
run: pip install "ruff==0.2.2" "docformatter[tomli]==1.5.0"
1719
- name: Ruff (Flake8)

.github/workflows/mxnet_nightly.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/pypi.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- name: Get tags
1414
run: git fetch --tags origin
15-
- name: Set up Python 3.8
16-
uses: actions/setup-python@v4
15+
- uses: actions/setup-python@v4
1716
with:
18-
python-version: '3.8'
17+
python-version: '3.11'
1918
- name: Install dependencies
2019
run: |
2120
python -m pip install -U pip

.github/workflows/style_type_checks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
- uses: actions/checkout@v3
1111
- uses: extractions/setup-just@v1
1212
- uses: actions/setup-python@v4
13+
with:
14+
python-version: '3.11'
1315
- name: Install dependencies
1416
run: |
1517
pip install .

.github/workflows/test_release_unix_nightly.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/test_release_win32_nightly.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/tests-nixtla.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@ jobs:
88
max-parallel: 4
99
fail-fast: false
1010
matrix:
11-
python-version: ['3.8']
11+
python-version: ['3.11']
1212
platform: [ubuntu-latest]
1313

1414
runs-on: ${{ matrix.platform }}
1515

1616
steps:
1717
- uses: actions/checkout@v3
18-
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v4
18+
- uses: actions/setup-python@v4
2019
with:
2120
python-version: ${{ matrix.python-version }}
2221
- name: Install other dependencies

.github/workflows/tests-nursery.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
max-parallel: 1
99
fail-fast: false
1010
matrix:
11-
python-version: ['3.8']
11+
python-version: ['3.11']
1212
platform: [ubuntu-latest]
1313

1414
runs-on: ${{ matrix.platform }}
@@ -17,8 +17,7 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v4
20+
- uses: actions/setup-python@v4
2221
with:
2322
python-version: ${{ matrix.python-version }}
2423
- name: Install MXNet (Linux)

0 commit comments

Comments
 (0)