Skip to content

Commit 7137f36

Browse files
authored
Merge branch 'dev_1.11.0' into development_issue_1640
2 parents 9585b5c + 50128f5 commit 7137f36

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+3692
-97
lines changed

.github/workflows/ci-keras.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Checkout Repo
5656
uses: actions/checkout@v3
5757
- name: Setup Python
58-
uses: actions/setup-python@v3
58+
uses: actions/setup-python@v4
5959
with:
6060
python-version: ${{ matrix.python }}
6161
- name: Install Dependencies

.github/workflows/ci-legacy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Checkout Repo
4242
uses: actions/checkout@v3
4343
- name: Setup Python
44-
uses: actions/setup-python@v3
44+
uses: actions/setup-python@v4
4545
with:
4646
python-version: ${{ matrix.python }}
4747
- name: Install Dependencies

.github/workflows/ci-lingvo.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Checkout Repo
3939
uses: actions/checkout@v3
4040
- name: Setup Python
41-
uses: actions/setup-python@v3
41+
uses: actions/setup-python@v4
4242
with:
4343
python-version: ${{ matrix.python }}
4444
- name: Pre-install Lingvo ASR
@@ -47,7 +47,7 @@ jobs:
4747
sudo apt-get update
4848
sudo apt-get -y -q install ffmpeg libavcodec-extra
4949
python -m pip install --upgrade pip setuptools wheel
50-
pip install -q -r <(sed '/^scipy/d;/^matplotlib/d;/^pandas/d;/^statsmodels/d;/^numba/d;/^jax/d;/^h5py/d;/^Pillow/d;/^pytest/d;/^pytest-mock/d;/^torch/d;/^torchaudio/d;/^torchvision/d;/^xgboost/d' requirements_test.txt)
50+
pip install -q -r <(sed '/^scipy/d;/^matplotlib/d;/^pandas/d;/^statsmodels/d;/^numba/d;/^jax/d;/^h5py/d;/^Pillow/d;/^pytest/d;/^pytest-mock/d;/^torch/d;/^torchaudio/d;/^torchvision/d;/^xgboost/d;/^requests/d' requirements_test.txt)
5151
pip install scipy==1.5.4
5252
pip install matplotlib==3.3.4
5353
pip install pandas==1.1.5
@@ -68,6 +68,7 @@ jobs:
6868
pip install torchaudio==0.10.2+cpu --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
6969
pip install torchvision==0.11.3+cpu --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
7070
pip install xgboost==1.5.2
71+
pip install requests==2.27.1
7172
pip list
7273
- name: Run ${{ matrix.name }} Tests
7374
run: ./run_tests.sh ${{ matrix.framework }}

.github/workflows/ci-mxnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Checkout Repo
3535
uses: actions/checkout@v3
3636
- name: Setup Python
37-
uses: actions/setup-python@v3
37+
uses: actions/setup-python@v4
3838
with:
3939
python-version: ${{ matrix.python }}
4040
- name: Install Dependencies

.github/workflows/ci-pytorch-object-detectors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Checkout Repo
2929
uses: actions/checkout@v3
3030
- name: Setup Python
31-
uses: actions/setup-python@v3
31+
uses: actions/setup-python@v4
3232
with:
3333
python-version: 3.8
3434
- name: Install Dependencies

.github/workflows/ci-pytorch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Checkout Repo
5050
uses: actions/checkout@v3
5151
- name: Setup Python
52-
uses: actions/setup-python@v3
52+
uses: actions/setup-python@v4
5353
with:
5454
python-version: ${{ matrix.python }}
5555
- name: Install Dependencies

.github/workflows/ci-scikit-learn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Checkout Repo
4444
uses: actions/checkout@v3
4545
- name: Setup Python
46-
uses: actions/setup-python@v3
46+
uses: actions/setup-python@v4
4747
with:
4848
python-version: ${{ matrix.python }}
4949
- name: Install Dependencies

.github/workflows/ci-style-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Checkout Repo
2727
uses: actions/checkout@v3
2828
- name: Setup Python
29-
uses: actions/setup-python@v3
29+
uses: actions/setup-python@v4
3030
with:
3131
python-version: 3.8
3232
- name: Pre-install

.github/workflows/ci-tensorflow-v1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Checkout Repo
3838
uses: actions/checkout@v3
3939
- name: Setup Python
40-
uses: actions/setup-python@v3
40+
uses: actions/setup-python@v4
4141
with:
4242
python-version: ${{ matrix.python }}
4343
- name: Install Dependencies

.github/workflows/ci-tensorflow-v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Checkout Repo
5353
uses: actions/checkout@v3
5454
- name: Setup Python
55-
uses: actions/setup-python@v3
55+
uses: actions/setup-python@v4
5656
with:
5757
python-version: ${{ matrix.python }}
5858
- name: Install Dependencies

0 commit comments

Comments
 (0)