Skip to content

Commit

Permalink
Unpin setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
dafeda committed Sep 25, 2023
1 parent 1ce3284 commit a79e7f4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/doctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
id: setup_python
Expand All @@ -31,7 +32,9 @@ jobs:
setup.py
pyproject.toml
dev-requirements.txt
- run: pip install -e .
- run: |
pip install -e .
- name: Install with dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[build-system]

requires = [
"setuptools<64",
"setuptools",
"setuptools_scm[toml]>=6.2",
"wheel",
"scikit-build",
"cmake",
"ninja",
"ecl",
"conan<2",
"ecl",
"pybind11>=2.10.0", # If this comes out of sync with the version installed by Conan please update the version in CMakeLists
"grpcio-tools",
]
Expand Down
2 changes: 1 addition & 1 deletion script/build
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def install_build_requires() -> None:
"install",
"--upgrade",
"pip",
"setuptools<64",
"setuptools",
"wheel",
"tomli",
*extra_req,
Expand Down

0 comments on commit a79e7f4

Please sign in to comment.