Skip to content
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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ jobs:
python-version: '3.9'
- name: Configure Python
run: |
# Install dependencies required to load ivpm.yaml file
python3 -m pip install ivpm
# Install dependencies required to load ivpm.yaml file.
# importlib_metadata is needed because ivpm imports the backport on
# Python < 3.10 but does not declare it as a dependency.
python3 -m pip install ivpm importlib_metadata
export PYTHONPATH=./src
python3 -m ivpm update
./packages/python/bin/python3 -m pip install setuptools --upgrade
Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@
'astbuilder = astbuilder.__main__:main'
]
},
setup_requires=[
'setuptools_scm'
],
install_requires=[
'pyyaml',
'toposort'
Expand Down
Loading