-
Notifications
You must be signed in to change notification settings - Fork 45
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
Update versions of dependencies and constraints #65
Conversation
cebasfu93
commented
Oct 12, 2023
•
edited
Loading
edited
- Bumped version of Pandas, pytest, pytest-cov, and ruff
- Checked that it behaves the same way (i.e. unit tests produce the same results and raise the same warnings) with Python 3.11
-
- Fixed some linting (mostly line-too-long)
pyproject.toml
Outdated
@@ -16,18 +16,18 @@ classifiers = [ | |||
|
|||
[tool.poetry.dependencies] | |||
python = "^3.8.0" | |||
pandas = "^1.5.3" | |||
pandas = "^2.1.1" |
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.
@cebasfu93 could you replace this with ">=1.5.3" instead of bumping to 2
i don't know how many users still might be using pandas 1
This package makes minimal usage of pandas features, so I think we want to relax constraints as much as possible to accommodate more users
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.
Good point :)
Thanks for the quick review!
Update updating pyproject.toml |
Is there anything else you would like me to address? 😇 |
All good thanks @cebasfu93 |