-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from utiasASRL/new_plotting_feature
New plotting feature and cleanup
- Loading branch information
Showing
8 changed files
with
92 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
name: polymat | ||
name: poly_matrix | ||
channels: | ||
- defaults | ||
- conda-forge | ||
- anaconda | ||
|
||
dependencies: | ||
- python=3.10 | ||
- pip=22.3 | ||
- flake8 | ||
|
||
- pandas>=1.5.3 | ||
- numpy>=1.23.5 | ||
- scipy>=1.9.3 | ||
- pytest>=7.2.1 | ||
- matplotlib>=3.6.2 | ||
|
||
- pip: | ||
- -r requirements.txt | ||
- -e . | ||
- -e . # build local package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .poly_matrix import * | ||
|
||
__version__ = "0.0.2" | ||
__version__ = "0.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
pandas>=1.5.3 | ||
numpy>=1.24.1 | ||
scipy==1.9.1 | ||
pytest>=7.2.1 | ||
matplotlib>=3.6.2 | ||
scipy | ||
pytest-cov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = poly_matrix | ||
version = 0.0.2 | ||
version = 0.1.1 | ||
authors = [ | ||
{name = "Frederike Dümbgen", email = "[email protected]" }, | ||
{name = "Connor Holmes", email = "[email protected]" }] | ||
|
@@ -16,7 +16,7 @@ license = { file="LICENSE" } | |
[options] | ||
packages = find: | ||
install_requires= | ||
scipy | ||
scipy==1.9.1 | ||
|
||
[options.packages.find] # do not mistake tests/ for a package directory | ||
exclude=_test* | ||
|