Skip to content

Commit d186b93

Browse files
authored
Merge pull request #234 from Chia-Network/dependabot/pip/chia-blockchain-2.5.0
Bump chia-blockchain from 2.4.4 to 2.5.0
2 parents 1f44303 + d222be3 commit d186b93

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/pre-commit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ jobs:
7777

7878
- shell: bash
7979
run: |
80-
pip install --extra-index https://pypi.chia.net/simple/ --editable .[dev]
80+
python -m pip install --extra-index https://pypi.chia.net/simple/ --editable .[dev]
8181
pre-commit run --all-files --verbose

.github/workflows/run-tests-nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
. ./venv/bin/activate
4444
fi
4545
sed -i 's/chia-blockchain.*/chia-blockchain @ git+https:\/\/github.com\/Chia-Network\/chia-blockchain.git@main\",/g' setup.py
46-
pip install --extra-index https://pypi.chia.net/simple/ --editable .[dev]
46+
python -m pip install --extra-index https://pypi.chia.net/simple/ --editable .[dev]
4747
chia init
4848
echo -ne "\n" | chia dev sim create
4949
export CHIA_ROOT=~/.chia/simulator/main/

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
else
5757
. ./venv/bin/activate
5858
fi
59-
pip install --extra-index https://pypi.chia.net/simple/ --editable .[dev]
59+
python -m pip install --extra-index https://pypi.chia.net/simple/ --editable .[dev]
6060
chia init
6161
echo -ne "\n" | chia dev sim create
6262
export CHIA_ROOT=~/.chia/simulator/main/

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
long_description = fh.read()
55

66
dependencies = [
7-
"chia-blockchain==2.4.4",
7+
"chia-blockchain==2.5.0",
88
]
99

1010
dev_dependencies = [

0 commit comments

Comments
 (0)