Skip to content

Commit 1a16ae4

Browse files
authored
Merge pull request #618 from stonebig/master
switch changelogs links to new pypi location
2 parents 340d106 + 7e2afe0 commit 1a16ae4

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

winpython/data/packages.ini

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ description=Classes Without Boilerplate
6565
[babel]
6666
description=Internationalization utilities
6767
68+
[backcall]
69+
description=Specifications for callback functions passed in to an API
70+
6871
[backports_abc]
6972
description=A backport of recent additions to the 'collections.abc' module.
7073
@@ -386,6 +389,9 @@ description=Python framework for fast Vector Space Modelling
386389
[geopy]
387390
description=Python Geocoding Toolbox
388391

392+
[geographiclib]
393+
description=The geodesic routines from GeographicLib
394+
389395
[geoviews]
390396
description=Stop plotting your data - annotate your data and let it visualize itself... on a map!
391397

@@ -754,8 +760,11 @@ description=Next generation slides from Jupyter Notebooks
754760
[nbsphinx]
755761
description=Jupyter Notebook Tools for Sphinx
756762
763+
[netcdftime]
764+
description=Time-handling functionality from netcdf4-python
765+
757766
[netcdf4]
758-
description=python/numpy interface to netCDF library (versions 3 and 4)
767+
description=Provides an object-oriented python interface to the netCDF version 4 library
759768
760769
[networkx]
761770
description=Python package for creating and manipulating graphs and networks
@@ -844,6 +853,9 @@ description=Utilities for writing pandoc filters in python
844853
[param]
845854
description=Declarative Python programming using Parameters.
846855
856+
[parambokeh]
857+
description=Declarative Python programming using Parameters.
858+
847859
[paramnb]
848860
description=Generate ipywidgets from Parameterized objects in the notebook
849861
@@ -1488,12 +1500,18 @@ category=dataproc
14881500
[tblib]
14891501
description=Traceback serialization library.
14901502
1503+
[tensorboard]
1504+
description=TensorBoard lets you watch Tensors Flow
1505+
14911506
[tensorflow]
14921507
description=TensorFlow helps the tensors flow
14931508
14941509
[tensorflow-tensorboard]
14951510
description=TensorBoard lets you watch Tensors Flow
14961511
1512+
[termcolor]
1513+
description=ANSII Color formatting for output in terminal
1514+
14971515
[terminado]
14981516
description=Terminals served to term.js using Tornado websockets
14991517
@@ -1565,12 +1583,16 @@ description=URI templates
15651583
15661584
[urllib3]
15671585
description=HTTP library with thread-safe connection pooling, file post, and more.
1586+
15681587
[usjon]
15691588
description=Ultra fast JSON encoder and decoder for Python
15701589
15711590
[vega]
15721591
description=An IPython/ Jupyter widget for Vega and Vega-Lite
15731592
1593+
[vega_datasets]
1594+
description=A Python package for offline access to Vega datasets
1595+
15741596
[vega3]
15751597
description=An IPython/ Jupyter widget for Vega 3 and Vega-Lite 2
15761598

winpython/wppm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def get_package_metadata(database, name):
4242
# machine which is not connected to the internet
4343
db = cp.ConfigParser()
4444
db.readfp(open(osp.join(DATA_PATH, database)))
45-
metadata = dict(description='', url='https://pypi.python.org/pypi/' + name)
45+
metadata = dict(description='', url='https://pypi.org/project/' + name)
4646
for key in metadata:
4747
name1 = name.lower()
4848
# wheel replace '-' per '_' in key

0 commit comments

Comments
 (0)