Skip to content

Commit

Permalink
🔧 Clean old references in package description (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ousret authored Sep 21, 2023
1 parent 28916dd commit ffa6020
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 11 deletions.
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down
9 changes: 1 addition & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ffa6020

Please sign in to comment.