-
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.
Version 0.8.6 * Updating to solvis 0.11.1, solvis-store 2.0.3, nzshm-model 0.4.0. * Adding Python 3.10 + 3.11, removing 3.7 + 3.8 * Improving typing information on composite_solution/cached.py (#49) * parent_fault_names passes through sorting parameter --------- Co-authored-by: Chris Chamberlain <[email protected]>
- Loading branch information
1 parent
181a42e
commit 856a2c9
Showing
10 changed files
with
1,468 additions
and
1,105 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.8.5 | ||
current_version = 0.8.6 | ||
commit = True | ||
tag = True | ||
|
||
|
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
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 = "solvis-graphql-api" | ||
version = "0.8.5" | ||
version = "0.8.6" | ||
description = "Graphql API for analysis of opensha modular Inversion Solutions" | ||
authors = ["Chris Chamberlain <[email protected]>"] | ||
license = "AGPL3" | ||
|
@@ -14,6 +14,7 @@ classifiers=[ | |
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
] | ||
packages = [{include = "solvis_graphql_api"}] | ||
|
||
|
@@ -25,17 +26,16 @@ Flask-GraphQL = "^2.0.1" | |
graphene = "<3" | ||
pyyaml = "^6.0" | ||
|
||
nzshm-model = "^0.3.0" | ||
nzshm-model = "^0.4.0" | ||
nzshm-common = "^0.6.0" | ||
# solvis = "^0.7.0" | ||
solvis = "^0.8.1" | ||
solvis-store = {git = "https://github.com/GNS-Science/solvis-store", rev = "v2.0.2"} | ||
solvis = "^0.11.1" | ||
solvis-store = {git = "https://github.com/GNS-Science/solvis-store", rev = "v2.0.3"} | ||
|
||
matplotlib = "^3.7.1" | ||
werkzeug = "^2.3.3" | ||
|
||
# see https://github.com/orgs/python-poetry/discussions/7937 | ||
urllib3 = "<2" | ||
urllib3 = "<2" | ||
numpy = "<1.25" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
|
@@ -44,7 +44,7 @@ black = { version = "^22.3"} | |
isort = { version = "^5.8.0"} | ||
flake8 = { version = "^3.9.2"} | ||
flake8-docstrings = { version = "^1.6.0", optional = true } | ||
mypy = {version = "^0.900"} | ||
mypy = {version = "^1.10"} | ||
pytest = { version = "^6.2.4"} | ||
pytest-cov = { version = "^2.12.0"} | ||
|
||
|
@@ -98,7 +98,7 @@ doc = [ | |
[tool.black] | ||
line-length = 120 | ||
skip-string-normalization = true | ||
target-version = ['py37', 'py38', 'py39'] | ||
target-version = ['py39', 'py310', 'py311'] | ||
include = '\.pyi?$' | ||
exclude = ''' | ||
/( | ||
|
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__author__ = """GNS Science""" | ||
__email__ = '[email protected]' | ||
__version__ = '0.8.5' | ||
__version__ = '0.8.6' |
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