-
-
Notifications
You must be signed in to change notification settings - Fork 274
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
Detect .venv in current or parent folder in maturin develop #1462
Conversation
✅ Deploy Preview for maturin-guide ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
ecc6e95
to
f8a72f0
Compare
Should |
i'd say no, because building is slow (vs. run being near-instant) and we'd need to handle all the cli args to develop. Maybe we could add a |
Maybe we should split |
2529787
to
a427d18
Compare
maturin run
a427d18
to
25e3f9a
Compare
I've changed this to only include the |
bors r+ |
Build succeeded: |
https://build.opensuse.org/request/show/1072766 by user mia + dimstar_suse - Update to v0.14.15: * Add sdist and sccache support to generate-ci command - Changes in v0.14.14: * Add support for Emscripten in generate-ci command gh#PyO3/maturin#1484 * Use default ext_suffix for Emscripten target if not provided in PYO3_CONFIG_FILE gh#PyO3/maturin#1491 * Deprecate package.metadata.maturin.data in favor of tool.maturin.data in pyproject.toml gh#PyO3/maturin#1492 - Update to v0.14.13: * maturin develop now looks for a virtualenv .venv in the current or any parent directory if no virtual environment is active gh#PyO3/maturin#1462 * Add a new generate-ci command to generate CI configuration gh#PyO3/maturin#1456 * Deprecate --univeral2 in favor of universal2-apple-darwin target gh#PyO3/maturin#1457 * Raise an error
See discussion in #1461
maturin develop
now looks for a virtualenv .venv in the current or any parent directory if no venv or conda environment is active.If someone knows a good
execv
equivalent on windows i'll switch over to that, currently it's a subcommand which is still fine.