Skip to content

Commit 436f8f6

Browse files
committed
(fix) Changed the run-test.yml configuration to use windows version to see if that fixes the workflows hanging
1 parent 2cd9389 commit 436f8f6

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424

2525
- name: Install poetry
2626
run: python -m pip install poetry
27+
28+
- name: Set poetry installer config
29+
if: runner.os == 'macOS'
30+
run: echo "POETRY_INSTALLER_NO_BINARY=:all:" >> $GITHUB_ENV
31+
2732
- name: Cache the virtualenv
2833
id: cache-venv
2934
uses: actions/cache@v4

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ include = [
2222

2323
[tool.poetry.dependencies]
2424
python = "^3.9"
25-
aiohttp = "^3.9" # Version dependency due to https://github.com/InjectiveLabs/sdk-python/security/dependabot/18
25+
aiohttp = "^3.9.4" # Version dependency due to https://github.com/InjectiveLabs/sdk-python/security/dependabot/18
2626
bech32 = "*"
2727
bip32 = "*"
2828
ecdsa = "*"
@@ -31,11 +31,11 @@ grpcio = "*"
3131
grpcio-tools = "*"
3232
hdwallets = "*"
3333
mnemonic = "*"
34-
protobuf = "^5.26"
34+
protobuf = "^5.26.1"
3535
requests = "*"
3636
safe-pysha3 = "*"
3737
websockets = "*"
38-
web3 = "^7.0"
38+
web3 = "^7.0.0"
3939

4040
[tool.poetry.group.test.dependencies]
4141
pytest = "*"

0 commit comments

Comments
 (0)