8000 Merge pull request #1367 from stonebig/master · Nizhal/winpython@abcb06f · GitHub
[go: up one dir, main page]

Skip to content

Commit abcb06f

Browse files
authored
Merge pull request winpython#1367 from stonebig/master
prepare b2, numpy-2
2 parents 976a6a4 + 572536c commit abcb06f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

winpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '9.0.20240629'
31+
__version__ = '9.0.20240707'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

winpython/piptree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def _upraw(self, pp, extra="", version_req="", depth=20, path=[], verbose=False)
205205
# {'req_key': 'langchain', 'req_version': '(>=1.26.0,<2.0.0)', 'req_extra': '', 'req_marker': ' python_version >= "3.12"'}
206206
# must be no extra dependancy, optionnal extra in the package, or provided extra per upper packages
207207
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]
208-
or extra+',' in r["req_extra"]+',' and Marker(r["req_marker"]).evaluate(environment=envi)
208+
or "req_marker" in r and extra+',' in r["req_extra"]+',' and Marker(r["req_marker"]).evaluate(environment=envi)
209209
):
210210
ret += self._upraw(
211211
r["req_key"],

0 commit comments

Comments
 (0)
0