8000 Merge pull request #2707 from rgommers/ticket-2243-downloadlink · numpy/numpy@067b5f8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 067b5f8

Browse files
author
Ralf Gommers
committed
Merge pull request #2707 from rgommers/ticket-2243-downloadlink
BUG: fix download link in setup.py (which is shown on PyPi).
2 parents 9f1ee24 + 58c1bf7 commit 067b5f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@
4848
DESCRIPTION = DOCLINES[0]
4949
LONG_DESCRIPTION = "\n".join(DOCLINES[2:])
5050
URL = "http://numpy.scipy.org"
51-
DOWNLOAD_URL = "http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103"
51+
DOWNLOAD_URL = "http://sourceforge.net/projects/numpy/files/NumPy/"
5252
LICENSE = 'BSD'
5353
CLASSIFIERS = filter(None, CLASSIFIERS.split('\n'))
5454
AUTHOR = "Travis E. Oliphant, et.al."
5555
AUTHOR_EMAIL = "oliphant@enthought.com"
5656
PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
57-
MAJOR = 1
58-
MINOR = 8
57+
MAJOR = 1
58+
MINOR = 8
5959
MICRO = 0
6060
ISRELEASED = False
6161
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

0 commit comments

Comments
 (0)
0