Skip to content

Commit

Permalink
add missing dependencies and remove useless installs in the test work…
Browse files Browse the repository at this point in the history
…flow
  • Loading branch information
lgiacome committed Dec 4, 2024
1 parent 817fa9e commit 3fcc7f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/pr_workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
python -m pip install --upgrade pip
pip install wheel
pip install numpy cython h5py
pip install xtrack xpart xfields nafflib
pip install --no-build-isolation .[tests]
- name: Run tests
run: |
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@
'numpy>=1.0',
'scipy',
'pyyaml',
'pandas'
'pandas',
'xpart',
'xfields'
],
extras_require={
'tests': ['pytest', 'PyHEADTAIL'],
'tests': ['pytest', 'PyHEADTAIL', 'nafflib'],
},
)

0 comments on commit 3fcc7f0

Please sign in to comment.