Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 34 additions & 2 deletions winpython/data/packages.ini
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ description=columnar and compressed data containers.
[beautifulsoup4]
description=Screen-scraping library

[bitarray]
description=efficient arrays of booleans -- C extension

[blaze]
description=Blaze

Expand Down Expand Up @@ -127,6 +130,9 @@ description=a db package that doesn't suck
[dask]
description=Minimal task scheduling abstraction

[datafabric]
description=Distributed In-Memory system for analytics

[dill]
description=serialize all of python (almost)

Expand All @@ -151,12 +157,14 @@ description=Text processing system for processing plaintext documentation into u
url=http://docutils.sourceforge.net
category=docgen

[dynd]
description=Python exposure of DyND

[egenix-mx-base]
description=eGenix.com mx Base Distribution: mxDateTime, mxTextTools, mxProxy, mxBeeBase, mxURL, mxUID, mxStack, mxQueue and mxTools
url=http://www.egenix.com/products/python/mxBase
category=util


[emcee]
description=Kick ass affine-invariant ensemble MCMC sampling

Expand Down Expand Up @@ -222,6 +230,9 @@ description=Efficient curve/image plotting and other GUI tools for scientific da
url=http://packages.python.org/guiqwt
category=plot

[hdfs]
description=HdfsCLI: API and command line interface for HDFS.

[holoviews]
description=Composable, declarative data structures for building complex visualizations easily.

Expand All @@ -234,6 +245,9 @@ description=HTML parser based on the WHATWG HTML specification
[h5py]
description=General-purpose Python interface to HDF5 files (unlike PyTables, h5py provides direct access to the full HDF5 C library)

[ibis-framework]
description=Productivity-centric Python Big Data Framework

[ipykernel]
description=IPython Kernel for Jupyter

Expand Down Expand Up @@ -362,7 +376,7 @@ url=https://anaconda.org/carlkl/mingwpy
[mistune]
description=The fastest markdown parser in pure Python, inspired by marked.

[MKL-service]
[mkl-service]
description=Python bindings to some MKL service functions
url=https://github.com/ContinuumIO/mkl-service

Expand Down Expand Up @@ -595,6 +609,9 @@ category=util
[pymc]
description=Markov Chain Monte Carlo sampling toolkit.

[pymc3]
description=Markov Chain Monte Carlo sampling toolkit.

[pymeta3]
description=Pattern-matching language based on Meta for Python 3 and 2

Expand Down Expand Up @@ -756,6 +773,9 @@ description=Run IPython notebooks from the command line
[rx]
description=Reactive Extensions (Rx) for Python

[sasl]
description=Cyrus-SASL bindings for Python

[scidoc]
description=Scidoc installs scientific libraries documentation (NumPy, SciPy, ...)

Expand All @@ -775,6 +795,9 @@ category=dataproc
description=Image processing toolbox for SciPy
category=improc

[scikit-neuralnetwork]
description=Deep neural networks without the learning cliff! A wrapper library compatible with scikit-learn.

[scilab2py]
description=Python to Scilab bridge

Expand Down Expand Up @@ -824,6 +847,9 @@ description=SciKit-Learn Laboratory makes it easier to run machinelearning exper
[snowballstemmer]
description=This package provides 16 stemmer algorithms (15 + Poerter English stemmer) generated from Snowball algorithms.

[spacy]
description=Industrial-strength NLP

[sphinx]
description=Tool for generating documentation which uses reStructuredText as its markup language

Expand Down Expand Up @@ -872,6 +898,12 @@ description=Terminals served to term.js using Tornado websockets
[theano]
description=Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs.

[thriftpy]
description=Pure python implementation of Apache Thrift.

[thrift-sasl]
description=hrift SASL Python module that implements SASL transports for Thrift

[toolz]
description=List processing tools and functional utilities

Expand Down
5 changes: 5 additions & 0 deletions winpython/wppm.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,11 @@ def patch_standard_packages(self, package_name='', to_movable=True):
r"\Lib\site-packages\spyderlib\config\main.py"),
"'check_updates_on_startup': True,",
"'check_updates_on_startup': False,")
utils.patch_sourcefile(
self.target + (
r"\Lib\site-packages\spyder\config\main.py"),
"'check_updates_on_startup': True,",
"'check_updates_on_startup': False,")

# workaround bad installers
if package_name.lower() == "numba":
Expand Down