Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fix
Browse files Browse the repository at this point in the history
  • Loading branch information
em92 committed Oct 19, 2024
1 parent b33f868 commit 37aaa57
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/test-pypa-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
include:
- python-version: "3.12"
os: "ubuntu-22.04"
extra-python-packages: python3.12-distutils
- python-version: "3.11"
os: "ubuntu-22.04"
- python-version: "3.10"
Expand All @@ -28,7 +27,6 @@ jobs:
os: "ubuntu-22.04"
- python-version: "3.6"
os: "ubuntu-20.04"
extra-python-packages: python3.6-distutils
- python-version: "3.5"
os: "ubuntu-20.04"

Expand All @@ -41,13 +39,12 @@ jobs:
run: sudo add-apt-repository ppa:deadsnakes/ppa
- name: Set up Python ${{ matrix.python-version }}
run: |
sudo apt-get install python${{ matrix.python-version }}-dev ${{ matrix.extra-python-packages }}
sudo apt-get install python${{ matrix.python-version }}-dev
sudo update-alternatives --install /usr/bin/python3 python3 `which python${{ matrix.python-version }}` 1
sudo update-alternatives --install /usr/bin/python3-config python3-config `which python${{ matrix.python-version }}-config` 1
- name: Upgrade setuptools for Python 3.12
if: matrix.python-version == '3.12'
- name: Install setuptools
run: |
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
curl https://bootstrap.pypa.io/get-pip${{ matrix.python-version }}.py -o get-pip.py
python3 get-pip.py "setuptools > 69.0"
- name: Install requirements
run: python3 -m pip install -r requirements.txt
Expand Down

0 comments on commit 37aaa57

Please sign in to comment.