-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch SciPy import error and bump version to 1.0.8 (#43)
* Patch version of SciPy. * Bump version to 1.0.8 * Remove python versions from GA test workflow. * Remove python versions. * Delete lock file.
- Loading branch information
Showing
10 changed files
with
54 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "kallisto" | ||
version = "1.0.7" | ||
version = "1.0.8" | ||
description = "The Kallisto software enables the efficient calculation of atomic features that can be used within a quantitative structure-activity relationship (QSAR) approach. Furthermore, several modelling helpers are implemented." | ||
license = "Apache 2.0" | ||
readme = "README.md" | ||
|
@@ -10,19 +10,19 @@ keywords = ["chemistry", "computational-chemistry", "quantum-chemistry", "machin | |
authors = ["Eike Caldeweyher <[email protected]>", "Rocco Meli <[email protected]>", "Philipp Pracht <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
click = "^7.1.2" | ||
python = "^3.8" | ||
click = "^8.0.0" | ||
numpy = "^1.19.0" | ||
scipy = "^1.5.2" | ||
scipy = "1.9.2" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = "^5.2" | ||
pytest-cov = {version = "^2.10.0", extras = ["toml"]} | ||
coverage = {version = "^5.2", extras = ["toml"]} | ||
black = "^19.10b0" | ||
black = "^22.1.0" | ||
flake8 = "^3.8.3" | ||
flake8-bandit = "^2.1.2" | ||
flake8-black = "^0.2.0" | ||
flake8-bandit = "^3.0.0" | ||
flake8-black = "^0.3.0" | ||
flake8-bugbear = "^20.1.4" | ||
flake8-import-order = "^0.18.1" | ||
safety = "^1.9.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "1.0.7" | ||
__version__ = "1.0.8" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
|
||
|
||
def test_version(): | ||
assert __version__ == "1.0.7" | ||
assert __version__ == "1.0.8" |