Skip to content

Commit

Permalink
Fixed tests regarding issue #143
Browse files Browse the repository at this point in the history
Removed pip from build-system, shouldn't work either way

Trying forcing pip version

Trying forcing pip version

Removing install_requires

Problem seems to originate from pip version

Trying setuptools in install_requires again

Testing installing setuptools before requirements

Removed setuptools from setup.py, doesn't seem to make much sense

Testing forcing setuptools version in pyproject.toml

Testing setuptools in install_requires

Testing setup_requires in setup.py

Run tests
  • Loading branch information
tsampazk committed Jun 3, 2023
1 parent 5b45f06 commit 28fdf4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pip==21
pip install -r requirements.txt
- name: Lint with flake8
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=40.6.0", "wheel"]
requires = ["setuptools==65.5.0", "wheel"]
build-backend = "setuptools.build_meta"


Expand Down

0 comments on commit 28fdf4d

Please sign in to comment.