From ffa602034b811b246275fb2df30206baa03c16b1 Mon Sep 17 00:00:00 2001 From: TAHRI Ahmed R Date: Thu, 21 Sep 2023 12:53:07 +0200 Subject: [PATCH] :wrench: Clean old references in package description (#18) --- HISTORY.md | 1 + setup.cfg | 3 +-- setup.py | 1 - tox.ini | 9 +-------- 4 files changed, 3 insertions(+), 11 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index cb469b2244..29d1a3cbf2 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -25,6 +25,7 @@ Release History - pyOpenSSL/urllib3 injection in case built-in ssl module does not have SNI support as it is not the case anymore for every supported interpreters. - Constant `DEFAULT_CA_BUNDLE_PATH`, and submodule `certs` due to dropping `certifi`. - Function `extract_zipped_paths` because rendered useless as it was made to handle an edge case where `certifi` is "zipped". +- Extra `security` when installing this package. It was previously emptied in the previous major. **Changed** - Calling the method `json` from `Response` when no encoding was provided no longer relies on internal encoding inference. diff --git a/setup.cfg b/setup.cfg index b3a147502a..6ce15f5ea7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,9 +2,8 @@ license_file = LICENSE provides-extra = socks - use_chardet_on_py3 requires-dist = - certifi>=2017.4.17 + wassima>=1.0.0,<2 charset_normalizer>=2,<4 idna>=2.5,<4 urllib3>=1.21.1,<1.27 diff --git a/setup.py b/setup.py index f258d49f85..2773444df5 100755 --- a/setup.py +++ b/setup.py @@ -101,7 +101,6 @@ def run_tests(self): cmdclass={"test": PyTest}, tests_require=test_requirements, extras_require={ - "security": [], "socks": ["PySocks>=1.5.6, !=1.5.7"], }, project_urls={ diff --git a/tox.ini b/tox.ini index 92ab6d1a24..5a33735c4e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,18 +1,11 @@ [tox] -envlist = py{37,38,39,310,311,312}-{default, use_chardet_on_py3} +envlist = py{37,38,39,310,311,312}-{default} [testenv] deps = -rrequirements-dev.txt extras = - security socks commands = pytest tests [testenv:default] - -[testenv:use_chardet_on_py3] -extras = - security - socks - use_chardet_on_py3