Skip to content

Commit 6d74726

Browse files
committed
added pint to requirements and added orso extras install
1 parent afb83b0 commit 6d74726

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
@@ -172,11 +172,12 @@ def build_libraries(self, libraries):
172172
"pydantic >= 2.7.2",
173173
"matplotlib >= 3.8.3",
174174
"scipy >= 1.13.1",
175-
"tqdm>=4.66.5",
175+
"tqdm >= 4.66.5",
176176
],
177177
extras_require={
178178
':python_version < "3.11"': ["StrEnum >= 0.4.15"],
179179
"Dev": ["pytest>=7.4.0", "pytest-cov>=4.1.0", "ruff>=0.4.10"],
180+
"Orso": ["orsopy>=1.2.1", "pint>=0.24.4"],
180181
"Matlab_latest": ["matlabengine"],
181182
"Matlab_2024a": ["matlabengine == 24.1.*"],
182183
"Matlab_2023b": ["matlabengine == 23.2.3"],

0 commit comments

Comments
 (0)