Skip to content

Commit cc10fa7

Browse files
authored
Merge pull request #1212 from stonebig/master
updates
2 parents b12d3e4 + 696da3b commit cc10fa7

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

make.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1816,7 +1816,13 @@ def _create_batch_scripts(self):
18161816
"%WINPYDIR%\scripts\pyzo.exe" %*
18171817
""",
18181818
)
1819-
1819+
1820+
self.create_batch_script( # virtual environment mimicking
1821+
"activate.bat",
1822+
r"""@echo off
1823+
call "%~dp0env.bat" %*
1824+
""",
1825+
)
18201826
# pre-run mingw batch
18211827
print("now pre-running extra mingw")
18221828
filepath = str(Path(self.winpydir) / "scripts" / "make_cython_use_mingw.bat")
@@ -1842,6 +1848,8 @@ def _create_batch_scripts(self):
18421848
18431849
""",
18441850
)
1851+
1852+
18451853

18461854
def _run_complement_batch_scripts(self, this_batch="run_complement.bat"):
18471855
"""tools\..\run_complement.bat for final complements"""

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

winpython/data/packages.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3502,3 +3502,6 @@ description = rapid fuzzy string matching
35023502
[trove-classifiers]
35033503
description = Canonical source for classifiers on PyPI (pypi.org).
35043504
3505+
[dirty-cat]
3506+
description = Machine learning with dirty categories.
3507+

0 commit comments

Comments
 (0)