10000 prepare b2, numpy-2 by stonebig · Pull Request #1367 · winpython/winpython · GitHub
[go: up one dir, main page]

Skip to content

prepare b2, numpy-2 #1367

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

Merged
merged 1 commit into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
prepare b2, numpy-2
  • Loading branch information
stonebig committed Jul 7, 2024
commit 572536ce6283a0d1aed354e0bb49247798c17e95
2 changes: 1 addition & 1 deletion winpython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
OTHER DEALINGS IN THE SOFTWARE.
"""

__version__ = '9.0.20240629'
__version__ = '9.0.20240707'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'
2 changes: 1 addition & 1 deletion winpython/piptree.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def _upraw(self, pp, extra="", version_req="", depth=20, path=[], verbose=False)
# {'req_key': 'langchain', 'req_version': '(>=1.26.0,<2.0.0)', 'req_extra': '', 'req_marker': ' python_version >= "3.12"'}
# must be no extra dependancy, optionnal extra in the package, or provided extra per upper packages
if ("req_marker" not in r and extra =="") or (extra !="" and extra==up_req and r["req_key"]!=p) or (extra !="" and "req_marker" in r and extra+',' in r["req_extra"]+',' #bingo1346 contourpy[test-no-images]
or extra+',' in r["req_extra"]+',' and Marker(r["req_marker"]).evaluate(environment=envi)
or "req_marker" in r and extra+',' in r["req_extra"]+',' and Marker(r["req_marker"]).evaluate(environment=envi)
):
ret += self._upraw(
r["req_key"],
Expand Down
0