File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ be placed in ``_build/html/`` and are viewable in a web browser. See the
224
224
225
225
For building the documentation, you will need
226
226
[sphinx](http://sphinx.pocoo.org/),
227
- [matplotlib](http://matplotlib.sourceforge.net /), and
227
+ [matplotlib](http://matplotlib.org /), and
228
228
[pillow](http://pillow.readthedocs.io/en/latest/).
229
229
230
230
When you are writing documentation, it is important to keep a good
Original file line number Diff line number Diff line change @@ -37,16 +37,21 @@ Making a release
37
37
38
38
$ python setup.py sdist register upload
39
39
40
- - Upload manually the tarball on SourceForge:
41
- https://sourceforge.net/projects/scikit-learn/files/
42
40
43
41
5. Push the documentation to the website (see README in doc folder)
44
42
45
43
46
- 6. Build binaries for windows and push them to PyPI::
44
+ 6. Build binaries using dedicated CI servers by updating the git submodule
45
+ reference to the new scikit-learn tag of the release at:
47
46
48
- $ python setup.py bdist_wininst upload
47
+ https://github.com/MacPython/scikit-learn-wheels
48
+
49
+ Once the CI has completed successfully, collect the generated binary wheel
50
+ packages and upload them to PyPI by running the following commands in the
51
+ scikit-learn source folder (checked out at the release tag)::
52
+
53
+ $ pip install -U wheelhouse_uploader
54
+ $ python setup.py sdist fetch_artifacts upload_all
49
55
50
- And upload them also to sourceforge
51
56
52
57
7. FOR FINAL RELEASE: Update the release date in What's New
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ Other packages useful for data analysis and machine learning.
218
218
- `theano <http://deeplearning.net/software/theano/ >`_ A CPU/GPU array
219
219
processing framework geared towards deep learning research.
220
220
221
- - `statsmodels <http://statsmodels.sourceforge.net/ >`_ Estimating and analysing
221
+ - `statsmodels <http://www. statsmodels.org >`_ Estimating and analysing
222
222
statistical models. More focused on statistical tests and less on prediction
223
223
than scikit-learn.
224
224
Original file line number Diff line number Diff line change 32
32
MAINTAINER = 'Andreas Mueller'
33
33
MAINTAINER_EMAIL = '[email protected] '
34
34
URL = 'http://scikit-learn.org'
35
+ DOWNLOAD_URL = 'https://pypi.org/project/scikit-learn/#files'
35
36
LICENSE = 'new BSD'
36
37
37
38
# We can actually import a restricted version of sklearn that
@@ -183,6 +184,7 @@ def setup_package():
183
184
description = DESCRIPTION ,
184
185
license = LICENSE ,
185
186
url = URL ,
187
+ download_url = DOWNLOAD_URL ,
186
188
version = VERSION ,
187
189
long_description = LONG_DESCRIPTION ,
188
190
classifiers = ['Intended Audience :: Science/Research' ,
You can’t perform that action at this time.
0 commit comments