Skip to content

Commit

Permalink
Merge pull request #1818 from camptocamp/fix-12
Browse files Browse the repository at this point in the history
Fix package check
  • Loading branch information
sbrunner authored Jul 8, 2024
2 parents 58dad22 + fd02a9b commit 3ac38e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- run: cd c2cciutils; npm install
- run: python3 -m pip install --user --requirement=requirements.txt
- run: poetry build
- run: python3 -m pip install --user --force-reinstall dist/*.whl 'ruamel.yaml<0.18.0'
- run: python3 -m pip install --user --force-reinstall dist/*.whl 'ruamel.yaml<0.18.0' 'importlib-metadata<8.0.0'
- run: rm -rf dist build

- name: Checks
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ poetry==1.4.2
poetry-plugin-export==1.3.1
poetry-dynamic-versioning[plugin]==0.20.0
poetry-plugin-tweak-dependencies-version==1.3.0
importlib-metadata<8.0.0>=7.0.0
requests>=2.31.0 # not directly required, pinned by Snyk to avoid a vulnerability
certifi>=2022.12.7 # not directly required, pinned by Snyk to avoid a vulnerability
urllib3>=1.26.17 # not directly required, pinned by Snyk to avoid a vulnerability
Expand Down

0 comments on commit 3ac38e7

Please sign in to comment.