-
-
Notifications
You must be signed in to change notification settings - Fork 744
Update PraisonAI version to 2.2.26 across Dockerfiles and related con… #595
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
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -121,7 +121,7 @@ healthcheck: | |||||
| ## 📦 Package Versions | ||||||
|
|
||||||
| All Docker images use consistent, up-to-date versions: | ||||||
| - PraisonAI: `>=2.2.25` | ||||||
| - PraisonAI: `>=2.2.26` | ||||||
| - PraisonAI Agents: `>=0.0.92` | ||||||
| - Python: `3.11-slim` | ||||||
|
|
||||||
|
|
@@ -218,7 +218,7 @@ docker-compose up -d | |||||
| ### Version Pinning | ||||||
| To use specific versions, update the Dockerfile: | ||||||
| ```dockerfile | ||||||
| RUN pip install "praisonai==2.2.25" "praisonaiagents==0.0.92" | ||||||
| RUN pip install "praisonai==2.2.26" "praisonaiagents==0.0.92" | ||||||
|
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. The example for version pinning uses
Suggested change
|
||||||
| ``` | ||||||
|
|
||||||
| ## 🌐 Production Deployment | ||||||
|
|
||||||
Large diffs are not rendered by default.
Large diffs are not rendered by default.
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
PraisonAI Agentsversion is listed as>=0.0.92here. However, this PR updatespraisonaiagentsto version0.0.97(as seen insrc/praisonai-agents/pyproject.toml) and the mainPraisonAIpackage now depends onpraisonaiagents>=0.0.97(insrc/praisonai/pyproject.toml).To maintain consistency and provide accurate information, should this line be updated to reflect version
0.0.97?