Skip to content

Commit

Permalink
setup: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje committed Dec 13, 2023
1 parent 4fdf5aa commit d329f88
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ build: ## create source distribution and wheel
python -m build

version-major: ## bump the major version prior to release, auto commits and tag
bumpversion bump major
bump-my-version bump major

version-minor: ## bump the minor version prior to release, auto commits and tag
bumpversion bump minor
bump-my-version bump minor

version-patch: ## bump the patch version prior to release, auto commits and tag
bumpversion bump patch
bump-my-version bump patch
2 changes: 1 addition & 1 deletion neo3/api/wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ async def test_invoke_multi(
f: list[ContractMethodResult],
*,
signers: Optional[Sequence[verification.Signer]] = None,
) -> tuple:
) -> Sequence:
"""
Call all contract methods in one go (concurrently) and return the list of results.
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ maintainers = [
]
dynamic = ["version"]
dependencies = [
"aiodns==3.0.0",
"aiodns==3.1.1",
"aiohttp==3.9.1",
"base58==2.1.1",
"bitarray==2.8.1",
"bitarray==2.8.5",
"Events==0.5",
"jsonschema>=4.19.0",
"lz4==4.3.2",
"neo3crypto==0.4.1",
"netaddr>=0.8.0",
"orjson>=3.9.4",
"pycryptodome==3.18.0",
"netaddr>=0.9.0",
"orjson>=3.9.10",
"pycryptodome==3.19.0",
"pybiginteger==1.3.1",
"pybiginteger-stubs==1.3.1",
]
Expand All @@ -33,10 +33,10 @@ dev = [
"aioresponses==0.7.6",
"black==23.9.1",
"build==0.10.0",
"bump-my-version==0.10.0",
"coverage>=7.3.1",
"bump-my-version==0.12.0",
"coverage>=7.3.2",
"docutils==0.17.1",
"mypy==1.4.1",
"mypy==1.7.1",
"mypy-extensions==1.0.0",
]
docs = [
Expand Down

0 comments on commit d329f88

Please sign in to comment.