Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/python-3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-serebryakov authored Jun 20, 2024
2 parents d86ed02 + dbe4015 commit 47ba8a2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
python-version: 3.8.5
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
# FIX sergey https://github.com/mlcommons/mlcube/issues/360
# python -m pip install --upgrade pip
python -m pip install pip==24.0
pip install setuptools wheel
pip install -r ./requirements-test.txt
- name: Install MLCube
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docs-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
python-version: '3.8'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
# FIX sergey https://github.com/mlcommons/mlcube/issues/360
# python -m pip install --upgrade pip
python -m pip install pip==24.0
pip install -r docs/requirements.txt
- name: Build Docs
working-directory: './'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# FIX sergey https://github.com/mlcommons/mlcube/issues/360
# python -m pip install --upgrade pip
python -m pip install pip==24.0
pip install setuptools wheel twine
- name: Build distribution
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/runner-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# FIX sergey https://github.com/mlcommons/mlcube/issues/360
# python -m pip install --upgrade pip
python -m pip install pip==24.0
pip install setuptools wheel twine
- name: Build distribution
run: |
Expand Down

0 comments on commit 47ba8a2

Please sign in to comment.