fix: sync requirements.txt versions with pyproject.toml#13488
Closed
hobostay wants to merge 1 commit intoNousResearch:mainfrom
Closed
fix: sync requirements.txt versions with pyproject.toml#13488hobostay wants to merge 1 commit intoNousResearch:mainfrom
hobostay wants to merge 1 commit intoNousResearch:mainfrom
Conversation
requirements.txt was out of date with the canonical dependency specifications in pyproject.toml: - Added missing version pins for openai, python-dotenv, fire, httpx, rich, tenacity, pyyaml, requests, jinja2, pydantic - Fixed prompt_toolkit pin (was unpinned, now >=3.0.52,<4) - Fixed PyJWT[crypto] pin (was unpinned, now >=2.12.0,<3) - Fixed debugpy pin (was unpinned, now >=1.8.0,<2) - Fixed discord.py: added missing [voice] extra and corrected min version from >=2.0 to >=2.7.1,<3 - Fixed aiohttp min version from >=3.9.0 to >=3.13.3,<4 - Fixed python-telegram-bot: added missing upper bound (<23) - Added missing slack-bolt and slack-sdk dependencies - Added missing exa-py dependency with version pin These mismatches could cause dependency conflicts or pull in incompatible versions when installing via requirements.txt instead of pyproject.toml. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
teknium1
added a commit
that referenced
this pull request
Apr 21, 2026
The root requirements.txt has drifted from pyproject.toml for years
(unpinned, missing deps like slack-bolt, slack-sdk, exa-py, anthropic)
and no part of the codebase (CI, Dockerfiles, scripts, docs) consumes
it. It exists only for drive-by 'pip install -r requirements.txt'
users and will drift again within weeks of any sync.
Canonical install remains:
pip install -e ".[all]"
Closes #13488 (thanks @hobostay — your sync was correct, we're just
deleting the drift trap instead of patching it).
Contributor
|
Superseded by #13515 (merged in bd342f3) — we deleted |
pokoni
pushed a commit
to pokoni/hermes-agent
that referenced
this pull request
Apr 21, 2026
…Research#13515) The root requirements.txt has drifted from pyproject.toml for years (unpinned, missing deps like slack-bolt, slack-sdk, exa-py, anthropic) and no part of the codebase (CI, Dockerfiles, scripts, docs) consumes it. It exists only for drive-by 'pip install -r requirements.txt' users and will drift again within weeks of any sync. Canonical install remains: pip install -e ".[all]" Closes NousResearch#13488 (thanks @hobostay — your sync was correct, we're just deleting the drift trap instead of patching it).
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.
Summary
requirements.txtwas significantly out of date with the canonical dependency specifications inpyproject.tomlslack-boltandslack-sdkwere completely missing fromrequirements.txtChanges:
Test plan
pyproject.tomlexactlypip install -r requirements.txtsucceeds in a clean environmentpip install -e ".[all]"still works correctly🤖 Generated with Claude Code