Try renaming the wheel to work with the current python version
This commit is contained in:
parent
e8ae5047cb
commit
0d864490df
|
@ -25,19 +25,17 @@ jobs:
|
||||||
uname -srm
|
uname -srm
|
||||||
cat /etc/os-release
|
cat /etc/os-release
|
||||||
|
|
||||||
- name: Install pre-requisite packages
|
#- name: Install pre-requisite packages
|
||||||
id: prereq
|
#id: prereq
|
||||||
run: |
|
#run: |
|
||||||
apt-get update
|
#apt-get update
|
||||||
apt-get install software-properties-common -y
|
#apt-get install software-properties-common -y
|
||||||
|
|
||||||
- name: Install python3-venv
|
- name: Install python3-venv
|
||||||
id: install
|
id: install
|
||||||
run: |
|
run: |
|
||||||
add-apt-repository ppa:deadsnakes/ppa
|
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install python3.11 python3.11-venv python3.11-pip -y
|
apt-get install python3 python3-venv python3-pip -y
|
||||||
if: steps.prereq.outcome == 'success'
|
|
||||||
|
|
||||||
- name: Check Python version
|
- name: Check Python version
|
||||||
run: |
|
run: |
|
||||||
|
@ -55,7 +53,7 @@ jobs:
|
||||||
- name: Get DIDKit wheel
|
- name: Get DIDKit wheel
|
||||||
id: didkit
|
id: didkit
|
||||||
run: |
|
run: |
|
||||||
wget https://gitea.pangea.org/trustchain-oc1-orchestral/ssikit_trustchain/raw/branch/master/didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl
|
wget -O didkit-0.3.2-cp39-cp39-manylinux_2_34_x86_64.whl https://gitea.pangea.org/trustchain-oc1-orchestral/ssikit_trustchain/raw/branch/master/didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl
|
||||||
echo "Successfully downloaded DIDkit"
|
echo "Successfully downloaded DIDkit"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
|
@ -27,4 +27,4 @@ uharfbuzz==0.38.0
|
||||||
fontTools==4.47.0
|
fontTools==4.47.0
|
||||||
weasyprint==60.2
|
weasyprint==60.2
|
||||||
ujson==5.9.0
|
ujson==5.9.0
|
||||||
./didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl
|
./didkit-0.3.2-cp39-cp39-manylinux_2_34_x86_64.whl
|
||||||
|
|
Loading…
Reference in New Issue