-
Notifications
You must be signed in to change notification settings - Fork 123
chore: remove --pre
from installation instructions (MERGE ON V1 RELEASE)
#780
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -181,32 +181,6 @@ We occasionally release alpha and beta versions for early testing: | |||||||||||
- **Beta** (e.g., `1.0.0b1`): Feature-complete, minor changes possible | ||||||||||||
- **Release Candidate** (e.g., `1.0.0rc1`): Final testing before stable release | ||||||||||||
|
||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nitpick] This section still describes pre-release types (alpha/beta/RC) but the immediately preceding installation guidance for obtaining those pre-release builds was removed. Consider retaining a concise note (e.g., how to use pip install --pre or npm dist-tags like @next) so users who need to test forthcoming versions know how to access them, or explicitly state that pre-release installation is no longer supported.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||||
To install pre-release versions: | ||||||||||||
|
||||||||||||
:::python | ||||||||||||
<CodeGroup> | ||||||||||||
```bash LangChain | ||||||||||||
pip install --pre langchain-core | ||||||||||||
``` | ||||||||||||
|
||||||||||||
```bash LangGraph | ||||||||||||
pip install --pre langgraph | ||||||||||||
``` | ||||||||||||
</CodeGroup> | ||||||||||||
::: | ||||||||||||
|
||||||||||||
:::js | ||||||||||||
<CodeGroup> | ||||||||||||
```bash LangChain | ||||||||||||
npm install langchain@next | ||||||||||||
``` | ||||||||||||
|
||||||||||||
```bash LangGraph | ||||||||||||
npm install @langchain/langgraph@next | ||||||||||||
``` | ||||||||||||
</CodeGroup> | ||||||||||||
::: | ||||||||||||
|
||||||||||||
## See also | ||||||||||||
|
||||||||||||
- [Release policy](/oss/release-policy) - Detailed release and deprecation policies | ||||||||||||
|
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.
The previously present 'To install pre-release versions' section (with pip/npm examples) was removed entirely, leaving the alpha/beta/RC descriptions without actionable guidance. Recommend restoring a concise note (e.g., 'Use pip install --pre ' / 'npm install @next') or linking to a central section so users can still test upcoming releases.
Copilot uses AI. Check for mistakes.