Skip to content

Commit

Permalink
update python and bitcoind versions
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguida committed Jan 26, 2024
1 parent cf96eb6 commit 35b33d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
developer: [0,1]
experimental: [1]
deprecated: [0]
Expand All @@ -37,9 +37,9 @@ jobs:

- name: Download runtime dependencies
run: |
export BITCOIND_VERSION="0.20.1"
wget https://storage.googleapis.com/c-lightning-tests/bitcoin-${BITCOIND_VERSION}-x86_64-linux-gnu.tar.bz2
tar -xjf bitcoin-${BITCOIND_VERSION}-x86_64-linux-gnu.tar.bz2
export BITCOIND_VERSION="22.0"
wget https://bitcoincore.org/bin/bitcoin-core-${BITCOIND_VERSION}/bitcoin-${BITCOIND_VERSION}-x86_64-linux-gnu.tar.gz
tar -xzf bitcoin-${BITCOIND_VERSION}-x86_64-linux-gnu.tar.gz
sudo mv bitcoin-${BITCOIND_VERSION}/bin/* /usr/local/bin
rm -rf bitcoin-${BITCOIND_VERSION}-x86_64-linux-gnu.tar.gz bitcoin-${BITCOIND_VERSION}
Expand Down

0 comments on commit 35b33d0

Please sign in to comment.