-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Require setuptools>=61 #207
Merged
BenjaminRodenberg
merged 2 commits into
precice:develop
from
BenjaminRodenberg:simplify-setup-py
Jul 9, 2024
Merged
Require setuptools>=61 #207
BenjaminRodenberg
merged 2 commits into
precice:develop
from
BenjaminRodenberg:simplify-setup-py
Jul 9, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… shown when building with spack).
fsimonis
approved these changes
Jul 9, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good way forward. Now pyproject.toml 😄
I've put this into #208 |
BenjaminRodenberg
added a commit
that referenced
this pull request
Aug 27, 2024
* Require setuptools>=61. Will ensure use of pyproject.toml. * Simplify setup.py w.r.t noisy warning (always shown when building with spack).
BenjaminRodenberg
added a commit
that referenced
this pull request
Aug 27, 2024
* Require setuptools>=61. Will ensure use of pyproject.toml. * Simplify setup.py w.r.t noisy warning (always shown when building with spack).
BenjaminRodenberg
added a commit
that referenced
this pull request
Dec 5, 2024
* Lint markdown files and update files correspondingly. (#180) * Add Cython as dependency required during installation (#177) * Adapt Docker workflow according to new system tests design (#186) - modify args to fit to systemtest - make the manual triggering more useful - move latest tag to last master * bash string handling... Fun stuff * sprinkle in some " * adding some "debug" ouptut * Update .github/workflows/build-docker.yml * Require setuptools>=61 (#207) * Restrict to numpy < 2 and setuptools < 72 for better compatibiltiy with CI pipeline (#213) * Simplify setup.py w.r.t noisy warning (always shown when building with spack). * Use Ubuntu 24.04. * Explicitly specify docker image tags in CI. * use spack base image precice/ci-spack-pyprecice-deps-2404:2.5.1.0 * use precice base image precice/precice:2.5.1 * Add entry in changelog. * Fix spack workflow for 2.5.1.0. * Add branch for release candidate of 2.5.1.0 * Update build dependencies for release candidate * Use PyPI token instead of username and password in the package publishing action --------- Co-authored-by: Ishaan Desai <[email protected]> Co-authored-by: valentin-seitz <[email protected]> Co-authored-by: Valentin Seitz <[email protected]> Co-authored-by: Gerasimos Chourdakis <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Requiring setuptools>=61 allows us to remove a noisy warning that always shows up when building with spack. It also allows us to simplify the
setup.py
. Setuptools>=61 guarantees that pyproject.toml is used.