File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ jobs:
118
118
shell : bash -l {0}
119
119
working-directory : ./autotest
120
120
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 }}
122
122
env :
123
123
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
124
124
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ channels:
3
3
- conda-forge
4
4
dependencies :
5
5
# required
6
- - python>=3.8
6
+ - python>=3.9
7
+ - libopenblas < 0.3.30
7
8
- numpy
8
9
- pandas
9
10
# optional
Original file line number Diff line number Diff line change @@ -1048,7 +1048,7 @@ def _par_prep(
1048
1048
sep = " "
1049
1049
if rel_filepath .suffix .lower () == ".csv" :
1050
1050
sep = ","
1051
- elif sep == '\s+' :
1051
+ elif sep == r '\s+' :
1052
1052
sep = " " # sep for saving
1053
1053
if pd .api .types .is_integer_dtype (df .columns ): # df.columns.is_integer(): # really!???
1054
1054
hheader = False
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ classifiers = [
23
23
" Programming Language :: Python :: 3 :: Only" ,
24
24
" Topic :: Scientific/Engineering :: Hydrology" ,
25
25
]
26
- requires-python = " >=3.8 "
26
+ requires-python = " >=3.9 "
27
27
dependencies = [
28
28
" numpy" ,
29
29
" pandas" ,
You can’t perform that action at this time.
0 commit comments