-
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.
Feature/38 set logic options and sane defaults (#39)
* new filter_set_options argument; existing tests working * location and fault set operations implemented + tested * added filter_set_options * WIP all tests OK; using solvis-store OK; * update upstream solvis libs; remove monkeypatching; * fix schema bug; * Bump version: 0.8.1 → 0.8.2
- Loading branch information
Showing
16 changed files
with
768 additions
and
440 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.1 | ||
current_version = 0.8.2 | ||
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
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.1" | ||
version = "0.8.2" | ||
description = "Graphql API for analysis of opensha modular Inversion Solutions" | ||
authors = ["Chris Chamberlain <[email protected]>"] | ||
license = "AGPL3" | ||
|
@@ -25,10 +25,12 @@ Flask-GraphQL = "^2.0.1" | |
graphene = "<3" | ||
pyyaml = "^6.0" | ||
|
||
solvis-store = {git = "https://github.com/GNS-Science/solvis-store.git", rev = "d188deca8b7c1319053430cf8ff4e9adbd8cb0fa"} | ||
nzshm-model = "^0.3.0" | ||
nzshm-common = "^0.6.0" | ||
solvis = "^0.7.0" | ||
# solvis = "^0.7.0" | ||
solvis = "^0.8.1" | ||
solvis-store = {git = "https://github.com/GNS-Science/solvis-store", rev = "main"} | ||
|
||
matplotlib = "^3.7.1" | ||
werkzeug = "^2.3.3" | ||
|
||
|
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.1' | ||
__version__ = '0.8.2' |
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
Oops, something went wrong.