Skip to content

Commit

Permalink
Try fix workflows (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
gkirgizov authored Jun 15, 2023
1 parent 0ee8dfa commit a2c4129
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
python -m pip install --upgrade pip
pip install pytest
pip install .[profilers]
pip install .[molecule_search]
pip install .[requirements_adaptive]
pip install .[molecules]
pip install .[adaptive]
pip install pytest-cov
- name: Test with pytest
run: |
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def _get_requirements(req_name: str):
install_requires=_get_requirements('requirements.txt'),
extras_require={
key: _get_requirements(Path('other_requirements', f'{key}.txt'))
for key in ('docs', 'profilers')
for key in ('docs', 'profilers', 'molecules', 'adaptive')
},
classifiers=[
'License :: OSI Approved :: BSD License',
Expand Down

0 comments on commit a2c4129

Please sign in to comment.