-
Notifications
You must be signed in to change notification settings - Fork 4
Remove upper limits from dependencies #63
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -21,10 +21,10 @@ classifiers = [ | |||||
| requires-python = ">=3.9" | ||||||
| dependencies = [ | ||||||
| "numpy>=1.21.6", | ||||||
| "pandas>=1.4.0,<3", | ||||||
| "pandas>=1.4.0", | ||||||
| "scikit-learn>=1.2.0", | ||||||
| "typing-extensions>=4.12,<5", | ||||||
| "posthog~=6.7", | ||||||
| "typing-extensions>=4.12", | ||||||
| "posthog>=6.7", | ||||||
|
Contributor
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. Removing the upper version cap for As a side note, the PR description's claim that
Suggested change
|
||||||
| "platformdirs>=4", | ||||||
| "filelock>=3.19.1", | ||||||
| "requests>=2.32.5", | ||||||
|
|
||||||
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.
While removing upper bounds can help with downstream dependency conflicts, completely removing the major version cap for
pandasis risky. A future major version (e.g., v3.0 or v4.0) could introduce breaking changes that would causetabpfn-common-utilsto fail at runtime. A good compromise is to allow for the next major version while capping at the one after. This provides flexibility while still protecting against future breaking changes.