Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed Oct 10, 2023
2 parents a7f53bb + df55e28 commit 7daf150
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
# default-jdk - Java API
# libssl1.1 - 'python3 -m pip' in self-hosted runner
apt install --assume-yes --no-install-recommends default-jdk libssl1.1
apt install --assume-yes libpython3.9 python3.9 python3.9-dev
apt install --assume-yes libpython3.9 python3.9 python3.9-dev wget
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
apt-get update -y
apt-get install openvino -y
# install python3.9
apt install --assume-yes libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9 wget
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
python3.9 -m pip install numpy
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:

- name: Setup pip cache dir
run: |
apt install --assume-yes libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9 wget
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -423,7 +423,7 @@ jobs:
# Needed for downloading IRs from storage.openvinotoolkit with Python urllib
apt-get install --assume-yes --no-install-recommends ca-certificates
apt install --assume-yes libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9 wget
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
python3.9 -m pip install -r ${CONFORMANCE_TOOLS_DIR}/requirements.txt
Expand Down Expand Up @@ -832,7 +832,7 @@ jobs:

- name: Setup pip cache dir
run: |
apt install --assume-yes libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9 wget
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -1097,7 +1097,7 @@ jobs:

- name: Install python dependencies for run_parallel.py
run: |
apt install --assume-yes libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9 wget
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
python3.9 -m pip install -r ${INSTALL_TEST_DIR}/functional_test_utils/layer_tests_summary/requirements.txt
Expand Down Expand Up @@ -1141,7 +1141,6 @@ jobs:
TensorFlow_Hub_Models_Tests:
name: TensorFlow Hub Models tests
needs: Build
if: ${{ 'false' }}
defaults:
run:
shell: bash
Expand All @@ -1162,7 +1161,7 @@ jobs:

- name: Install python
run: |
sudo apt install --assume-yes libpython3.9 python3.9
sudo apt install --assume-yes libpython3.9 python3.9 wget
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -1222,7 +1221,6 @@ jobs:
PyTorch_Models_Tests:
name: PyTorch Models tests
needs: Build
if: ${{ 'false' }}
defaults:
run:
shell: bash
Expand All @@ -1243,7 +1241,7 @@ jobs:

- name: Install dependencies
run: |
sudo apt install --assume-yes libpython3.9 python3.9 python3.9-dev
sudo apt install --assume-yes libpython3.9 python3.9 python3.9-dev wget
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
# install git (required to build pip deps from the sources)
Expand Down
1 change: 1 addition & 0 deletions tests/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ scipy>=1.11.1; python_version >= "3.9"
wheel>=0.38.1
defusedxml>=0.7.1
fastjsonschema~=2.17.1
tensorflow>=2.5,<2.14.0
test-generator==0.1.2
requests>=2.25.1
opencv-python>=4.5
Expand Down
2 changes: 1 addition & 1 deletion tools/mo/requirements_tf.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-c ../constraints.txt
tensorflow>=1.15.5,<2.13.0
tensorflow>=1.15.5,<2.14.0
numpy>=1.16.6,<1.26
networkx
defusedxml
Expand Down
2 changes: 1 addition & 1 deletion tools/mo/requirements_tf2.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-c ../constraints.txt
tensorflow>=2.5,<2.13.0
tensorflow>=2.5,<2.14.0
numpy>=1.16.6,<1.26
networkx
defusedxml
Expand Down

0 comments on commit 7daf150

Please sign in to comment.