forked from glaserL/viasp
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test, prepare release candidate 2.2.0rc0
- Loading branch information
1 parent
7a31094
commit 00a9413
Showing
8 changed files
with
66 additions
and
16 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,6 +1,6 @@ | ||
[metadata] | ||
name = viasp-backend | ||
version = 2.0.0rc2 | ||
version = 2.2.0rc0 | ||
author = Luis Glaser | ||
author_email = [email protected] | ||
description = The backend for the viasp package. | ||
|
@@ -27,6 +27,7 @@ install_requires = | |
numpy | ||
clingraph | ||
waitress | ||
sqlalchemy | ||
[options.packages.find] | ||
where = src | ||
|
||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 @@ | ||
[metadata] | ||
name = viasp | ||
version = 2.0.0rc2 | ||
version = 2.2.0rc0 | ||
author = Luis Glaser | ||
author_email = [email protected] | ||
description = a visualization tool for clingo. | ||
|
@@ -15,8 +15,8 @@ classifiers = | |
[options] | ||
python_requires = >=3.8 | ||
install_requires = | ||
viasp-backend==2.0.0rc2 | ||
viasp-dash==2.0.0rc2 | ||
viasp-backend | ||
viasp-dash | ||
packages = find: | ||
package_dir = | ||
=. | ||
|
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 |
---|---|---|
|
@@ -30,12 +30,12 @@ def run(self): | |
EMAIL = '[email protected]' | ||
AUTHOR = 'Luis Glaser' | ||
REQUIRES_PYTHON = '>=3.8.0' | ||
VERSION = '2.0.0rc2' | ||
VERSION = '2.2.0rc0' | ||
|
||
# What packages are required for this module to be executed? | ||
REQUIRED = [ | ||
'viasp-backend==2.0.0rc2', | ||
'viasp-dash==2.0.0rc2', | ||
'viasp-backend', | ||
'viasp-dash', | ||
'jupyter-server-proxy', | ||
'clingraph', | ||
'graphviz', | ||
|