deprecated sklearn package, use scikit-learn instead
Project description
Goal
This repo implements the brownout strategy for deprecating the sklearn
package on PyPI.
How to fix the error for the main use cases
- use
pip install scikit-learnrather thanpip install sklearn - replace
sklearnbyscikit-learnin your pip requirements files (requirements.txt,setup.py,setup.cfg,Pipfile, etc ...) - if the
sklearnpackage is used by one of your dependencies it would be great if you take some time to track which package usessklearninstead ofscikit-learnand report it to their issue tracker - as a last resort, set the environment variable
SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=Trueto avoid this error
Brownout schedule
The following table shows the dates and time windows, where an exception will be
raised if you attempt to install the sklearn package from PyPI.
| Dates | Window(s) |
|---|---|
| 2022 December 1st - 2023 January 31st | :00-:05 every hour |
| 2023 February 1st - March 31st | :00-:10 every hour |
| 2023 April 1st - May 31st | :00-:15 every hour |
| 2023 June 1st - July 31st | :00-:10 and :30-:40 every hour |
| 2023 August 1st - September 30th | :00-:15 and :30-45 every hour |
| 2023 October 1st - November 30th | :00-:20 and :00-50 every hour |
| 2023 December 1st onwards | always raise an exception |
How to test whether a package will be affected by the sklearn deprecation
If you want to test whether a package has sklearn in its dependencies
independently of the brownout schedule, you can do:
SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=False \
pip install package-to-test-goes-here
If you get an error that means that the package has sklearn in one of its
dependencies. It would be greatly appreciated if you track which package it is,
and if you report it to the appropriate project issue tracker to make them
aware of the sklearn deprecation.
Reason for the deprecation
sklearn package on PyPI exists to prevent malicious actors from using the
sklearn package, since sklearn (the import name) and scikit-learn (the
project name) are sometimes used interchangeably. scikit-learn is the actual
package name and should be used with pip, e.g. for:
- pip commands:
pip install scikit-learn - pip requirement files (
requirements.txt,setup.py,setup.cfg,Pipfile, etc ...)
At the time of writing (October 2022) sklearn downloads is about 1/5 of the
scikit-learn downloads on PyPI so a lot of people are using it.
There are some edge cases with the way the PyPI sklearn package is
implemented:
pip install sklearn==1.1.3will say that the 1.1.3 version does not exist, which is confusing. The only available version at the time of writing ofsklearnis 0.0.pip uninstall sklearnwill actually not uninstallscikit-learn, you can still doimport sklearnafterwards- it can be confusing to have both
sklearnandscikit-learnin thepip listoutput, prompting questions like "why do I have scikit-learn 1.1.3 and sklearn 0.0, and what does it even mean"?
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sklearn-0.0.post1.tar.gz.
File metadata
- Download URL: sklearn-0.0.post1.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76b9ed1623775168657b86b5fe966d45752e5c87f528de6240c38923b94147c5
|
|
| MD5 |
f09984569a9ef5a9fd63a8f15c153567
|
|
| BLAKE2b-256 |
db1eaf4e9cded5093a92e60d4ae7149a02c7427661b2db66c8ea4d34b17864a2
|