mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-20 05:13:21 -07:00
Bump zipp from 3.8.0 to 3.10.0 (#1872)
* Bump zipp from 3.8.0 to 3.10.0 Bumps [zipp](https://github.com/jaraco/zipp) from 3.8.0 to 3.10.0. - [Release notes](https://github.com/jaraco/zipp/releases) - [Changelog](https://github.com/jaraco/zipp/blob/main/CHANGES.rst) - [Commits](https://github.com/jaraco/zipp/compare/v3.8.0...v3.10.0) --- updated-dependencies: - dependency-name: zipp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update zipp==3.10.0 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
This commit is contained in:
parent
d889e810f4
commit
baa0e08c2a
3 changed files with 348 additions and 1 deletions
12
lib/zipp/py310compat.py
Normal file
12
lib/zipp/py310compat.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
import sys
|
||||
import io
|
||||
|
||||
|
||||
te_impl = 'lambda encoding, stacklevel=2, /: encoding'
|
||||
te_impl_37 = te_impl.replace(', /', '')
|
||||
_text_encoding = eval(te_impl) if sys.version_info > (3, 8) else eval(te_impl_37)
|
||||
|
||||
|
||||
text_encoding = (
|
||||
io.text_encoding if sys.version_info > (3, 10) else _text_encoding # type: ignore
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue