Skip to content

Commit 666486f

Browse files
authored
Pin version of packages installed with pip command (#1696)
1 parent b032612 commit 666486f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
- name: Install sphinx dependencies
104104
run: |
105105
conda install sphinx sphinx_rtd_theme
106-
pip install sphinxcontrib-googleanalytics
106+
pip install sphinxcontrib-googleanalytics==0.4
107107
108108
- name: Install dpnp dependencies
109109
run: |

.github/workflows/generate_coverage.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Install coverall dependencies
8080
run: |
8181
sudo gem install coveralls-lcov
82-
pip install coveralls==3.2.0
82+
pip install coveralls==3.3.1
8383
8484
- name: Upload coverage data to coveralls.io
8585
run: |
@@ -102,7 +102,7 @@ jobs:
102102
steps:
103103
- name: Finished
104104
run: |
105-
pip3 install --upgrade coveralls
106-
coveralls --finish
105+
pip3 install --upgrade coveralls==3.3.1
106+
coveralls --service=github --finish
107107
env:
108108
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

scripts/install_python_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ echo ========================= Conda: remove mkl ===============================
1111
conda remove mkl --force -y || true
1212

1313
echo ========================= PIP3: install prerequisites ==========================
14-
pip3 install pytest-valgrind
14+
pip3 install pytest-valgrind==0.2.0
1515

1616
echo ========================= SW versions ==========================================
1717
conda list

0 commit comments

Comments
 (0)