Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 65acce9

Browse files
author
stonebig
committed
new tools and package names
1 parent 23ff173 commit 65acce9

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

make.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ def get_tool_path(relpath, checkfunc):
159159
if nodepath is not None:
160160
nodever = utils.get_nodejs_version(nodepath)
161161
installed_tools += [('Nodejs', nodever)]
162+
npmver = utils.get_npmjs_version(nodepath)
163+
installed_tools += [('npmjs', npmver)]
162164

163165
pandocexe = get_tool_path (r'\tools\pandoc.exe', osp.isfile)
164166
if pandocexe is not None:

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

winpython/data/packages.ini

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ description=tools for machine learning and data mining in Astronomy
4747
description=Community-developed python astronomy tools
4848
4949
[attrs]
50-
description=Attributes without boilerplate.
50+
description=Classes Without Boilerplate
5151
5252
[babel]
5353
description=Internationalization utilities
@@ -196,6 +196,9 @@ description=Code coverage measurement for Python
196196
[cryptography]
197197
description=cryptography is a package which provides cryptographic recipes and primitives to Python developers
198198
199+
[cupy]
200+
description=NumPy-like API accelerated with CUD
201+
199202
[cvxcanon]
200203
description=common operations for convex optimization modeling tools.
201204
@@ -305,6 +308,9 @@ description=A python package that provides useful locks.
305308
[fastparquet]
306309
description=Python support for Parquet file format
307310
311+
[fastrlock]
312+
description=A fast RLock implementation for CPython
313+
308314
[fast-histogram]
309315
description=Fast 1D and 2D histogram functions in Python
310316
@@ -329,6 +335,9 @@ description=SeaSurf is a Flask extension for preventing cross-site request forge
329335
[flexx]
330336
description=Pure Python toolkit for creating GUI's using web technology.
331337

338+
[flit]
339+
description=Simplified packaging of Python modules
340+
332341
[fonttools]
333342
description=Tools to manipulate font files
334343

@@ -433,8 +442,8 @@ description=General-purpose Python interface to HDF5 files (unlike PyTables, h5p
433442
[ibis-framework]
434443
description=Productivity-centric Python Big Data Framework
435444

436-
[ipykernel]
437-
description=IPython Kernel for Jupyter
445+
[ipydatawidgets]
446+
description=A set of widgets to help facilitate reuse of large datasets across widgets
438447

439448
[idlex]
440449
description=IDLE Extensions for Python
@@ -864,6 +873,9 @@ description=A grammar of graphics for python
864873
[plotpy]
865874
description=plotpy is a set of tools for curve and image plotting
866875
876+
[pluggy]
877+
description=plugin and hook calling mechanisms for python
878+
867879
[ply]
868880
description=Python Lex & Yacc
869881

winpython/data/tools.ini

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ url=http://winmerge.org
3434
description=a JavaScript runtime built on Chrome's V8 JavaScript engine
3535
url=https://nodejs.org
3636
37+
[npmjs]
38+
description=a package manager for JavaScript
39+
url=https://www.npmjs.com/
40+
41+
[yarnpkg]
42+
description=a package manager for JavaScriptFast, reliable, and secure dependency management
43+
url=https://yarnpkg.com/lang/en/
44+
3745
[ffmpeg]
3846
description=a collection of libraries and tools to process multimedia content such as audio, video, subtitles and related metadata
3947
url=https://ffmpeg.org

winpython/utils.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,10 @@ def get_nodejs_version(path):
232232
"""Return version of the Nodejs installed in *path*"""
233233
return exec_shell_cmd('node -v', path).splitlines()[0]
234234

235+
def get_npmjs_version(path):
236+
"""Return version of the Nodejs installed in *path*"""
237+
return exec_shell_cmd('npm -v', path).splitlines()[0]
238+
235239
def get_thg_version(path):
236240
"""Return version of TortoiseHg installed in *path*"""
237241
txt = exec_shell_cmd('thg version', path).splitlines()[0]

0 commit comments

Comments
 (0)