Skip to content

Commit ec37d23

Browse files
committed
Modified the develop dependencies so the tests use a newer version of SDynPy
1 parent 89885eb commit ec37d23

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
pip install -e .
29+
pip install -e .[dev]
3030
pip install pytest pytest-cov
3131
3232
- name: Run tests

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ dist/**
3535
reports/**
3636
**/.ipynb_checkpoints/**
3737
*.pyc
38-
src/forcefinder/core/__pycache__/transient_utilities.cpython-311.pyc
38+
src/forcefinder/core/__pycache__/transient_utilities.cpython-311.pyc
39+
src/forcefinder/core/__pycache__/source_path_receiver.cpython-311.pyc

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
],
3131
extras_require={ # Extra packages that are useful for development
3232
"dev": [
33+
"sdynpy>=0.18.4",
3334
"pytest",
3435
"pytest-cov",
3536
"jupyter-book",
Binary file not shown.

0 commit comments

Comments
 (0)