Skip to content

Commit

Permalink
Update scipy dependency (#9)
Browse files Browse the repository at this point in the history
* Update scipy dependency

* Typo

---------

Co-authored-by: Uri Granta <[email protected]>
  • Loading branch information
uri-granta and Uri Granta authored Jul 3, 2024
1 parent 67167e8 commit 54a29a9
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 28 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/upload-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ name: Upload-PyPI


on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
Expand Down Expand Up @@ -72,7 +73,7 @@ jobs:
run: poetry run task test

pypi:
# needs: check-and-test
needs: check-and-test
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ __pycache__

# Don't commit the generate Cython library
banded_matrices.*.so

# PyEnv
.python-version
1 change: 0 additions & 1 deletion .python-version

This file was deleted.

99 changes: 74 additions & 25 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ pytest-isort = "^1.0.0"
pytest-mock = "^3.1.1"
pytest-mypy = "^0.6.1"
pytest-pylint = "^0.17.0"
scipy = "^1.5.4"
scipy = [
{ version = "^1.5.4", markers = "python_version >= '3.7' and python_version < '3.10'" },
{ version = "^1.8.1", markers = "python_version >= '3.10' and python_version < '3.12'" }
]
taskipy = "^1.2.0"


Expand Down

0 comments on commit 54a29a9

Please sign in to comment.