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
Currently, we specify dependencies in more than one place:
This redundancy leads to the obvious problems. We can solve the problem by:
[project.optional-dependencies] moments-popgen = ["moments-popgen>=1.2.0"]
These optional features can be for various tasks (development, CI, etc.)
cmake
python -m pip install -Ccmake.define.BUILD_PYTHON_UNIT_TESTS=On -Ccmake.define.BUILD_CPP_UNIT_TESTS=On -e .
(Currently, the above doesn't work. The C++ test suite ends up in the cmake build directory. But we could output it somewhere sensible instead?)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, we specify dependencies in more than one place:
This redundancy leads to the obvious problems.
We can solve the problem by:
These optional features can be for various tasks (development, CI, etc.)
cmake
to do the right thing:(Currently, the above doesn't work.
The C++ test suite ends up in the
cmake
build directory.But we could output it somewhere sensible instead?)
The text was updated successfully, but these errors were encountered: