-
Notifications
You must be signed in to change notification settings - Fork 6
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 version range of typing-extensions (>=3.10, <5.0) #165
Conversation
@SohumB Thank you for the PR! Just to confirm, do you mean that because I agree with the idea of loosing the version range, but I also think it would be nice to have an upper limit like |
That's correct, yes. And that makes sense, just because 4.0 seems compatible doesn't mean 5.0 will also be. I've updated the PR. |
@SohumB Thank you for the update.
Perhaps there is something wrong with the contents of (In my environment built with the included devcontainer, Poetry v1.1.15 failed to update properly. Upgrading Poetry to v1.2.0rc2 by |
I'm not seeing that warning in any of the 3.8/3.9/3.10 tests in the CI run. (And, indeed, running
The problem appears to be that pandas has dropped 3.7 compatibility, so anything downstream of it can't have 3.7 compatibility either. Should I just remove 3.7 from the github workflows file? |
@SohumB After checking
No, please keep the workflow for Python 3.7 because I design the dependencies so that the package chooses old xarray (and old pandas) that are compatible with Python 3.7: xarray = [
{ version = ">=0.18, <0.21", python = ">=3.7.1, <3.8" },
{ version = ">=0.18, <2023", python = ">=3.8, <3.11" },
] Sorry for asking you many times, but could you re-update |
Huh, weird. I can't say I understand poetry well enough to understand why those hashes were removed. I've updated to poetry 1.2.0 (from 1.1.14) and rerun |
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.
Thank you for the update! poetry.lock
now works no problem with Python 3.7. I will merge your PR and release a new version as soon as possible.
@SohumB Now v1.3.1 is available from PyPI. Again thank you so much for your contribution! |
Excellent! and thank you so much for bearing with me through this!
…On Mon, 5 Sept 2022, 20:03 Akio Taniguchi, ***@***.***> wrote:
@SohumB <https://github.com/SohumB> Now v1.3.1 is available from PyPI.
Again thank you so much for your contribution!
—
Reply to this email directly, view it on GitHub
<#165 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAQHKGT73WMNSNN4IZO3JTV4XAODANCNFSM55GTOOAA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Due to python-poetry/poetry#697, this is necessary to install
xarray-dataclasses
in any poetry project that directly or indirectly depends ontyping-extensions
4+.The tests pass on 4.3.0, but I do not know the project at all; if there are any further changes that may need to be made, please do let me know.