Skip to content

Commit

Permalink
removed distutils installation
Browse files Browse the repository at this point in the history
  • Loading branch information
jbieniusiewi committed Dec 17, 2024
1 parent ec3ae89 commit eeb5c01
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@ jobs:
export DEBIAN_FRONTEND=noninteractive
apt update && apt install -y software-properties-common curl
add-apt-repository ppa:deadsnakes/ppa
apt-get install -y python3.10 python3.10-dev python3.10-distutils
apt-get install -y python3.11 python3.11-dev python3.11-distutils
apt-get install -y python3.12 python3.12-dev python3.12-distutils
apt-get install -y python3.10 python3.10-dev
apt-get install -y python3.11 python3.11-dev
apt-get install -y python3.12 python3.12-dev
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.11
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.12
- name: Checkout code
uses: actions/checkout@v4
- name: Build wheel with Python 3.10
run: |
python3.10 -m pip install -U poetry build six
python3.10 -m pip install -U setuptools poetry build six
python3.10 -m poetry build -f wheel
- name: Build wheel with Python 3.11
run: |
python3.11 -m pip install -U poetry build six
python3.11 -m pip install -U setuptools poetry build six
python3.11 -m poetry build -f wheel
- name: Build wheel with Python 3.12
run: |
python3.12 -m pip install -U poetry build six
python3.12 -m pip install -U setuptools poetry build six
python3.12 -m poetry build -f wheel
- name: Upload the wheel artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit eeb5c01

Please sign in to comment.