Skip to content

Commit

Permalink
Fix scipy version and update to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
duembgen committed Apr 23, 2024
1 parent 6d82202 commit dd862c3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion poly_matrix/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .poly_matrix import *

__version__ = "0.1.0"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pandas>=1.5.3
numpy>=1.24.1
scipy>=1.10.0
scipy==1.9.1
pytest>=7.2.1
matplotlib>=3.6.2
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = poly_matrix
version = 0.1.0
version = 0.1.1
authors = [
{name = "Frederike Dümbgen", email = "[email protected]" },
{name = "Connor Holmes", email = "[email protected]" }]
Expand All @@ -16,7 +16,7 @@ license = { file="LICENSE" }
[options]
packages = find:
install_requires=
scipy>=1.10.0
scipy==1.9.1

[options.packages.find] # do not mistake tests/ for a package directory
exclude=_test*
Expand Down

0 comments on commit dd862c3

Please sign in to comment.