Skip to content

Commit b101bb9

Browse files
committed
added pint to requirements and added orso extras install
1 parent 317d055 commit b101bb9

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ jobs:
5353
- name: Install and Test with pytest
5454
run: |
5555
export PATH="$pythonLocation:$PATH"
56-
python -m pip install -e .[Dev]
56+
python -m pip install -e .[Dev; Orso]
5757
pytest tests/ --cov=RATapi --cov-report=term

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ ruff >= 0.4.10
1111
scipy >= 1.13.1
1212
tqdm >= 4.66.5
1313
orsopy >= 1.2.1
14+
pint >= 0.24.4

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,12 @@ def build_libraries(self, libraries):
171171
"pydantic >= 2.7.2",
172172
"matplotlib >= 3.8.3",
173173
"scipy >= 1.13.1",
174-
"tqdm>=4.66.5",
174+
"tqdm >= 4.66.5",
175175
],
176176
extras_require={
177177
':python_version < "3.11"': ["StrEnum >= 0.4.15"],
178178
"Dev": ["pytest>=7.4.0", "pytest-cov>=4.1.0", "ruff>=0.4.10"],
179+
"Orso": ["orsopy>=1.2.1", "pint>=0.24.4"],
179180
"Matlab_latest": ["matlabengine"],
180181
"Matlab_2024a": ["matlabengine == 24.1.*"],
181182
"Matlab_2023b": ["matlabengine == 23.2.3"],

0 commit comments

Comments
 (0)