diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ca6ace7..69680ed 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,8 +17,6 @@ jobs: run: pip install -U pip - name: Install dev dependencies run: pip install -e .[dev] - - name: Mypy type check - run: mypy moonworm/ - name: Isort imports check run: isort --check moonworm/ - name: Black syntax check diff --git a/moonworm/version.py b/moonworm/version.py index af16777..2709226 100644 --- a/moonworm/version.py +++ b/moonworm/version.py @@ -1 +1 @@ -MOONWORM_VERSION = "0.6.2" +MOONWORM_VERSION = "0.7.0" diff --git a/setup.py b/setup.py index 8f35043..87f9793 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ "black", "inflection", "libcst", - "pysha3<2.0.0,>=1.0.0", + "pysha3<2.0.0,>=1.0.0; python_version < '3.6'", "tqdm", "typing-extensions", "web3>=5.27.0",