-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add support for pandas 2.0 support + lock versions #84
Conversation
requirements.txt
Outdated
pyyaml | ||
requests | ||
openpyxl | ||
genshi==0.7.7 |
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.
I would not pin them that strict, maybe work with >= and <=?
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.
I agree it is not ideal for people that do not make use of environments, but >= on pandas would not have prevented the issue we now have for example, since certain things will get deprecated. <= would that be better than?
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.
Both we need bigger than 2.0 and smaller like 3.0 left?
@@ -1,6 +1,6 @@ | |||
genshi | |||
lxml | |||
pandas>=1.2 |
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.
@bgruening something like this?
Thanks! |
I locked the versions of our requirements to prevent issues. This will close #83