diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index cda21fc9..ea07d158 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -24,6 +24,11 @@ jobs: - name: Install poetry run: python -m pip install poetry + + - name: Set poetry installer config + if: runner.os == 'macOS' + run: echo "POETRY_INSTALLER_NO_BINARY=:all:" >> $GITHUB_ENV + - name: Cache the virtualenv id: cache-venv uses: actions/cache@v4 diff --git a/poetry.lock b/poetry.lock index 2d60bf56..75020cb6 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2976,4 +2976,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "c2aefad9a200e5e8101ed76a9a76dadad28d95200081a60aaad07e3c2bd85a0d" +content-hash = "968fa5fac500b8b371153f169ec301f38fe1e4f9a1ab670b949e5427340d8c63" diff --git a/pyproject.toml b/pyproject.toml index 196b9f7c..ab868fe1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ include = [ [tool.poetry.dependencies] python = "^3.9" -aiohttp = "^3.9" # Version dependency due to https://github.com/InjectiveLabs/sdk-python/security/dependabot/18 +aiohttp = "^3.9.4" # Version dependency due to https://github.com/InjectiveLabs/sdk-python/security/dependabot/18 bech32 = "*" bip32 = "*" ecdsa = "*" @@ -31,11 +31,11 @@ grpcio = "*" grpcio-tools = "*" hdwallets = "*" mnemonic = "*" -protobuf = "^5.26" +protobuf = "^5.26.1" requests = "*" safe-pysha3 = "*" websockets = "*" -web3 = "^7.0" +web3 = "^7.0.0" [tool.poetry.group.test.dependencies] pytest = "*"