10000 Merge pull request #775 from stonebig/master · winpython/winpython@4b3df52 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4b3df52

Browse files
authored
Merge pull request #775 from stonebig/master
tweak vscode icon
2 parents 9182956 + 47ce3f4 commit 4b3df52

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

make.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1763,9 +1763,12 @@ def _create_batch_scripts(self):
17631763
cd/D "%WINPYWORKDIR%"
17641764
if exist "%WINPYDIR%\..\t\vscode\code.exe" (
17651765
"%WINPYDIR%\..\t\vscode\code.exe" %*
1766+
) else (
1767+
if exist "%LOCALAPPDATA%\Programs\Microsoft VS Code\code.exe" (
1768+
"%LOCALAPPDATA%\Programs\Microsoft VS Code\code.exe" %*
17661769
) else (
17671770
"code.exe" %*
1768-
)
1771+
))
17691772
17701773
""",
17711774
)

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

winpython/data/packages.ini

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ description=The ssl.match_hostname() function from Python 3.4
128128
[backports.weakref]
129129
description=Backport of new features in Python's weakref module
130130
131+
[bandit]
132+
description=Security oriented static analyser for python code.
133+
131134
[baresql]
132135
description=playing SQL directly on Python datas
133136
@@ -425,6 +428,9 @@ description=Discover and load entry points from installed packages
425428
[envisage]
426429
description=Enthought extensible application framework
427430
431+
[eradicate]
432+
description=Removes commented-out code.
433+
428434
[falcon]
429435
description=An unladen web framework for building APIs and app backends.
430436
@@ -464,6 +470,9 @@ description=A platform independent file lock.
464470
[fiona]
465471
description=reads and writes spatial data files
466472
473+
[flake8]
474+
description=the modular source code checker: pep8, pyflakes and co
475+
467476
[flask]
468477
description=A microframework based on Werkzeug, Jinja2 and good intentions
469478
@@ -1274,6 +1283,9 @@ description=an organizational aid and wrapper for validation and tab completion
12741283
[prompt_toolkit]
12751284
description=Library for building powerful interactive command lines in Python
12761285
1286+
[prospector]
1287+
description=python static analysis tool
1288+
12771289
[protobuf]
12781290
description=Protocol Buffers - Google's data interchange format
12791291

@@ -1290,6 +1302,9 @@ description=Python-PostgreSQL Database Adapter
12901302
[ptpython]
12911303
description=Python REPL build on top of prompt_toolkit
12921304

1305+
[ptvsd]
1306+
description=Remote debugging server for Python support in Visual Studio and Visual Studio Code
1307+
12931308
[ptyprocess]
12941309
description=Run a subprocess in a pseudo terminal
12951310

@@ -1403,12 +1418,18 @@ description=PyHive is a collection of Python DB-API and SQLAlchemy interfaces fo
14031418
[pyinstaller]
14041419
description=PyInstaller bundles a Python application and all its dependencies into a single package.
14051420
1421+
[pylama]
1422+
description=Code audit tool for python
1423+
14061424
[pylearn2]
14071425
description=A Machine Learning library based on Theano
14081426
14091427
[pylint]
14101428
description=Logilab code analysis module: analyzes Python source code looking for bugs and signs of poor quality
14111429
1430+
[pylons]
1431+
description=Pylons Web Framework
1432+
14121433
[pymatsolver]
14131434
description=pymatsolver: Matrix Solvers for Python
14141435
@@ -1501,6 +1522,9 @@ description=Python bindings for the Qt 3D framework
15011522
[pyqwt]
15021523
description=2D plotting library (set of Python bindings for the Qwt library featuring fast plotting)
15031524
1525+
[pyramid]
1526+
description=The Pyramid Web Framework, a Pylons project
1527+
15041528
[pyreadline]
15051529
description=IPython needs this module to display color text in Windows command window
15061530
@@ -1528,6 +1552,9 @@ description=Python binding of the cross-platform GUI toolkit Qt
15281552
[pyside2]
15291553
description=Python binding of the cross-platform GUI toolkit Qt
15301554

1555+
[pyspark]
1556+
description=Apache Spark Python API
1557+
15311558
[pystache]
15321559
description=Mustache for Python
15331560

@@ -1660,6 +1687,9 @@ description=A community based Python library for quantitative economics
16601687
[quiver_engine]
16611688
description=Interactive per-layer visualization for convents in keras
16621689

1690+
[radon]
1691+
description=Code Metrics in Python
1692+
16631693
[rasterio]
16641694
description=Fast and direct raster I/O for use with Numpy and SciPy
16651695

0 commit comments

Comments
 (0)
0