Skip to content

Commit

Permalink
Bump dependencies (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas authored Mar 31, 2023
1 parent 4cf5d9e commit a79b5ef
Show file tree
Hide file tree
Showing 7 changed files with 612 additions and 606 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
python-version: "3.11"
- uses: abatilo/[email protected]
with:
poetry-version: 1.2.2
poetry-version: 1.4.1
- name: Upload to pypi
run: |
poetry build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- uses: abatilo/[email protected]
with:
poetry-version: 1.2.2
poetry-version: 1.4.1
- uses: actions/cache@v3
with:
path: |
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
repos:
- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort

- repo: https://github.com/ambv/black
rev: 22.10.0
rev: 23.3.0
hooks:
- id: black
exclude: venv

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
rev: v1.1.1
hooks:
- id: mypy
entry: mypy web3_input_decoder/
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021-2022 Weiliang Li
Copyright (c) 2021-2023 Weiliang Li

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# web3-input-decoder

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/6f10d5104ef4464797ee94b17c7b9371)](https://www.codacy.com/gh/kigawas/web3-input-decoder/dashboard)
[![CI](https://img.shields.io/github/workflow/status/kigawas/web3-input-decoder/Build)](https://github.com/kigawas/web3-input-decoder/actions)
[![CI](https://img.shields.io/github/actions/workflow/status/kigawas/web3-input-decoder/ci.yml)](https://github.com/kigawas/web3-input-decoder/actions)
[![Codecov](https://img.shields.io/codecov/c/github/kigawas/web3-input-decoder.svg)](https://codecov.io/gh/kigawas/web3-input-decoder)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/web3-input-decoder.svg)](https://pypi.org/project/web3-input-decoder/)
[![PyPI](https://img.shields.io/pypi/v/web3-input-decoder.svg)](https://pypi.org/project/web3-input-decoder/)
Expand Down
1,198 changes: 602 additions & 596 deletions poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "web3-input-decoder"
version = "0.1.7"
version = "0.1.8"
# doc
authors = ["Weiliang Li <[email protected]>"]
description = "A simple offline web3 transaction input decoder for functions and constructors"
Expand Down Expand Up @@ -32,10 +32,10 @@ eth-utils = "^2.1.0"
pycryptodome = "^3.15.0"

[tool.poetry.dev-dependencies]
black = "^22.10.0"
black = "^23.3.0"
flake8 = {version = "^6.0.0", python = "^3.8.1"}
ipython = {version = "^8.6.0", python = "^3.8"}
mypy = "^0.991"
mypy = "^1.1"

# stubs
eth-typing = "^3.2.0"
Expand Down

0 comments on commit a79b5ef

Please sign in to comment.