- Notifications
You must be signed in to change notification settings - Fork126
Less strict numpy and pyarrow dependencies#74
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -13,15 +13,15 @@ python = "^3.7.1" | ||
| thrift = "^0.16.0" | ||
| pandas = "^1.3.0" | ||
| pyarrow = [ | ||
| {version = ">=6.0.0", python = ">=3.7,<3.11"}, | ||
ContributorAuthor 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. Probably we could allow even older versions but I think this should make most people happy. | ||
| {version = ">=10.0.1", python = ">=3.11"} | ||
| ] | ||
| lz4 = "^4.0.2" | ||
| requests="^2.18.1" | ||
| oauthlib="^3.1.0" | ||
| numpy = [ | ||
| {version = ">=1.16.6", python = ">=3.7,<3.11"}, | ||
| {version = ">=1.23.4", python = ">=3.11"} | ||
ContributorAuthor 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. It looks like the special requirement for python 3.11 was added recently in#60 so I assume that is important but I changed it to accept >= to this version. I also think we should only enforce this requirement on python 3.11 | ||
| ] | ||
| [tool.poetry.dev-dependencies] | ||