Skip to content

Commit

Permalink
Merge pull request #20 from nennigb/upper-bound-setuptools
Browse files Browse the repository at this point in the history
Add an upper bound to `setuptools` in `pyproject.toml` to ensure compatibility
  • Loading branch information
nennigb authored Sep 4, 2024
2 parents 13151c9 + 80f0d70 commit b278f24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires=['setuptools', 'wheel', 'numpy']
requires=['setuptools<60.0', 'wheel', 'numpy']

0 comments on commit b278f24

Please sign in to comment.