Skip to content

Pinning openblass to pre 0.3.30. #601

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
shell: bash -l {0}
working-directory: ./autotest
run: |
pytest -rP -rx --capture=no -v -n=auto --tb=native --cov=pyemu --cov-report=lcov ${{ matrix.test-path }}
pytest -rP -rx --capture=no -v -n=auto --tb=native --durations=20 --cov=pyemu --cov-report=lcov ${{ matrix.test-path }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
3 changes: 2 additions & 1 deletion etc/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ channels:
- conda-forge
dependencies:
# required
- python>=3.8
- python>=3.9
- libopenblas < 0.3.30
- numpy
- pandas
# optional
Expand Down
2 changes: 1 addition & 1 deletion pyemu/utils/pst_from.py
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ def _par_prep(
sep = " "
if rel_filepath.suffix.lower() == ".csv":
sep = ","
elif sep == '\s+':
elif sep == r'\s+':
sep = " " # sep for saving
if pd.api.types.is_integer_dtype(df.columns): # df.columns.is_integer(): # really!???
hheader = False
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"numpy",
"pandas",
Expand Down
Loading