[Repo Assist] docs(getting_started): update install.rst for Python 3.9+, poetry workflow, and py-why links - #1786
Draft
github-actions[bot] wants to merge 1 commit into
Conversation
… setup, and py-why links - Correct Python version requirement: 3.6+ → 3.9+ (project requires Python ≥3.9) - Replace 'pip install -e .' dev instructions with Poetry workflow - Remove stale 'pip install -r requirements.txt' (no requirements.txt exists) - Replace deprecated '--global-option' pip flags for pygraphviz with plain pip install - Fix broken microsoft/dowhy conda issues link → py-why/dowhy/issues - Simplify Azure ML dev version section with modern git+https install method Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This file contains hidden or 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
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.
🤖 This PR was created by Repo Assist, an automated AI assistant.
Problem
The installation documentation in
docs/source/getting_started/install.rstwas significantly outdated:pip install -r requirements.txtbut norequirements.txtexists — the project uses Poetrypip install -e .is not the recommended development workflow; Poetry is--global-option=build_ext --global-option="-I..."for pygraphviz is deprecated in modern pipgithub.com/microsoft/dowhy/issues/197— repo moved topy-whyFix
pip install -e .dev instructions with the standard Poetry workflow (poetry install -E "plotting")pip install -r requirements.txthint--global-optionpip flags for pygraphviz with plainpip install pygraphviz%pip install git+https://github.com/py-why/dowhy.gitTest Status
Documentation-only change — no Python code changed.
flake8not applicable (RST file)black/isortnot applicable (RST file)pyproject.toml(Python ≥3.9, poetry-based install)