-
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.
Fix tests and prepare for release 1.0.0 version
* Update python version and poetry installation path * Build only on curreny version Python 3.11 * Update test workflow * Update python in Pipfile * Update dependencies * Build on latest 3.10 python version * Update versions * Return back python version * poetry lock * Update pytest * Update docker version * Limit number of retries * Update all dependencies * Rollback tests workflow * Remove poetry path * Add sleep before yield container * Disable history tests * Update python versions * Update dependencies * Increase sleep time for energy test * Increase sleep time * Update checkout action * Remove python 3.12 * Fix energy test, deprecation to chronological history method * Bump to 1.0.0, update min python version to 3.8 and remove cache separate action * Update actions * Return back sphinx versions * Increase sleep before history * Update changelog
- Loading branch information
Showing
10 changed files
with
1,353 additions
and
1,122 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 |
---|---|---|
|
@@ -67,3 +67,4 @@ target/ | |
.scannerwork/ | ||
|
||
.mypy_cache/ | ||
.vscode |
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,11 +1,11 @@ | ||
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "viz-python-lib" | ||
version = "0.1.0" | ||
description = "python library for VIZ blockchain" | ||
version = "1.0.0" | ||
description = "Python library for VIZ blockchain" | ||
authors = ["Vladimir Kamarzin <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
@@ -27,24 +27,25 @@ classifiers = [ | |
|
||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6.1" | ||
graphenelib = "^1.2.0" | ||
toolz = "^0.10.0" | ||
funcy = "^1.14" | ||
docker = "^4.2.0" | ||
python = "^3.8" | ||
graphenelib = "^1.6.0" | ||
toolz = "^0.12.0" | ||
funcy = "^2.0" | ||
docker = "^6.1.3" | ||
aiohttp = "^3.8.6" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pre-commit = "^2.2.0" | ||
pytest = "^5.4" | ||
pytest-cov = "^2.7" | ||
pytest-mock = "^3.1.0" | ||
pre-commit = "^3.5.0" | ||
pytest = "^7.4.3" | ||
pytest-cov = "^4.1.0" | ||
pytest-mock = "^3.12.0" | ||
|
||
sphinx = "^2.2" | ||
sphinx-autoapi = "^1.4.0" | ||
# used in docs to include markdown files | ||
m2r = "^0.2" | ||
m2r = "^0.3.1" | ||
# used in docs to parse pyproject.toml | ||
tomlkit = "^0.6" | ||
tomlkit = "^0.11.8" | ||
|
||
[tool.black] | ||
line-length = 120 | ||
|
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