Skip to content

Commit

Permalink
(fix) Changed the run-test.yml configuration to use windows version t…
Browse files Browse the repository at this point in the history
…o see if that fixes the workflows hanging
  • Loading branch information
aarmoa committed Jan 22, 2025
1 parent 2cd9389 commit 436f8f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "*"
Expand All @@ -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 = "*"
Expand Down

0 comments on commit 436f8f6

Please sign in to comment.