Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix rebuild 2.6 and 2.7 #11312

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/rebuild-2-6.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,6 @@ jobs:
if-no-files-found: ignore
retention-days: 5

- run: pip install --user PyYAML==3.13 docker-compose==1.21.0 netifaces 'requests<2.32.0'

# Test App
- run: ci/test-app
- run: |
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/rebuild-2-7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,15 @@ jobs:
if-no-files-found: ignore
retention-days: 5

# Use minimal version from the documentation
- uses: actions/setup-python@v4
with:
# When we upgrade this we should also upgrade the requirements
# in the documentation: doc/integrator/requirements.rst
python-version: '3.7'
# When we upgrade this we should also upgrade the requirements
# in the documentation: doc/integrator/requirements.rst
# netifaces is for 2.4
- run: pip install --user PyYAML==3.13 docker-compose==1.21.0 netifaces 'requests<2.32.0'

# Test App
Expand Down
Loading