Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump packages #563

Merged
merged 2 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black
rev: 23.9.1
rev: 23.11.0
hooks:
- id: black
language_version: python3.11
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ install:
poetry install --no-root -E ibet-explorer
poetry run pre-commit install

update:
poetry update

format: isort black

isort:
Expand Down
1,992 changes: 980 additions & 1,012 deletions poetry.lock

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,39 +8,39 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "3.11.2"
alembic = "~1.11.2"
boto3 = "~1.28.58"
alembic = "~1.12.1"
boto3 = "~1.29.6"
coincurve = "~18.0.0"
eth-keyfile = "0.6.1"
eth-utils = "~2.2.0"
fastapi = "~0.103.2"
eth-utils = "~2.3.1"
fastapi = "~0.104.1"
gunicorn = "~21.2.0"
orjson = "~3.9.7"
psycopg = {extras = ["c"], version = "~3.1.12"}
pycryptodome = "~3.19"
pydantic = "~2.4.2"
pydantic = "~2.5.2"
pytz = "~2023.3"
requests = "~2.31.0"
shared-memory-dict = "~0.7.2"
uvicorn = "~0.23.2"
web3 = "~6.9.0"
web3 = "~6.11.3"
sqlalchemy = "~2.0.21"

ibet-prime-explorer = {path = "cmd/explorer", optional = true, develop = true}
textual = {version = "~0.10.1", optional = true}
async-cache = {version = "~1.1.1", optional = true}
typer = {version = "~0.7.0", optional = true}
aiohttp = {version = "~3.8.4", optional = true}
aiohttp = {version = "~3.9.1", optional = true}

[tool.poetry.group.dev.dependencies]
httpx = "^0.23.3"
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
httpx = "^0.25.2"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
pyyaml = "^6.0"
pytest-freezer = "^0.4.6"
pre-commit = "^3.1.1"
pre-commit = "^3.5.0"
isort = "^5.12.0"
black = "^23.1.0"
black = "^23.11.0"

[tool.poetry.extras]
ibet-explorer = [
Expand Down
2 changes: 1 addition & 1 deletion tests/model/blockchain/test_token_IbetShare.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import pytest
from eth_keyfile import decode_keyfile_json
from pydantic.error_wrappers import ValidationError
from pydantic import ValidationError
from sqlalchemy import select
from web3.exceptions import (
ContractLogicError,
Expand Down
2 changes: 1 addition & 1 deletion tests/model/blockchain/test_token_IbetStraightBond.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import pytest
from eth_keyfile import decode_keyfile_json
from pydantic.error_wrappers import ValidationError
from pydantic import ValidationError
from sqlalchemy import select
from web3.exceptions import (
ContractLogicError,
Expand Down
Loading