generated from jfcrenshaw/python-package
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved np.trapz -> scipy.integrate.trapezoid. Updated version requirem… (
#96) * Moved np.trapz -> scipy.integrate.trapezoid. Updated version requirements. Some linting. * Bumped python version array in github action. * Github action version numbers now strings.
- Loading branch information
1 parent
9d37be4
commit f306c4b
Showing
14 changed files
with
2,463 additions
and
1,048 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "pzflow" | ||
version = "3.1.2" | ||
version = "3.1.3" | ||
description = "Probabilistic modeling of tabular data with normalizing flows." | ||
authors = ["John Franklin Crenshaw <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -9,38 +9,38 @@ readme = "README.md" | |
|
||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8.1" | ||
jax = "^0.4.2" | ||
jaxlib = "^0.4.2" | ||
optax = "^0.1.4" | ||
python = "^3.9" | ||
jax = ">=0.4.16" | ||
jaxlib = ">=0.4.16" | ||
optax = ">=0.1.4" | ||
pandas = ">=1.1" | ||
dill = "^0.3.6" | ||
tqdm = "^4.64.1" | ||
dill = ">=0.3.6" | ||
tqdm = ">=4.64.1" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pre-commit = "^3.0.3" | ||
black = "^23.1.0" | ||
mypy = "^0.931" | ||
isort = "^5.12.0" | ||
flake8 = "^6.0.0" | ||
flake8-bugbear = "^23.1.20" | ||
flake8-builtins = "^2.1.0" | ||
flake8-comprehensions = "^3.10.1" | ||
flake8-docstrings = "^1.7.0" | ||
flake8-isort = "^6.0.0" | ||
flake8-markdown = "^0.4.0" | ||
flake8-print = "^5.0.0" | ||
flake8-pytest-style = "^1.6.0" | ||
flake8-simplify = "^0.19.3" | ||
flake8-tidy-imports = "^4.8.0" | ||
pandas-vet = "^0.2.3" | ||
pep8-naming = "^0.13.3" | ||
pytest = "^7.2.1" | ||
pytest-cov = "^4.0.0" | ||
pytest-xdist = "^3.1.0" | ||
jupyter = "^1.0.0" | ||
matplotlib = "^3.6.3" | ||
toml = "^0.10.2" | ||
pre-commit = ">=3.0.3" | ||
black = ">=23.1.0" | ||
mypy = ">=0.931" | ||
isort = ">=5.12.0" | ||
flake8 = ">=6.0.0" | ||
flake8-bugbear = ">=23.1.20" | ||
flake8-builtins = ">=2.1.0" | ||
flake8-comprehensions = ">=3.10.1" | ||
flake8-docstrings = ">=1.7.0" | ||
flake8-isort = ">=6.0.0" | ||
flake8-markdown = ">=0.4.0" | ||
flake8-print = ">=5.0.0" | ||
flake8-pytest-style = ">=1.6.0" | ||
flake8-simplify = ">=0.19.3" | ||
flake8-tidy-imports = ">=4.8.0" | ||
pandas-vet = ">=0.2.3" | ||
pep8-naming = ">=0.13.3" | ||
pytest = ">=7.2.1" | ||
pytest-cov = ">=4.0.0" | ||
pytest-xdist = ">=3.1.0" | ||
jupyter = ">=1.0.0" | ||
matplotlib = ">=3.6.3" | ||
toml = ">=0.10.2" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
|
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
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
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