Skip to content

Commit c153f0c

Browse files
committed
Added missing package infos (description, url, ...)
1 parent 9bb9a26 commit c153f0c

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

diff.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,6 @@ def test_compare(basedir, version1, version2):
174174
# print(compare_package_indexes('2.7.3.1', '2.7.3.3'))
175175
write_changelog('2.7.3.1', '2.7.3.2')
176176
write_changelog('2.7.3.2', '2.7.3.3')
177-
write_changelog('3.3.0.0beta1', '3.3.0.0beta2')
177+
write_changelog('2.7.3.3', '2.7.4.0')
178+
# write_changelog('3.3.0.0beta1', '3.3.0.0beta2')
179+
write_changelog('3.3.0.0beta2', '3.3.1.0')

make.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,5 +673,5 @@ def make_all(build_number, release_level, pyver,
673673

674674

675675
if __name__ == '__main__':
676-
# make_all(0, 'beta2', pyver='3.3')
677-
make_all(3, '', pyver='2.7')
676+
make_all(0, '', pyver='2.7', simulation=True, create_installer=False)
677+
make_all(0, '', pyver='3.3', simulation=True, create_installer=False)

winpython/data/packages.ini

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ description=Rebuild a new abstract syntax tree from Python's ast (required for p
5656
[logilab-common]
5757
description=Collection of low-level Python packages and modules used by Logilab projects (required for pylint)
5858
59+
[mahotas]
60+
description=Computer Vision library
61+
category=improc
62+
5963
[matplotlib]
6064
description=2D plotting library (embeddable in GUIs created with PyQt)
6165
url=http://matplotlib.sourceforge.net
@@ -70,6 +74,10 @@ description=eGenix.com mx Base Distribution: mxDateTime, mxTextTools, mxProxy, m
7074
url=http://www.egenix.com/products/python/mxBase
7175
category=util
7276
77+
[networkx]
78+
description=Python package for creating and manipulating graphs and networks
79+
category=dataproc
80+
7381
[nose]
7482
description=nose is a discovery-based unittest extension (e.g. NumPy test module is using nose)
7583
url=http://somethingaboutorange.com/mrl/projects/nose
@@ -93,6 +101,14 @@ description=Python Imaging Library - (basic) Image processing library
93101
url=http://www.pythonware.com/products/pil
94102
category=improc
95103

104+
[pillow]
105+
description=Python Imaging Library (fork)
106+
category=improc
107+
108+
[pip]
109+
description=A tool for installing and managing Python packages
110+
category=deploy
111+
96112
[psutil]
97113
description=Provides an interface for retrieving information on all running processes and system utilization (CPU, disk, memory, network) in a portable way
98114
url=http://code.google.com/p/psutil
@@ -143,6 +159,11 @@ url=http://ipython.org/pyreadline.html
143159
description=Library encapsulating the access for the serial port
144160
url=http://sourceforge.net/projects/pyserial
145161

162+
[pyside]
163+
description=Python binding of the cross-platform GUI toolkit Qt
164+
url=https://pypi.python.org/pypi/PySide
165+
category=gui
166+
146167
[pyvisa]
147168
description=Control all kinds of measurement equipment through various busses (GPIB, RS232, USB)
148169
url=http://pyvisa.sourceforge.net
@@ -230,6 +251,10 @@ category=dataproc
230251
description=Graphical tool for browsing and editing files in both HDF5 and PyTables formats
231252
url=http://vitables.org
232253

254+
[vpython]
255+
description=A free, open-source module for producing real-time 3D scenes with Python
256+
url=http://www.vpython.org
257+
233258
[vtk]
234259
description=Open-source software system for visualization, 3D graphics, volume rendering and image processing
235260
url=http://www.vtk.org

0 commit comments

Comments
 (0)