We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pyproject.toml
It is recommended to use pyproject.toml.
I would suggest to start by managing the sollowing additional points over pyproject.toml:
mpi4py < 4
requirements.txt
fenics
setup.cfg
versioneer
setup.py
The text was updated successfully, but these errors were encountered:
https://hatch.pypa.io/latest/intro/#existing-project This can convert the setup.py to pyproject.toml
Sorry, something went wrong.
NiklasVin
No branches or pull requests
It is recommended to use
pyproject.toml
.I would suggest to start by managing the sollowing additional points over
pyproject.toml
:mpi4py < 4
is required. See Add missingrequirements.txt
and venvs for Python tutorials tutorials#563fenics
as a dependency? Note that the installation process of FEniCS is somewhat non-standard. See, for example, what I'm doing heresetup.cfg
file withpyproject.toml
. I introducedsetup.cfg
to be able to useversioneer
. We should be able to move that topyproject.toml
(see https://github.com/python-versioneer/python-versioneer?tab=readme-ov-file#vendored-mode).setup.py
and intopyproject.toml
. See https://stackoverflow.com/questions/76161889/how-do-i-specify-a-python-version-constraint-for-a-dependency-specifically-for-aThe text was updated successfully, but these errors were encountered: