Skip to content

Commit

Permalink
Update setuptools with pip
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislainv committed Apr 9, 2024
1 parent a88f3a5 commit c9ca454
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Installing Python packages
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pip setuptools
# Install NumPy before GDAL
python3 -m pip install numpy
python3 -m pip install --global-option=build_ext --global-option="-I/usr/include/gdal" gdal==$(gdal-config --version)
python3 -m pip install gdal==$(gdal-config --version)
python3 -m pip install -r requirements.txt
python3 -m pip install sphinx
python3 -m pip install .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
sudo apt-get install --yes libgdal-dev gdal-bin
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pip setuptools
python3 -m pip install flake8 pytest
# Install NumPy before GDAL
python3 -m pip install numpy
python3 -m pip install --global-option=build_ext --global-option="-I/usr/include/gdal" gdal==$(gdal-config --version)
python3 -m pip install gdal==$(gdal-config --version)
python3 -m pip install -r requirements.txt
python3 -m pip install .
- name: Lint with flake8
Expand Down

0 comments on commit c9ca454

Please sign in to comment.