-
Notifications
You must be signed in to change notification settings - Fork 4
Update dependencies #34
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
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. I updated the Python version to >=3.9,<3.14 such that it now includes 3.12 and 3.13. But 3.9 also seems to be supported, according to my testing
Member
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. Let's keep testing 3.9 until it breaks |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,18 +34,19 @@ classifiers = [ | |
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| "Programming Language :: Python :: 3.13", | ||
| "License :: OSI Approved :: MIT License", | ||
| "Operating System :: OS Independent", | ||
| "Development Status :: 3 - Alpha", | ||
| ] | ||
| requires-python = ">=3.9,<3.12" | ||
| requires-python = ">=3.9,<3.14" | ||
|
Member
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. sounds good provided we can pass tests in these python envs |
||
| dependencies = [ | ||
| "py_wake>=2.6.5", | ||
| "foxes>=1.6.2", | ||
| "windIO @ git+https://github.com/EUFlow/windIO.git", | ||
| "wayve @ git+https://gitlab.kuleuven.be/TFSO-software/wayve@dev_foxes", | ||
| #"numpy<2", | ||
| "xarray>=2022.0.0,<2025", | ||
| "xarray>=2022.0.0", | ||
| "mpmath", | ||
| ] | ||
|
|
||
|
|
||
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.
python 3.9 is supported to my knowledge - I tested the installation locally on my computer, and also during testing the installation works
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.
Ah, I was more thinking about the end-of-live of python 3.9 (no need to support it anymore or make things backwards compatible)
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.
Oh, that is also a good point. I will discuss this with the team, thanks. My personal philosophy is to drop deprecated Python versions as soon as they cause trouble