8000 Merge pull request #1003 from stonebig/master · blog2i2j/winpython.._..winpython@c35087a · GitHub
[go: up one dir, main page]

Skip to content

Commit c35087a

Browse files
authored
Merge pull request winpython#1003 from stonebig/master
Make WinPython launchers work on base directories like "x ()y"
2 parents 675b9c6 + d5d7950 commit c35087a

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,7 @@ def _create_batch_scripts_initial(self):
13751375
)
13761376
) else (
13771377
rem if it it launched from another directory , we keep it that one echo %CD%
1378-
if not "%CD%\"=="%~dp0" set WINPYWORKDIR1=%CD%
1378+
if not "%CD%\"=="%~dp0" set WINPYWORKDIR1="%CD%"
13791379
)
13801380
13811381
rem remove some potential last \

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__ = '4.3.20210620'
31+
__version__ = '4.4.20210807'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

winpython/data/packages.ini

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3166,3 +3166,18 @@ description = The Real First Universal Charset Detector. Open, modern and active
31663166
[backports-entry-points-selectable]
31673167
description = Compatibility shim providing selectable entry points for older implementations
31683168
3169+
[sqlite-fts4]
3170+
description = Python functions for working with SQLite FTS4 search
3171+
3172+
[pyzstd]
3173+
description = Python bindings to Zstandard (zstd) compression library, the API is similar to Python's bz2/lzma/zlib module.
3174+
3175+
[pypyodbc]
3176+
description = A Pure Python ctypes ODBC module
3177+
3178+
[jupyter-dash]
3179+
description = Dash support for the Jupyter notebook interface
3180+
3181+
[ansi2html]
3182+
description = UNKNOWN
3183+

0 commit comments

Comments
 (0)
0