Skip to content

Commit 2a6c015

Browse files
authored
Pinning openblass to pre 0.3.30. (#601)
To circumvent issues in numpy linalg steps on linux that was causing CI to hang. !!!This might need more attention!!!
1 parent 92da1b2 commit 2a6c015

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
shell: bash -l {0}
119119
working-directory: ./autotest
120120
run: |
121-
pytest -rP -rx --capture=no -v -n=auto --tb=native --cov=pyemu --cov-report=lcov ${{ matrix.test-path }}
121+
pytest -rP -rx --capture=no -v -n=auto --tb=native --durations=20 --cov=pyemu --cov-report=lcov ${{ matrix.test-path }}
122122
env:
123123
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
124124

etc/environment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ channels:
33
- conda-forge
44
dependencies:
55
# required
6-
- python>=3.8
6+
- python>=3.9
7+
- libopenblas < 0.3.30
78
- numpy
89
- pandas
910
# optional

pyemu/utils/pst_from.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ def _par_prep(
10481048
sep = " "
10491049
if rel_filepath.suffix.lower() == ".csv":
10501050
sep = ","
1051-
elif sep == '\s+':
1051+
elif sep == r'\s+':
10521052
sep = " " # sep for saving
10531053
if pd.api.types.is_integer_dtype(df.columns): # df.columns.is_integer(): # really!???
10541054
hheader = False

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3 :: Only",
2424
"Topic :: Scientific/Engineering :: Hydrology",
2525
]
26-
requires-python = ">=3.8"
26+
requires-python = ">=3.9"
2727
dependencies = [
2828
"numpy",
2929
"pandas",

0 commit comments

Comments
 (0)