-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update version for pypi, combine dev and test dependencies, remove un…
…needed files (#148) * only publish to testPyPi when changing the tag since upload fails with duplicate name * remove extra files * fix SALib depreciation warning * combine dev and test dependencies, update docs (#144) * remove unused test_model.py file (#145) * update tag version, consolidate test dependencies to dev (#147) Co-authored-by: Travis Thurber <[email protected]> --------- Co-authored-by: Travis Thurber <[email protected]>
- Loading branch information
Showing
8 changed files
with
37 additions
and
70 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,13 +10,14 @@ msdbook = ["*.txt", "*.csv", "*.npy", "*.resultfile"] | |
|
||
[project] | ||
name = "msdbook" | ||
version = "0.1.5" | ||
version = "0.1.6" | ||
description = "Jupyter notebook support for the MSD uncertainty ebook." | ||
readme = "README.md" | ||
requires-python = ">=3.9, <3.13" | ||
requires-python = ">=3.9" | ||
keywords = ["uncertainty characterization", "MSD", "MultiSector Dynamics"] | ||
authors = [ | ||
{ name="Chris R. Vernon", email="[email protected]" }, | ||
{ name="Travis Thurber", email="[email protected]" }, | ||
{ name="Em Rexer", email="[email protected]" }, | ||
] | ||
|
||
|
@@ -48,6 +49,8 @@ dependencies = [ | |
[project.optional-dependencies] | ||
dev = [ | ||
"pre-commit>=3.7.1", | ||
"pytest>=7.0.0", | ||
"pytest-mock>=3.10", | ||
] | ||
|
||
docs = [ | ||
|
@@ -63,11 +66,6 @@ docs = [ | |
"twine>=3.4.1", | ||
] | ||
|
||
test = [ | ||
"pytest>=7.0.0", | ||
"pytest-mock>=3.10", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://uc-ebook.org/" | ||
Repository = "https://github.com/IMMM-SFA/msd_uncertainty_ebook" | ||
|