diff --git a/python/input_methods/hallelujah/ime_hallelujah.py b/python/input_methods/hallelujah/ime_hallelujah.py index 557adcb2..be0865f4 100644 --- a/python/input_methods/hallelujah/ime_hallelujah.py +++ b/python/input_methods/hallelujah/ime_hallelujah.py @@ -1,7 +1,7 @@ from keycodes import * from textService import * import os.path -import json +import orjson from collections import OrderedDict from heapq import nlargest import marisa_trie @@ -40,18 +40,18 @@ def loadTrie(self): self.trie = trie def loadWordsWithFrequency(self): - with open(os.path.join(self.dictPath, "words_with_frequency_and_translation_and_ipa.json"), encoding='utf-8') as f: - self.wordsWithFrequencyDict = json.load(f) + with open(os.path.join(self.dictPath, "words_with_frequency_and_translation_and_ipa.json"), 'rb') as f: + self.wordsWithFrequencyDict = orjson.loads(f.read()) def loadPinyinData(self): - with open(os.path.join(self.dictPath, "cedict.json"), encoding='utf-8') as f: - self.pinyinDict = json.load(f) + with open(os.path.join(self.dictPath, "cedict.json"), 'rb') as f: + self.pinyinDict = orjson.loads(f.read()) def get_user_defined_substitutions(self): json_file_path = os.path.join(os.environ['USERPROFILE'], 'hallelujah.json') try: - with open(json_file_path, 'r') as file: - self.substitutions = json.load(file) + with open(json_file_path, 'rb') as f: + self.substitutions = orjson.loads(f.read()) except FileNotFoundError: print(f"File {json_file_path} not found.") self.substitutions = {} @@ -61,8 +61,8 @@ def get_user_defined_substitutions(self): # get phonetics match def loadFuzzySoundexEncodedData(self): - with open(os.path.join(self.dictPath, "fuzzy_soundex_encoded_words.json"), encoding='utf-8') as f: - self.fuzzySoundexEncodedDict = json.load(f) + with open(os.path.join(self.dictPath, "fuzzy_soundex_encoded_words.json"), 'rb') as f: + self.fuzzySoundexEncodedDict = orjson.loads(f.read()) imeService = PersistentImeService() diff --git a/python/python3/virtualenv/Lib/site-packages/__pycache__/_virtualenv.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/__pycache__/_virtualenv.cpython-311.pyc index 28c06d90..eeb593f5 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/__pycache__/_virtualenv.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/__pycache__/_virtualenv.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc index 3b316e15..b217bb11 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/INSTALLER b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/METADATA b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/METADATA new file mode 100644 index 00000000..1cd5505c --- /dev/null +++ b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/METADATA @@ -0,0 +1,1277 @@ +Metadata-Version: 2.3 +Name: orjson +Version: 3.10.9 +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: Apache Software License +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: MacOS +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: POSIX :: Linux +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: 3.14 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python +Classifier: Programming Language :: Rust +Classifier: Typing :: Typed +License-File: LICENSE-APACHE +License-File: LICENSE-MIT +Summary: Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy +Keywords: fast,json,dataclass,dataclasses,datetime,rfc,8259,3339 +Home-Page: https://github.com/ijl/orjson +Author: ijl +Author-email: ijl +License: Apache-2.0 OR MIT +Requires-Python: >=3.8 +Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM +Project-URL: Changelog, https://github.com/ijl/orjson/blob/master/CHANGELOG.md + +# orjson + +orjson is a fast, correct JSON library for Python. It +[benchmarks](https://github.com/ijl/orjson?tab=readme-ov-file#performance) as the fastest Python +library for JSON and is more correct than the standard json library or other +third-party libraries. It serializes +[dataclass](https://github.com/ijl/orjson?tab=readme-ov-file#dataclass), +[datetime](https://github.com/ijl/orjson?tab=readme-ov-file#datetime), +[numpy](https://github.com/ijl/orjson?tab=readme-ov-file#numpy), and +[UUID](https://github.com/ijl/orjson?tab=readme-ov-file#uuid) instances natively. + +Its features and drawbacks compared to other Python JSON libraries: + +* serializes `dataclass` instances 40-50x as fast as other libraries +* serializes `datetime`, `date`, and `time` instances to RFC 3339 format, +e.g., "1970-01-01T00:00:00+00:00" +* serializes `numpy.ndarray` instances 4-12x as fast with 0.3x the memory +usage of other libraries +* pretty prints 10x to 20x as fast as the standard library +* serializes to `bytes` rather than `str`, i.e., is not a drop-in replacement +* serializes `str` without escaping unicode to ASCII, e.g., "好" rather than +"\\\u597d" +* serializes `float` 10x as fast and deserializes twice as fast as other +libraries +* serializes subclasses of `str`, `int`, `list`, and `dict` natively, +requiring `default` to specify how to serialize others +* serializes arbitrary types using a `default` hook +* has strict UTF-8 conformance, more correct than the standard library +* has strict JSON conformance in not supporting Nan/Infinity/-Infinity +* has an option for strict JSON conformance on 53-bit integers with default +support for 64-bit +* does not provide `load()` or `dump()` functions for reading from/writing to +file-like objects + +orjson supports CPython 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, and 3.14. + +It distributes amd64/x86_64, aarch64/armv8, arm7, POWER/ppc64le, and s390x +wheels for Linux, amd64 and aarch64 wheels for macOS, and amd64 +and i686/x86 wheels for Windows. + +orjson does not and will not support PyPy, embedded Python builds for +Android/iOS, or PEP 554 subinterpreters. + +Releases follow semantic versioning and serializing a new object type +without an opt-in flag is considered a breaking change. + +orjson is licensed under both the Apache 2.0 and MIT licenses. The +repository and issue tracker is +[github.com/ijl/orjson](https://github.com/ijl/orjson), and patches may be +submitted there. There is a +[CHANGELOG](https://github.com/ijl/orjson/blob/master/CHANGELOG.md) +available in the repository. + +1. [Usage](https://github.com/ijl/orjson?tab=readme-ov-file#usage) + 1. [Install](https://github.com/ijl/orjson?tab=readme-ov-file#install) + 2. [Quickstart](https://github.com/ijl/orjson?tab=readme-ov-file#quickstart) + 3. [Migrating](https://github.com/ijl/orjson?tab=readme-ov-file#migrating) + 4. [Serialize](https://github.com/ijl/orjson?tab=readme-ov-file#serialize) + 1. [default](https://github.com/ijl/orjson?tab=readme-ov-file#default) + 2. [option](https://github.com/ijl/orjson?tab=readme-ov-file#option) + 3. [Fragment](https://github.com/ijl/orjson?tab=readme-ov-file#fragment) + 5. [Deserialize](https://github.com/ijl/orjson?tab=readme-ov-file#deserialize) +2. [Types](https://github.com/ijl/orjson?tab=readme-ov-file#types) + 1. [dataclass](https://github.com/ijl/orjson?tab=readme-ov-file#dataclass) + 2. [datetime](https://github.com/ijl/orjson?tab=readme-ov-file#datetime) + 3. [enum](https://github.com/ijl/orjson?tab=readme-ov-file#enum) + 4. [float](https://github.com/ijl/orjson?tab=readme-ov-file#float) + 5. [int](https://github.com/ijl/orjson?tab=readme-ov-file#int) + 6. [numpy](https://github.com/ijl/orjson?tab=readme-ov-file#numpy) + 7. [str](https://github.com/ijl/orjson?tab=readme-ov-file#str) + 8. [uuid](https://github.com/ijl/orjson?tab=readme-ov-file#uuid) +3. [Testing](https://github.com/ijl/orjson?tab=readme-ov-file#testing) +4. [Performance](https://github.com/ijl/orjson?tab=readme-ov-file#performance) + 1. [Latency](https://github.com/ijl/orjson?tab=readme-ov-file#latency) + 2. [Memory](https://github.com/ijl/orjson?tab=readme-ov-file#memory) + 3. [Reproducing](https://github.com/ijl/orjson?tab=readme-ov-file#reproducing) +5. [Questions](https://github.com/ijl/orjson?tab=readme-ov-file#questions) +6. [Packaging](https://github.com/ijl/orjson?tab=readme-ov-file#packaging) +7. [License](https://github.com/ijl/orjson?tab=readme-ov-file#license) + +## Usage + +### Install + +To install a wheel from PyPI, install the `orjson` package. + +In `requirements.in` or `requirements.txt` format, specify: + +```txt +orjson>=3.10,<4 +``` + +In Poetry, specify: + +```toml +orjson = "^3" +``` + +To build a wheel, see [packaging](https://github.com/ijl/orjson?tab=readme-ov-file#packaging). + +### Quickstart + +This is an example of serializing, with options specified, and deserializing: + +```python +>>> import orjson, datetime, numpy +>>> data = { + "type": "job", + "created_at": datetime.datetime(1970, 1, 1), + "status": "🆗", + "payload": numpy.array([[1, 2], [3, 4]]), +} +>>> orjson.dumps(data, option=orjson.OPT_NAIVE_UTC | orjson.OPT_SERIALIZE_NUMPY) +b'{"type":"job","created_at":"1970-01-01T00:00:00+00:00","status":"\xf0\x9f\x86\x97","payload":[[1,2],[3,4]]}' +>>> orjson.loads(_) +{'type': 'job', 'created_at': '1970-01-01T00:00:00+00:00', 'status': '🆗', 'payload': [[1, 2], [3, 4]]} +``` + +### Migrating + +orjson version 3 serializes more types than version 2. Subclasses of `str`, +`int`, `dict`, and `list` are now serialized. This is faster and more similar +to the standard library. It can be disabled with +`orjson.OPT_PASSTHROUGH_SUBCLASS`.`dataclasses.dataclass` instances +are now serialized by default and cannot be customized in a +`default` function unless `option=orjson.OPT_PASSTHROUGH_DATACLASS` is +specified. `uuid.UUID` instances are serialized by default. +For any type that is now serialized, +implementations in a `default` function and options enabling them can be +removed but do not need to be. There was no change in deserialization. + +To migrate from the standard library, the largest difference is that +`orjson.dumps` returns `bytes` and `json.dumps` returns a `str`. Users with +`dict` objects using non-`str` keys should specify +`option=orjson.OPT_NON_STR_KEYS`. `sort_keys` is replaced by +`option=orjson.OPT_SORT_KEYS`. `indent` is replaced by +`option=orjson.OPT_INDENT_2` and other levels of indentation are not +supported. + +### Serialize + +```python +def dumps( + __obj: Any, + default: Optional[Callable[[Any], Any]] = ..., + option: Optional[int] = ..., +) -> bytes: ... +``` + +`dumps()` serializes Python objects to JSON. + +It natively serializes +`str`, `dict`, `list`, `tuple`, `int`, `float`, `bool`, `None`, +`dataclasses.dataclass`, `typing.TypedDict`, `datetime.datetime`, +`datetime.date`, `datetime.time`, `uuid.UUID`, `numpy.ndarray`, and +`orjson.Fragment` instances. It supports arbitrary types through `default`. It +serializes subclasses of `str`, `int`, `dict`, `list`, +`dataclasses.dataclass`, and `enum.Enum`. It does not serialize subclasses +of `tuple` to avoid serializing `namedtuple` objects as arrays. To avoid +serializing subclasses, specify the option `orjson.OPT_PASSTHROUGH_SUBCLASS`. + +The output is a `bytes` object containing UTF-8. + +The global interpreter lock (GIL) is held for the duration of the call. + +It raises `JSONEncodeError` on an unsupported type. This exception message +describes the invalid object with the error message +`Type is not JSON serializable: ...`. To fix this, specify +[default](https://github.com/ijl/orjson?tab=readme-ov-file#default). + +It raises `JSONEncodeError` on a `str` that contains invalid UTF-8. + +It raises `JSONEncodeError` on an integer that exceeds 64 bits by default or, +with `OPT_STRICT_INTEGER`, 53 bits. + +It raises `JSONEncodeError` if a `dict` has a key of a type other than `str`, +unless `OPT_NON_STR_KEYS` is specified. + +It raises `JSONEncodeError` if the output of `default` recurses to handling by +`default` more than 254 levels deep. + +It raises `JSONEncodeError` on circular references. + +It raises `JSONEncodeError` if a `tzinfo` on a datetime object is +unsupported. + +`JSONEncodeError` is a subclass of `TypeError`. This is for compatibility +with the standard library. + +If the failure was caused by an exception in `default` then +`JSONEncodeError` chains the original exception as `__cause__`. + +#### default + +To serialize a subclass or arbitrary types, specify `default` as a +callable that returns a supported type. `default` may be a function, +lambda, or callable class instance. To specify that a type was not +handled by `default`, raise an exception such as `TypeError`. + +```python +>>> import orjson, decimal +>>> +def default(obj): + if isinstance(obj, decimal.Decimal): + return str(obj) + raise TypeError + +>>> orjson.dumps(decimal.Decimal("0.0842389659712649442845")) +JSONEncodeError: Type is not JSON serializable: decimal.Decimal +>>> orjson.dumps(decimal.Decimal("0.0842389659712649442845"), default=default) +b'"0.0842389659712649442845"' +>>> orjson.dumps({1, 2}, default=default) +orjson.JSONEncodeError: Type is not JSON serializable: set +``` + +The `default` callable may return an object that itself +must be handled by `default` up to 254 times before an exception +is raised. + +It is important that `default` raise an exception if a type cannot be handled. +Python otherwise implicitly returns `None`, which appears to the caller +like a legitimate value and is serialized: + +```python +>>> import orjson, json, rapidjson +>>> +def default(obj): + if isinstance(obj, decimal.Decimal): + return str(obj) + +>>> orjson.dumps({"set":{1, 2}}, default=default) +b'{"set":null}' +>>> json.dumps({"set":{1, 2}}, default=default) +'{"set":null}' +>>> rapidjson.dumps({"set":{1, 2}}, default=default) +'{"set":null}' +``` + +#### option + +To modify how data is serialized, specify `option`. Each `option` is an integer +constant in `orjson`. To specify multiple options, mask them together, e.g., +`option=orjson.OPT_STRICT_INTEGER | orjson.OPT_NAIVE_UTC`. + +##### OPT_APPEND_NEWLINE + +Append `\n` to the output. This is a convenience and optimization for the +pattern of `dumps(...) + "\n"`. `bytes` objects are immutable and this +pattern copies the original contents. + +```python +>>> import orjson +>>> orjson.dumps([]) +b"[]" +>>> orjson.dumps([], option=orjson.OPT_APPEND_NEWLINE) +b"[]\n" +``` + +##### OPT_INDENT_2 + +Pretty-print output with an indent of two spaces. This is equivalent to +`indent=2` in the standard library. Pretty printing is slower and the output +larger. orjson is the fastest compared library at pretty printing and has +much less of a slowdown to pretty print than the standard library does. This +option is compatible with all other options. + +```python +>>> import orjson +>>> orjson.dumps({"a": "b", "c": {"d": True}, "e": [1, 2]}) +b'{"a":"b","c":{"d":true},"e":[1,2]}' +>>> orjson.dumps( + {"a": "b", "c": {"d": True}, "e": [1, 2]}, + option=orjson.OPT_INDENT_2 +) +b'{\n "a": "b",\n "c": {\n "d": true\n },\n "e": [\n 1,\n 2\n ]\n}' +``` + +If displayed, the indentation and linebreaks appear like this: + +```json +{ + "a": "b", + "c": { + "d": true + }, + "e": [ + 1, + 2 + ] +} +``` + +This measures serializing the github.json fixture as compact (52KiB) or +pretty (64KiB): + +| Library | compact (ms) | pretty (ms) | vs. orjson | +|------------|----------------|---------------|--------------| +| orjson | 0.03 | 0.04 | 1 | +| ujson | 0.18 | 0.19 | 4.6 | +| rapidjson | 0.1 | 0.12 | 2.9 | +| simplejson | 0.25 | 0.89 | 21.4 | +| json | 0.18 | 0.71 | 17 | + +This measures serializing the citm_catalog.json fixture, more of a worst +case due to the amount of nesting and newlines, as compact (489KiB) or +pretty (1.1MiB): + +| Library | compact (ms) | pretty (ms) | vs. orjson | +|------------|----------------|---------------|--------------| +| orjson | 0.59 | 0.71 | 1 | +| ujson | 2.9 | 3.59 | 5 | +| rapidjson | 1.81 | 2.8 | 3.9 | +| simplejson | 10.43 | 42.13 | 59.1 | +| json | 4.16 | 33.42 | 46.9 | + +This can be reproduced using the `pyindent` script. + +##### OPT_NAIVE_UTC + +Serialize `datetime.datetime` objects without a `tzinfo` as UTC. This +has no effect on `datetime.datetime` objects that have `tzinfo` set. + +```python +>>> import orjson, datetime +>>> orjson.dumps( + datetime.datetime(1970, 1, 1, 0, 0, 0), + ) +b'"1970-01-01T00:00:00"' +>>> orjson.dumps( + datetime.datetime(1970, 1, 1, 0, 0, 0), + option=orjson.OPT_NAIVE_UTC, + ) +b'"1970-01-01T00:00:00+00:00"' +``` + +##### OPT_NON_STR_KEYS + +Serialize `dict` keys of type other than `str`. This allows `dict` keys +to be one of `str`, `int`, `float`, `bool`, `None`, `datetime.datetime`, +`datetime.date`, `datetime.time`, `enum.Enum`, and `uuid.UUID`. For comparison, +the standard library serializes `str`, `int`, `float`, `bool` or `None` by +default. orjson benchmarks as being faster at serializing non-`str` keys +than other libraries. This option is slower for `str` keys than the default. + +```python +>>> import orjson, datetime, uuid +>>> orjson.dumps( + {uuid.UUID("7202d115-7ff3-4c81-a7c1-2a1f067b1ece"): [1, 2, 3]}, + option=orjson.OPT_NON_STR_KEYS, + ) +b'{"7202d115-7ff3-4c81-a7c1-2a1f067b1ece":[1,2,3]}' +>>> orjson.dumps( + {datetime.datetime(1970, 1, 1, 0, 0, 0): [1, 2, 3]}, + option=orjson.OPT_NON_STR_KEYS | orjson.OPT_NAIVE_UTC, + ) +b'{"1970-01-01T00:00:00+00:00":[1,2,3]}' +``` + +These types are generally serialized how they would be as +values, e.g., `datetime.datetime` is still an RFC 3339 string and respects +options affecting it. The exception is that `int` serialization does not +respect `OPT_STRICT_INTEGER`. + +This option has the risk of creating duplicate keys. This is because non-`str` +objects may serialize to the same `str` as an existing key, e.g., +`{"1": true, 1: false}`. The last key to be inserted to the `dict` will be +serialized last and a JSON deserializer will presumably take the last +occurrence of a key (in the above, `false`). The first value will be lost. + +This option is compatible with `orjson.OPT_SORT_KEYS`. If sorting is used, +note the sort is unstable and will be unpredictable for duplicate keys. + +```python +>>> import orjson, datetime +>>> orjson.dumps( + {"other": 1, datetime.date(1970, 1, 5): 2, datetime.date(1970, 1, 3): 3}, + option=orjson.OPT_NON_STR_KEYS | orjson.OPT_SORT_KEYS +) +b'{"1970-01-03":3,"1970-01-05":2,"other":1}' +``` + +This measures serializing 589KiB of JSON comprising a `list` of 100 `dict` +in which each `dict` has both 365 randomly-sorted `int` keys representing epoch +timestamps as well as one `str` key and the value for each key is a +single integer. In "str keys", the keys were converted to `str` before +serialization, and orjson still specifes `option=orjson.OPT_NON_STR_KEYS` +(which is always somewhat slower). + +| Library | str keys (ms) | int keys (ms) | int keys sorted (ms) | +|------------|-----------------|-----------------|------------------------| +| orjson | 1.53 | 2.16 | 4.29 | +| ujson | 3.07 | 5.65 | | +| rapidjson | 4.29 | | | +| simplejson | 11.24 | 14.50 | 21.86 | +| json | 7.17 | 8.49 | | + +ujson is blank for sorting because it segfaults. json is blank because it +raises `TypeError` on attempting to sort before converting all keys to `str`. +rapidjson is blank because it does not support non-`str` keys. This can +be reproduced using the `pynonstr` script. + +##### OPT_OMIT_MICROSECONDS + +Do not serialize the `microsecond` field on `datetime.datetime` and +`datetime.time` instances. + +```python +>>> import orjson, datetime +>>> orjson.dumps( + datetime.datetime(1970, 1, 1, 0, 0, 0, 1), + ) +b'"1970-01-01T00:00:00.000001"' +>>> orjson.dumps( + datetime.datetime(1970, 1, 1, 0, 0, 0, 1), + option=orjson.OPT_OMIT_MICROSECONDS, + ) +b'"1970-01-01T00:00:00"' +``` + +##### OPT_PASSTHROUGH_DATACLASS + +Passthrough `dataclasses.dataclass` instances to `default`. This allows +customizing their output but is much slower. + + +```python +>>> import orjson, dataclasses +>>> +@dataclasses.dataclass +class User: + id: str + name: str + password: str + +def default(obj): + if isinstance(obj, User): + return {"id": obj.id, "name": obj.name} + raise TypeError + +>>> orjson.dumps(User("3b1", "asd", "zxc")) +b'{"id":"3b1","name":"asd","password":"zxc"}' +>>> orjson.dumps(User("3b1", "asd", "zxc"), option=orjson.OPT_PASSTHROUGH_DATACLASS) +TypeError: Type is not JSON serializable: User +>>> orjson.dumps( + User("3b1", "asd", "zxc"), + option=orjson.OPT_PASSTHROUGH_DATACLASS, + default=default, + ) +b'{"id":"3b1","name":"asd"}' +``` + +##### OPT_PASSTHROUGH_DATETIME + +Passthrough `datetime.datetime`, `datetime.date`, and `datetime.time` instances +to `default`. This allows serializing datetimes to a custom format, e.g., +HTTP dates: + +```python +>>> import orjson, datetime +>>> +def default(obj): + if isinstance(obj, datetime.datetime): + return obj.strftime("%a, %d %b %Y %H:%M:%S GMT") + raise TypeError + +>>> orjson.dumps({"created_at": datetime.datetime(1970, 1, 1)}) +b'{"created_at":"1970-01-01T00:00:00"}' +>>> orjson.dumps({"created_at": datetime.datetime(1970, 1, 1)}, option=orjson.OPT_PASSTHROUGH_DATETIME) +TypeError: Type is not JSON serializable: datetime.datetime +>>> orjson.dumps( + {"created_at": datetime.datetime(1970, 1, 1)}, + option=orjson.OPT_PASSTHROUGH_DATETIME, + default=default, + ) +b'{"created_at":"Thu, 01 Jan 1970 00:00:00 GMT"}' +``` + +This does not affect datetimes in `dict` keys if using OPT_NON_STR_KEYS. + +##### OPT_PASSTHROUGH_SUBCLASS + +Passthrough subclasses of builtin types to `default`. + +```python +>>> import orjson +>>> +class Secret(str): + pass + +def default(obj): + if isinstance(obj, Secret): + return "******" + raise TypeError + +>>> orjson.dumps(Secret("zxc")) +b'"zxc"' +>>> orjson.dumps(Secret("zxc"), option=orjson.OPT_PASSTHROUGH_SUBCLASS) +TypeError: Type is not JSON serializable: Secret +>>> orjson.dumps(Secret("zxc"), option=orjson.OPT_PASSTHROUGH_SUBCLASS, default=default) +b'"******"' +``` + +This does not affect serializing subclasses as `dict` keys if using +OPT_NON_STR_KEYS. + +##### OPT_SERIALIZE_DATACLASS + +This is deprecated and has no effect in version 3. In version 2 this was +required to serialize `dataclasses.dataclass` instances. For more, see +[dataclass](https://github.com/ijl/orjson?tab=readme-ov-file#dataclass). + +##### OPT_SERIALIZE_NUMPY + +Serialize `numpy.ndarray` instances. For more, see +[numpy](https://github.com/ijl/orjson?tab=readme-ov-file#numpy). + +##### OPT_SERIALIZE_UUID + +This is deprecated and has no effect in version 3. In version 2 this was +required to serialize `uuid.UUID` instances. For more, see +[UUID](https://github.com/ijl/orjson?tab=readme-ov-file#UUID). + +##### OPT_SORT_KEYS + +Serialize `dict` keys in sorted order. The default is to serialize in an +unspecified order. This is equivalent to `sort_keys=True` in the standard +library. + +This can be used to ensure the order is deterministic for hashing or tests. +It has a substantial performance penalty and is not recommended in general. + +```python +>>> import orjson +>>> orjson.dumps({"b": 1, "c": 2, "a": 3}) +b'{"b":1,"c":2,"a":3}' +>>> orjson.dumps({"b": 1, "c": 2, "a": 3}, option=orjson.OPT_SORT_KEYS) +b'{"a":3,"b":1,"c":2}' +``` + +This measures serializing the twitter.json fixture unsorted and sorted: + +| Library | unsorted (ms) | sorted (ms) | vs. orjson | +|------------|-----------------|---------------|--------------| +| orjson | 0.32 | 0.54 | 1 | +| ujson | 1.6 | 2.07 | 3.8 | +| rapidjson | 1.12 | 1.65 | 3.1 | +| simplejson | 2.25 | 3.13 | 5.8 | +| json | 1.78 | 2.32 | 4.3 | + +The benchmark can be reproduced using the `pysort` script. + +The sorting is not collation/locale-aware: + +```python +>>> import orjson +>>> orjson.dumps({"a": 1, "ä": 2, "A": 3}, option=orjson.OPT_SORT_KEYS) +b'{"A":3,"a":1,"\xc3\xa4":2}' +``` + +This is the same sorting behavior as the standard library, rapidjson, +simplejson, and ujson. + +`dataclass` also serialize as maps but this has no effect on them. + +##### OPT_STRICT_INTEGER + +Enforce 53-bit limit on integers. The limit is otherwise 64 bits, the same as +the Python standard library. For more, see [int](https://github.com/ijl/orjson?tab=readme-ov-file#int). + +##### OPT_UTC_Z + +Serialize a UTC timezone on `datetime.datetime` instances as `Z` instead +of `+00:00`. + +```python +>>> import orjson, datetime, zoneinfo +>>> orjson.dumps( + datetime.datetime(1970, 1, 1, 0, 0, 0, tzinfo=zoneinfo.ZoneInfo("UTC")), + ) +b'"1970-01-01T00:00:00+00:00"' +>>> orjson.dumps( + datetime.datetime(1970, 1, 1, 0, 0, 0, tzinfo=zoneinfo.ZoneInfo("UTC")), + option=orjson.OPT_UTC_Z + ) +b'"1970-01-01T00:00:00Z"' +``` + +#### Fragment + +`orjson.Fragment` includes already-serialized JSON in a document. This is an +efficient way to include JSON blobs from a cache, JSONB field, or separately +serialized object without first deserializing to Python objects via `loads()`. + +```python +>>> import orjson +>>> orjson.dumps({"key": "zxc", "data": orjson.Fragment(b'{"a": "b", "c": 1}')}) +b'{"key":"zxc","data":{"a": "b", "c": 1}}' +``` + +It does no reformatting: `orjson.OPT_INDENT_2` will not affect a +compact blob nor will a pretty-printed JSON blob be rewritten as compact. + +The input must be `bytes` or `str` and given as a positional argument. + +This raises `orjson.JSONEncodeError` if a `str` is given and the input is +not valid UTF-8. It otherwise does no validation and it is possible to +write invalid JSON. This does not escape characters. The implementation is +tested to not crash if given invalid strings or invalid JSON. + +This is similar to `RawJSON` in rapidjson. + +### Deserialize + +```python +def loads(__obj: Union[bytes, bytearray, memoryview, str]) -> Any: ... +``` + +`loads()` deserializes JSON to Python objects. It deserializes to `dict`, +`list`, `int`, `float`, `str`, `bool`, and `None` objects. + +`bytes`, `bytearray`, `memoryview`, and `str` input are accepted. If the input +exists as a `memoryview`, `bytearray`, or `bytes` object, it is recommended to +pass these directly rather than creating an unnecessary `str` object. That is, +`orjson.loads(b"{}")` instead of `orjson.loads(b"{}".decode("utf-8"))`. This +has lower memory usage and lower latency. + +The input must be valid UTF-8. + +orjson maintains a cache of map keys for the duration of the process. This +causes a net reduction in memory usage by avoiding duplicate strings. The +keys must be at most 64 bytes to be cached and 2048 entries are stored. + +The global interpreter lock (GIL) is held for the duration of the call. + +It raises `JSONDecodeError` if given an invalid type or invalid +JSON. This includes if the input contains `NaN`, `Infinity`, or `-Infinity`, +which the standard library allows, but is not valid JSON. + +It raises `JSONDecodeError` if a combination of array or object recurses +1024 levels deep. + +`JSONDecodeError` is a subclass of `json.JSONDecodeError` and `ValueError`. +This is for compatibility with the standard library. + +## Types + +### dataclass + +orjson serializes instances of `dataclasses.dataclass` natively. It serializes +instances 40-50x as fast as other libraries and avoids a severe slowdown seen +in other libraries compared to serializing `dict`. + +It is supported to pass all variants of dataclasses, including dataclasses +using `__slots__`, frozen dataclasses, those with optional or default +attributes, and subclasses. There is a performance benefit to not +using `__slots__`. + +| Library | dict (ms) | dataclass (ms) | vs. orjson | +|------------|-------------|------------------|--------------| +| orjson | 1.40 | 1.60 | 1 | +| ujson | | | | +| rapidjson | 3.64 | 68.48 | 42 | +| simplejson | 14.21 | 92.18 | 57 | +| json | 13.28 | 94.90 | 59 | + +This measures serializing 555KiB of JSON, orjson natively and other libraries +using `default` to serialize the output of `dataclasses.asdict()`. This can be +reproduced using the `pydataclass` script. + +Dataclasses are serialized as maps, with every attribute serialized and in +the order given on class definition: + +```python +>>> import dataclasses, orjson, typing + +@dataclasses.dataclass +class Member: + id: int + active: bool = dataclasses.field(default=False) + +@dataclasses.dataclass +class Object: + id: int + name: str + members: typing.List[Member] + +>>> orjson.dumps(Object(1, "a", [Member(1, True), Member(2)])) +b'{"id":1,"name":"a","members":[{"id":1,"active":true},{"id":2,"active":false}]}' +``` + +### datetime + +orjson serializes `datetime.datetime` objects to +[RFC 3339](https://tools.ietf.org/html/rfc3339) format, +e.g., "1970-01-01T00:00:00+00:00". This is a subset of ISO 8601 and is +compatible with `isoformat()` in the standard library. + +```python +>>> import orjson, datetime, zoneinfo +>>> orjson.dumps( + datetime.datetime(2018, 12, 1, 2, 3, 4, 9, tzinfo=zoneinfo.ZoneInfo("Australia/Adelaide")) +) +b'"2018-12-01T02:03:04.000009+10:30"' +>>> orjson.dumps( + datetime.datetime(2100, 9, 1, 21, 55, 2).replace(tzinfo=zoneinfo.ZoneInfo("UTC")) +) +b'"2100-09-01T21:55:02+00:00"' +>>> orjson.dumps( + datetime.datetime(2100, 9, 1, 21, 55, 2) +) +b'"2100-09-01T21:55:02"' +``` + +`datetime.datetime` supports instances with a `tzinfo` that is `None`, +`datetime.timezone.utc`, a timezone instance from the python3.9+ `zoneinfo` +module, or a timezone instance from the third-party `pendulum`, `pytz`, or +`dateutil`/`arrow` libraries. + +It is fastest to use the standard library's `zoneinfo.ZoneInfo` for timezones. + +`datetime.time` objects must not have a `tzinfo`. + +```python +>>> import orjson, datetime +>>> orjson.dumps(datetime.time(12, 0, 15, 290)) +b'"12:00:15.000290"' +``` + +`datetime.date` objects will always serialize. + +```python +>>> import orjson, datetime +>>> orjson.dumps(datetime.date(1900, 1, 2)) +b'"1900-01-02"' +``` + +Errors with `tzinfo` result in `JSONEncodeError` being raised. + +To disable serialization of `datetime` objects specify the option +`orjson.OPT_PASSTHROUGH_DATETIME`. + +To use "Z" suffix instead of "+00:00" to indicate UTC ("Zulu") time, use the option +`orjson.OPT_UTC_Z`. + +To assume datetimes without timezone are UTC, use the option `orjson.OPT_NAIVE_UTC`. + +### enum + +orjson serializes enums natively. Options apply to their values. + +```python +>>> import enum, datetime, orjson +>>> +class DatetimeEnum(enum.Enum): + EPOCH = datetime.datetime(1970, 1, 1, 0, 0, 0) +>>> orjson.dumps(DatetimeEnum.EPOCH) +b'"1970-01-01T00:00:00"' +>>> orjson.dumps(DatetimeEnum.EPOCH, option=orjson.OPT_NAIVE_UTC) +b'"1970-01-01T00:00:00+00:00"' +``` + +Enums with members that are not supported types can be serialized using +`default`: + +```python +>>> import enum, orjson +>>> +class Custom: + def __init__(self, val): + self.val = val + +def default(obj): + if isinstance(obj, Custom): + return obj.val + raise TypeError + +class CustomEnum(enum.Enum): + ONE = Custom(1) + +>>> orjson.dumps(CustomEnum.ONE, default=default) +b'1' +``` + +### float + +orjson serializes and deserializes double precision floats with no loss of +precision and consistent rounding. + +`orjson.dumps()` serializes Nan, Infinity, and -Infinity, which are not +compliant JSON, as `null`: + +```python +>>> import orjson, ujson, rapidjson, json +>>> orjson.dumps([float("NaN"), float("Infinity"), float("-Infinity")]) +b'[null,null,null]' +>>> ujson.dumps([float("NaN"), float("Infinity"), float("-Infinity")]) +OverflowError: Invalid Inf value when encoding double +>>> rapidjson.dumps([float("NaN"), float("Infinity"), float("-Infinity")]) +'[NaN,Infinity,-Infinity]' +>>> json.dumps([float("NaN"), float("Infinity"), float("-Infinity")]) +'[NaN, Infinity, -Infinity]' +``` + +### int + +orjson serializes and deserializes 64-bit integers by default. The range +supported is a signed 64-bit integer's minimum (-9223372036854775807) to +an unsigned 64-bit integer's maximum (18446744073709551615). This +is widely compatible, but there are implementations +that only support 53-bits for integers, e.g., +web browsers. For those implementations, `dumps()` can be configured to +raise a `JSONEncodeError` on values exceeding the 53-bit range. + +```python +>>> import orjson +>>> orjson.dumps(9007199254740992) +b'9007199254740992' +>>> orjson.dumps(9007199254740992, option=orjson.OPT_STRICT_INTEGER) +JSONEncodeError: Integer exceeds 53-bit range +>>> orjson.dumps(-9007199254740992, option=orjson.OPT_STRICT_INTEGER) +JSONEncodeError: Integer exceeds 53-bit range +``` + +### numpy + +orjson natively serializes `numpy.ndarray` and individual +`numpy.float64`, `numpy.float32`, `numpy.float16` (`numpy.half`), +`numpy.int64`, `numpy.int32`, `numpy.int16`, `numpy.int8`, +`numpy.uint64`, `numpy.uint32`, `numpy.uint16`, `numpy.uint8`, +`numpy.uintp`, `numpy.intp`, `numpy.datetime64`, and `numpy.bool` +instances. + +orjson is compatible with both numpy v1 and v2. + +orjson is faster than all compared libraries at serializing +numpy instances. Serializing numpy data requires specifying +`option=orjson.OPT_SERIALIZE_NUMPY`. + +```python +>>> import orjson, numpy +>>> orjson.dumps( + numpy.array([[1, 2, 3], [4, 5, 6]]), + option=orjson.OPT_SERIALIZE_NUMPY, +) +b'[[1,2,3],[4,5,6]]' +``` + +The array must be a contiguous C array (`C_CONTIGUOUS`) and one of the +supported datatypes. + +Note a difference between serializing `numpy.float32` using `ndarray.tolist()` +or `orjson.dumps(..., option=orjson.OPT_SERIALIZE_NUMPY)`: `tolist()` converts +to a `double` before serializing and orjson's native path does not. This +can result in different rounding. + +`numpy.datetime64` instances are serialized as RFC 3339 strings and +datetime options affect them. + +```python +>>> import orjson, numpy +>>> orjson.dumps( + numpy.datetime64("2021-01-01T00:00:00.172"), + option=orjson.OPT_SERIALIZE_NUMPY, +) +b'"2021-01-01T00:00:00.172000"' +>>> orjson.dumps( + numpy.datetime64("2021-01-01T00:00:00.172"), + option=( + orjson.OPT_SERIALIZE_NUMPY | + orjson.OPT_NAIVE_UTC | + orjson.OPT_OMIT_MICROSECONDS + ), +) +b'"2021-01-01T00:00:00+00:00"' +``` + +If an array is not a contiguous C array, contains an unsupported datatype, +or contains a `numpy.datetime64` using an unsupported representation +(e.g., picoseconds), orjson falls through to `default`. In `default`, +`obj.tolist()` can be specified. + +If an array is not in the native endianness, e.g., an array of big-endian values +on a little-endian system, `orjson.JSONEncodeError` is raised. + +If an array is malformed, `orjson.JSONEncodeError` is raised. + +This measures serializing 92MiB of JSON from an `numpy.ndarray` with +dimensions of `(50000, 100)` and `numpy.float64` values: + +| Library | Latency (ms) | RSS diff (MiB) | vs. orjson | +|------------|----------------|------------------|--------------| +| orjson | 194 | 99 | 1.0 | +| ujson | | | | +| rapidjson | 3,048 | 309 | 15.7 | +| simplejson | 3,023 | 297 | 15.6 | +| json | 3,133 | 297 | 16.1 | + +This measures serializing 100MiB of JSON from an `numpy.ndarray` with +dimensions of `(100000, 100)` and `numpy.int32` values: + +| Library | Latency (ms) | RSS diff (MiB) | vs. orjson | +|------------|----------------|------------------|--------------| +| orjson | 178 | 115 | 1.0 | +| ujson | | | | +| rapidjson | 1,512 | 551 | 8.5 | +| simplejson | 1,606 | 504 | 9.0 | +| json | 1,506 | 503 | 8.4 | + +This measures serializing 105MiB of JSON from an `numpy.ndarray` with +dimensions of `(100000, 200)` and `numpy.bool` values: + +| Library | Latency (ms) | RSS diff (MiB) | vs. orjson | +|------------|----------------|------------------|--------------| +| orjson | 157 | 120 | 1.0 | +| ujson | | | | +| rapidjson | 710 | 327 | 4.5 | +| simplejson | 931 | 398 | 5.9 | +| json | 996 | 400 | 6.3 | + +In these benchmarks, orjson serializes natively, ujson is blank because it +does not support a `default` parameter, and the other libraries serialize +`ndarray.tolist()` via `default`. The RSS column measures peak memory +usage during serialization. This can be reproduced using the `pynumpy` script. + +orjson does not have an installation or compilation dependency on numpy. The +implementation is independent, reading `numpy.ndarray` using +`PyArrayInterface`. + +### str + +orjson is strict about UTF-8 conformance. This is stricter than the standard +library's json module, which will serialize and deserialize UTF-16 surrogates, +e.g., "\ud800", that are invalid UTF-8. + +If `orjson.dumps()` is given a `str` that does not contain valid UTF-8, +`orjson.JSONEncodeError` is raised. If `loads()` receives invalid UTF-8, +`orjson.JSONDecodeError` is raised. + +orjson and rapidjson are the only compared JSON libraries to consistently +error on bad input. + +```python +>>> import orjson, ujson, rapidjson, json +>>> orjson.dumps('\ud800') +JSONEncodeError: str is not valid UTF-8: surrogates not allowed +>>> ujson.dumps('\ud800') +UnicodeEncodeError: 'utf-8' codec ... +>>> rapidjson.dumps('\ud800') +UnicodeEncodeError: 'utf-8' codec ... +>>> json.dumps('\ud800') +'"\\ud800"' +>>> orjson.loads('"\\ud800"') +JSONDecodeError: unexpected end of hex escape at line 1 column 8: line 1 column 1 (char 0) +>>> ujson.loads('"\\ud800"') +'' +>>> rapidjson.loads('"\\ud800"') +ValueError: Parse error at offset 1: The surrogate pair in string is invalid. +>>> json.loads('"\\ud800"') +'\ud800' +``` + +To make a best effort at deserializing bad input, first decode `bytes` using +the `replace` or `lossy` argument for `errors`: + +```python +>>> import orjson +>>> orjson.loads(b'"\xed\xa0\x80"') +JSONDecodeError: str is not valid UTF-8: surrogates not allowed +>>> orjson.loads(b'"\xed\xa0\x80"'.decode("utf-8", "replace")) +'���' +``` + +### uuid + +orjson serializes `uuid.UUID` instances to +[RFC 4122](https://tools.ietf.org/html/rfc4122) format, e.g., +"f81d4fae-7dec-11d0-a765-00a0c91e6bf6". + +``` python +>>> import orjson, uuid +>>> orjson.dumps(uuid.UUID('f81d4fae-7dec-11d0-a765-00a0c91e6bf6')) +b'"f81d4fae-7dec-11d0-a765-00a0c91e6bf6"' +>>> orjson.dumps(uuid.uuid5(uuid.NAMESPACE_DNS, "python.org")) +b'"886313e1-3b8a-5372-9b90-0c9aee199e5d"' +``` + +## Testing + +The library has comprehensive tests. There are tests against fixtures in the +[JSONTestSuite](https://github.com/nst/JSONTestSuite) and +[nativejson-benchmark](https://github.com/miloyip/nativejson-benchmark) +repositories. It is tested to not crash against the +[Big List of Naughty Strings](https://github.com/minimaxir/big-list-of-naughty-strings). +It is tested to not leak memory. It is tested to not crash +against and not accept invalid UTF-8. There are integration tests +exercising the library's use in web servers (gunicorn using multiprocess/forked +workers) and when +multithreaded. It also uses some tests from the ultrajson library. + +orjson is the most correct of the compared libraries. This graph shows how each +library handles a combined 342 JSON fixtures from the +[JSONTestSuite](https://github.com/nst/JSONTestSuite) and +[nativejson-benchmark](https://github.com/miloyip/nativejson-benchmark) tests: + +| Library | Invalid JSON documents not rejected | Valid JSON documents not deserialized | +|------------|---------------------------------------|-----------------------------------------| +| orjson | 0 | 0 | +| ujson | 31 | 0 | +| rapidjson | 6 | 0 | +| simplejson | 10 | 0 | +| json | 17 | 0 | + +This shows that all libraries deserialize valid JSON but only orjson +correctly rejects the given invalid JSON fixtures. Errors are largely due to +accepting invalid strings and numbers. + +The graph above can be reproduced using the `pycorrectness` script. + +## Performance + +Serialization and deserialization performance of orjson is better than +ultrajson, rapidjson, simplejson, or json. The benchmarks are done on +fixtures of real data: + +* twitter.json, 631.5KiB, results of a search on Twitter for "一", containing +CJK strings, dictionaries of strings and arrays of dictionaries, indented. + +* github.json, 55.8KiB, a GitHub activity feed, containing dictionaries of +strings and arrays of dictionaries, not indented. + +* citm_catalog.json, 1.7MiB, concert data, containing nested dictionaries of +strings and arrays of integers, indented. + +* canada.json, 2.2MiB, coordinates of the Canadian border in GeoJSON +format, containing floats and arrays, indented. + +### Latency + +![Serialization](doc/serialization.png) + +![Deserialization](doc/deserialization.png) + +#### twitter.json serialization + +| Library | Median latency (milliseconds) | Operations per second | Relative (latency) | +|------------|---------------------------------|-------------------------|----------------------| +| orjson | 0.1 | 8377 | 1 | +| ujson | 0.9 | 1088 | 7.3 | +| rapidjson | 0.8 | 1228 | 6.8 | +| simplejson | 1.9 | 531 | 15.6 | +| json | 1.4 | 744 | 11.3 | + +#### twitter.json deserialization + +| Library | Median latency (milliseconds) | Operations per second | Relative (latency) | +|------------|---------------------------------|-------------------------|----------------------| +| orjson | 0.6 | 1811 | 1 | +| ujson | 1.2 | 814 | 2.1 | +| rapidjson | 2.1 | 476 | 3.8 | +| simplejson | 1.6 | 626 | 3 | +| json | 1.8 | 557 | 3.3 | + +#### github.json serialization + +| Library | Median latency (milliseconds) | Operations per second | Relative (latency) | +|------------|---------------------------------|-------------------------|----------------------| +| orjson | 0.01 | 104424 | 1 | +| ujson | 0.09 | 10594 | 9.8 | +| rapidjson | 0.07 | 13667 | 7.6 | +| simplejson | 0.2 | 5051 | 20.6 | +| json | 0.14 | 7133 | 14.6 | + +#### github.json deserialization + +| Library | Median latency (milliseconds) | Operations per second | Relative (latency) | +|------------|---------------------------------|-------------------------|----------------------| +| orjson | 0.05 | 20069 | 1 | +| ujson | 0.11 | 8913 | 2.3 | +| rapidjson | 0.13 | 8077 | 2.6 | +| simplejson | 0.11 | 9342 | 2.1 | +| json | 0.11 | 9291 | 2.2 | + +#### citm_catalog.json serialization + +| Library | Median latency (milliseconds) | Operations per second | Relative (latency) | +|------------|---------------------------------|-------------------------|----------------------| +| orjson | 0.3 | 3757 | 1 | +| ujson | 1.7 | 598 | 6.3 | +| rapidjson | 1.3 | 768 | 4.9 | +| simplejson | 8.3 | 120 | 31.1 | +| json | 3 | 331 | 11.3 | + +#### citm_catalog.json deserialization + +| Library | Median latency (milliseconds) | Operations per second | Relative (latency) | +|------------|---------------------------------|-------------------------|----------------------| +| orjson | 1.4 | 730 | 1 | +| ujson | 2.6 | 384 | 1.9 | +| rapidjson | 4 | 246 | 3 | +| simplejson | 3.7 | 271 | 2.7 | +| json | 3.7 | 267 | 2.7 | + +#### canada.json serialization + +| Library | Median latency (milliseconds) | Operations per second | Relative (latency) | +|------------|---------------------------------|-------------------------|----------------------| +| orjson | 2.4 | 410 | 1 | +| ujson | 9.6 | 104 | 3.9 | +| rapidjson | 28.7 | 34 | 11.8 | +| simplejson | 49.3 | 20 | 20.3 | +| json | 30.6 | 32 | 12.6 | + +#### canada.json deserialization + +| Library | Median latency (milliseconds) | Operations per second | Relative (latency) | +|------------|---------------------------------|-------------------------|----------------------| +| orjson | 3 | 336 | 1 | +| ujson | 7.1 | 141 | 2.4 | +| rapidjson | 20.1 | 49 | 6.7 | +| simplejson | 16.8 | 59 | 5.6 | +| json | 18.2 | 55 | 6.1 | + +### Memory + +orjson as of 3.7.0 has higher baseline memory usage than other libraries +due to a persistent buffer used for parsing. Incremental memory usage when +deserializing is similar to the standard library and other third-party +libraries. + +This measures, in the first column, RSS after importing a library and reading +the fixture, and in the second column, increases in RSS after repeatedly +calling `loads()` on the fixture. + +#### twitter.json + +| Library | import, read() RSS (MiB) | loads() increase in RSS (MiB) | +|------------|----------------------------|---------------------------------| +| orjson | 15.7 | 3.4 | +| ujson | 16.4 | 3.4 | +| rapidjson | 16.6 | 4.4 | +| simplejson | 14.5 | 1.8 | +| json | 13.9 | 1.8 | + +#### github.json + +| Library | import, read() RSS (MiB) | loads() increase in RSS (MiB) | +|------------|----------------------------|---------------------------------| +| orjson | 15.2 | 0.4 | +| ujson | 15.4 | 0.4 | +| rapidjson | 15.7 | 0.5 | +| simplejson | 13.7 | 0.2 | +| json | 13.3 | 0.1 | + +#### citm_catalog.json + +| Library | import, read() RSS (MiB) | loads() increase in RSS (MiB) | +|------------|----------------------------|---------------------------------| +| orjson | 16.8 | 10.1 | +| ujson | 17.3 | 10.2 | +| rapidjson | 17.6 | 28.7 | +| simplejson | 15.8 | 30.1 | +| json | 14.8 | 20.5 | + +#### canada.json + +| Library | import, read() RSS (MiB) | loads() increase in RSS (MiB) | +|------------|----------------------------|---------------------------------| +| orjson | 17.2 | 22.1 | +| ujson | 17.4 | 18.3 | +| rapidjson | 18 | 23.5 | +| simplejson | 15.7 | 21.4 | +| json | 15.4 | 20.4 | + +### Reproducing + +The above was measured using Python 3.11.9 on Linux (amd64) with +orjson 3.10.6, ujson 5.10.0, python-rapidson 1.18, and simplejson 3.19.2. + +The latency results can be reproduced using the `pybench` and `graph` +scripts. The memory results can be reproduced using the `pymem` script. + +## Questions + +### Why can't I install it from PyPI? + +Probably `pip` needs to be upgraded to version 20.3 or later to support +the latest manylinux_x_y or universal2 wheel formats. + +### "Cargo, the Rust package manager, is not installed or is not on PATH." + +This happens when there are no binary wheels (like manylinux) for your +platform on PyPI. You can install [Rust](https://www.rust-lang.org/) through +`rustup` or a package manager and then it will compile. + +### Will it deserialize to dataclasses, UUIDs, decimals, etc or support object_hook? + +No. This requires a schema specifying what types are expected and how to +handle errors etc. This is addressed by data validation libraries a +level above this. + +### Will it serialize to `str`? + +No. `bytes` is the correct type for a serialized blob. + +## Packaging + +To package orjson requires at least [Rust](https://www.rust-lang.org/) 1.72 +and the [maturin](https://github.com/PyO3/maturin) build tool. The recommended +build command is: + +```sh +maturin build --release --strip +``` + +It benefits from also having a C build environment to compile a faster +deserialization backend. See this project's `manylinux_2_28` builds for an +example using clang and LTO. + +The project's own CI tests against `nightly-2024-09-25` and stable 1.72. It +is prudent to pin the nightly version because that channel can introduce +breaking changes. + +orjson is tested for amd64 on Linux and cross-compiles for aarch64, arm7, +ppc64le, and s390x. It is tested for either aarch64 or amd64 on macOS and +cross-compiles for the other, depending on version. For Windows it is +tested on amd64 and i686. + +There are no runtime dependencies other than libc. + +The source distribution on PyPI contains all dependencies' source and can be +built without network access. The file can be downloaded from +`https://files.pythonhosted.org/packages/source/o/orjson/orjson-${version}.tar.gz`. + +orjson's tests are included in the source distribution on PyPI. The +requirements to run the tests are specified in `test/requirements.txt`. The +tests should be run as part of the build. It can be run with +`pytest -q test`. + +## License + +orjson was written by ijl <>, copyright 2018 - 2024, available +to you under either the Apache 2 license or MIT license at your choice. + diff --git a/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/RECORD b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/RECORD new file mode 100644 index 00000000..931e3ffc --- /dev/null +++ b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/RECORD @@ -0,0 +1,12 @@ +orjson-3.10.9.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +orjson-3.10.9.dist-info/METADATA,sha256=9YQCZBp2LLYdYl40U1OZjiY7Ktjdpnjs84WflEKaBIA,51807 +orjson-3.10.9.dist-info/RECORD,, +orjson-3.10.9.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +orjson-3.10.9.dist-info/WHEEL,sha256=Va5ImIkXvhKcffo-7SNH_9kd5U3l6ngzcEl07Fi-uJE,91 +orjson-3.10.9.dist-info/licenses/LICENSE-APACHE,sha256=fP1zjFPWHHnwfjSPYiv3cHyQhCNwVNN_vgd4inX1iBw,11048 +orjson-3.10.9.dist-info/licenses/LICENSE-MIT,sha256=NlFq79yExdWh50hUJZE6ItvaaesZMMXoTWrklytRlLk,1046 +orjson/__init__.py,sha256=GY7U7qpt-AHEk7MnQD3HtPtYgsWKUdeUJQC__oTqHjc,616 +orjson/__init__.pyi,sha256=3r1kX_zbF63Z2znbRa0GZAjB0WwQ7vhDVAP29ZUG5VY,793 +orjson/__pycache__/__init__.cpython-311.pyc,, +orjson/orjson.cp311-win32.pyd,sha256=ulDW_nnGl2PCooB1OIVmuOhYAjjbMcg_g_89titbe7o,271360 +orjson/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/REQUESTED b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/REQUESTED new file mode 100644 index 00000000..e69de29b diff --git a/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/WHEEL b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/WHEEL new file mode 100644 index 00000000..66d1a4c3 --- /dev/null +++ b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: maturin (1.7.4) +Root-Is-Purelib: false +Tag: cp311-none-win32 diff --git a/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/licenses/LICENSE-APACHE b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/licenses/LICENSE-APACHE new file mode 100644 index 00000000..16fe87b0 --- /dev/null +++ b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/licenses/LICENSE-APACHE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/licenses/LICENSE-MIT b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/licenses/LICENSE-MIT new file mode 100644 index 00000000..31aa7938 --- /dev/null +++ b/python/python3/virtualenv/Lib/site-packages/orjson-3.10.9.dist-info/licenses/LICENSE-MIT @@ -0,0 +1,23 @@ +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without +limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions +of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/python/python3/virtualenv/Lib/site-packages/orjson/__init__.py b/python/python3/virtualenv/Lib/site-packages/orjson/__init__.py new file mode 100644 index 00000000..892fd682 --- /dev/null +++ b/python/python3/virtualenv/Lib/site-packages/orjson/__init__.py @@ -0,0 +1,27 @@ +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from .orjson import * +from .orjson import __version__ + +__all__ = ( + "__version__", + "dumps", + "Fragment", + "JSONDecodeError", + "JSONEncodeError", + "loads", + "OPT_APPEND_NEWLINE", + "OPT_INDENT_2", + "OPT_NAIVE_UTC", + "OPT_NON_STR_KEYS", + "OPT_OMIT_MICROSECONDS", + "OPT_PASSTHROUGH_DATACLASS", + "OPT_PASSTHROUGH_DATETIME", + "OPT_PASSTHROUGH_SUBCLASS", + "OPT_SERIALIZE_DATACLASS", + "OPT_SERIALIZE_NUMPY", + "OPT_SERIALIZE_UUID", + "OPT_SORT_KEYS", + "OPT_STRICT_INTEGER", + "OPT_UTC_Z", +) diff --git a/python/python3/virtualenv/Lib/site-packages/orjson/__init__.pyi b/python/python3/virtualenv/Lib/site-packages/orjson/__init__.pyi new file mode 100644 index 00000000..d2b84db7 --- /dev/null +++ b/python/python3/virtualenv/Lib/site-packages/orjson/__init__.pyi @@ -0,0 +1,32 @@ +import json +from typing import Any, Callable, Optional, Union + +__version__: str + +def dumps( + __obj: Any, + default: Optional[Callable[[Any], Any]] = ..., + option: Optional[int] = ..., +) -> bytes: ... +def loads(__obj: Union[bytes, bytearray, memoryview, str]) -> Any: ... + +class JSONDecodeError(json.JSONDecodeError): ... +class JSONEncodeError(TypeError): ... + +class Fragment(tuple): + contents: Union[bytes, str] + +OPT_APPEND_NEWLINE: int +OPT_INDENT_2: int +OPT_NAIVE_UTC: int +OPT_NON_STR_KEYS: int +OPT_OMIT_MICROSECONDS: int +OPT_PASSTHROUGH_DATACLASS: int +OPT_PASSTHROUGH_DATETIME: int +OPT_PASSTHROUGH_SUBCLASS: int +OPT_SERIALIZE_DATACLASS: int +OPT_SERIALIZE_NUMPY: int +OPT_SERIALIZE_UUID: int +OPT_SORT_KEYS: int +OPT_STRICT_INTEGER: int +OPT_UTC_Z: int diff --git a/python/python3/virtualenv/Lib/site-packages/orjson/orjson.cp311-win32.pyd b/python/python3/virtualenv/Lib/site-packages/orjson/orjson.cp311-win32.pyd new file mode 100644 index 00000000..94829897 Binary files /dev/null and b/python/python3/virtualenv/Lib/site-packages/orjson/orjson.cp311-win32.pyd differ diff --git a/python/python3/virtualenv/Lib/site-packages/orjson/py.typed b/python/python3/virtualenv/Lib/site-packages/orjson/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/python/python3/virtualenv/Lib/site-packages/pip/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/__pycache__/__init__.cpython-311.pyc index edeada02..2bcf512f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/__pycache__/__main__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/__pycache__/__main__.cpython-311.pyc index eb5f2be9..e82f814e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/__pycache__/__main__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/__pycache__/__main__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc index 69ee9ff4..24636ab3 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc index 910cc258..0b6e5ed1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-311.pyc index cab80a6e..60c51186 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-311.pyc index cf79b279..c306c147 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc index 6fa4f25c..94fe0e83 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc index 0605cd4b..c80c60b9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc index c6448e08..fde34ca0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-311.pyc index 6b4f390a..3f8017e6 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc index b9cf4a97..e3f5d314 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc index 99929b5b..3cb6d042 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-311.pyc index 1e826248..62c2f506 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc index 58352e6c..fb676b04 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-311.pyc index 8cbe39f4..4ee85ce7 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc index f140a45a..cc081d74 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc index 9f8e8914..b32ee806 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-311.pyc index 0fcdbe42..afb69c50 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc index 602f3c34..695de3cb 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc index 9dd8d2b6..01fe9ed3 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-311.pyc index 6e6d27d7..1b474b15 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc index cebcda82..cc7b8947 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc index 8ceb332b..3bb75508 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-311.pyc index 8e739b3b..82b1c466 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc index d654bdcc..f1ad51af 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc index 055eb7a7..c94372cf 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-311.pyc index 69e812f6..d291454c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc index 69d257bb..7a575e3a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc index 9eb07352..48db93bb 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc index cfb6afa9..a1b4e143 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-311.pyc index c01867f9..957dc9e4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-311.pyc index fa3c5877..f38e4402 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-311.pyc index f70a87d5..8c0e5fef 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-311.pyc index 369f3768..9cf1e7f3 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc index 9f9c9766..bc0d9c62 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-311.pyc index 3b808f31..f7df215c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc index d20dd97f..c02dd006 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-311.pyc index 3d0a03e5..3891ff16 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-311.pyc index ebdd1246..faf4b57d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc index 40a7bb6f..40f28f0e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc index b13a4db1..90750ac8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc index c64aa01c..bc677f3c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc index 4075ea88..0050eebc 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc index c96a200c..99b46294 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-311.pyc index b94de26d..6fd5e8f5 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-311.pyc index f9dc9964..13bcf82f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-311.pyc index 2ba353f0..ac6c95e5 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-311.pyc index 2617a36c..e41249f4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-311.pyc index 3a8bef2b..aca67b9a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-311.pyc index 0e0d3655..2cf43310 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-311.pyc index 2efd5ef4..cf0dc918 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-311.pyc index 61dc910b..3a572908 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-311.pyc index 72a72891..e7794a43 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc index f61ef286..d6ca5029 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-311.pyc index 866dfadd..d254a985 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-311.pyc index f312786b..f1bf6f82 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-311.pyc index 79bb4141..1b2a9ca2 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-311.pyc index 88c9ab86..6c414cf2 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-311.pyc index 29e98377..a8554803 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-311.pyc index 86760415..e1b0c7b9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc index 30e6cbac..4c98098a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-311.pyc index 8febf882..b0f31172 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-311.pyc index 5a932702..b13cfb49 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-311.pyc index 714162e6..a9d47e68 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-311.pyc index 8159a1c5..d3f1a66c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-311.pyc index cafcc9b8..02371a8d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc index 48070b69..77b9d381 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc index 9a9d4e6f..0b28f960 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc index 0772862b..c2ad39b3 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-311.pyc index 7f331098..7bbbd41f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-311.pyc index c60df316..e9fb7307 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-311.pyc index b8e017db..ba3610da 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-311.pyc index d6b9ecf0..b5b6d2ac 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-311.pyc index 7c0dd2fa..862d6b30 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc index 55bd373e..dabf6d40 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc index d674d504..ae8f4a9d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-311.pyc index fc87f033..9aaf245d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc index 5c5465b1..1da5560a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc index 7543053c..cbac921b 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc index 4e79686e..1154a9c1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc index 811663a7..42a06040 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc index 84abb996..e7fee781 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc index 13cde9fe..0c4067e4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc index a4bc75e5..cd1ad6a8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc index 0f2be4af..35d573da 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc index ce2550f7..2fd85399 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-311.pyc index 43f6c7cf..d7f2c979 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc index ff608b40..fe3d9b0c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-311.pyc index d5627a55..175d0d66 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc index c0c67e8b..b81221f0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-311.pyc index 14c15256..233ab137 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc index bd654459..6a79a86e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc index 49769ed6..a8df2988 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc index 4e044ec5..b040cb85 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc index 7d794913..0a055ef3 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-311.pyc index 59a92571..6edfee86 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc index 4e6a7c45..3f1eff07 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc index 1a8de6a0..d0bd424a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc index b0968d1d..ecde5c2f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-311.pyc index 46f3c99b..2515f13e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-311.pyc index 95c3cfb6..dcae37ba 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-311.pyc index 862e08d3..3e0bb301 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-311.pyc index 10857a5a..69ec4938 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-311.pyc index f8174817..0dbf70c1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-311.pyc index 9e37cfcd..132d9ad6 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-311.pyc index a4f8a0eb..e0dbcbe0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc index ed7e3692..ce9babf6 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc index 48dd4cda..41372874 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc index 75e92f04..dc737544 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc index 4bd95a17..33d79385 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc index 77a2e089..83d9fe46 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc index 99de0283..ece08abb 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-311.pyc index 20c0ee3e..20e53692 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc index 6b507006..fd0ef572 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc index 78d6e6e2..36344249 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc index 04d9a973..88fd3f2d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc index ff72051d..11ec24d0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc index 6da83165..d617d450 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc index 95b7a3e8..0a548285 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc index 53689e83..1f1d84d4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc index 418e826d..bf17762b 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc index 5e22818b..2d6d433b 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc index 1b6fcee0..7bba9603 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-311.pyc index 59841309..0bed6369 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc index bb62bce2..682226e8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc index 2ed9af3e..1903958e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc index 6a1f55c3..b6541085 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc index 07ab8c06..5324da43 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc index 7e31858b..caadc8e8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc index b9af999e..47aadac0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc index df236284..148c0b93 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc index ca64cf61..391718f6 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc index 492af346..3cd55e70 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc index 08d5254a..c4d0c3e0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc index 57c2b151..1c2e7843 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc index f4e6424f..2ff26398 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc index 4df1f8c7..3dfbc8e4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc index 9190c691..bb8aef64 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc index c5ea8acf..688a0b99 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc index a3a06494..d8f8ee94 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc index 4dfad6d8..8b586858 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc index 30a948e0..4c0b8d02 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc index 00c26e20..93675887 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc index 039e55d8..94c56728 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc index 85e3bf5e..ad74a025 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc index 8b25165f..ed9fb0a1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc index 73d0edf6..1125e989 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc index 779a0be9..d943e5fb 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc index 3f867ee2..c43eb782 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc index bb5ce154..2ccbc441 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc index 2f475af7..203e5779 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc index 453cce12..c66d9125 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc index 81fa2552..246e5ea8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc index b2da4268..20100ba7 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc index 6f467a5e..36978d14 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc index 8662b39f..3d3c20b2 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc index dde63fcb..5c9a30ce 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc index 8aea68f6..40989cbd 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc index 6258b85b..b18b05b1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc index 3b5ca7f5..313b97fd 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc index 7a8deaaf..ef97150a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc index f78cf0d0..e888719b 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc index f9dbbc44..438f01b2 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc index 9ea398a7..d269e074 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc index 119b57a0..4add38f0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc index fa247e96..43ad6260 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc index 458b751c..a084950a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc index 048b4406..00346bf2 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc index f45ff0fc..8c6122e0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc index 7d4dca7f..c3a8d365 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc index 5aa5b454..b6314632 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc index 39a705cf..9ab6606a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc index b6313211..313036d9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc index bb5f1701..78cc5a09 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc index 73e8b5d6..33f1859f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc index b7c8c708..aa7677dd 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc index 0717d0c8..1c799185 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc index ac019aaf..ced633c8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc index fcdedd54..01e0cb34 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc index e4fd506f..24f3aaa0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-311.pyc index acb29873..9f611601 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc index 3803ef7a..cf8775e1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-311.pyc index 163a8ae8..e54fed0b 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc index 9b9e940e..6f013211 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc index dbdaf8d8..78112ed3 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc index 8d1e2cb7..5f6135b9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc index 62bd55ac..de865fb4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc index 07536f3a..2c8ef3b8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc index 92ac1716..d305675f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc index 4d5070ed..725eeb2b 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc index f4cc7b73..36b68ba0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc index 73aaa6a1..6112490c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc index 7f3d44e0..68af7264 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc index 0615356c..b92ecacb 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc index f1c56d37..806acb11 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc index dc51ad3e..242bd481 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc index eea02609..c782cacf 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc index b1009963..7677dcca 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc index 9d451341..96cd1836 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc index 9955d7a6..a334acd3 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc index 8dfd68af..24cdd976 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc index 5624c1a0..1bbbbe78 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc index 23748d59..5f0e4d3f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc index e9eb41cb..ab62018f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc index ee01bf70..9384c8ab 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc index eecf979b..705f0bb7 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc index 1a610ae6..cebe1a41 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc index c44c554f..9452da3f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc index e021e52c..11a31037 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc index 493f41ed..a6a93c09 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc index 5e5800ba..e1c95d44 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc index 8ee0bd43..e5a7184c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-311.pyc index a53b2e6c..8e9d0d20 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-311.pyc index fe836419..2d01cc56 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-311.pyc index 2dfe87c7..ee4186e0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc index ff3d14b0..ddcc6ca7 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-311.pyc index 0ce32b05..b9b513d4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-311.pyc index ed4b26c1..38335ce4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-311.pyc index 4db3356f..9b4e2dcd 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-311.pyc index f5846c46..c3cc201d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-311.pyc index 7e87f391..358014d7 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-311.pyc index ed519f6f..36653d5f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-311.pyc index 652b0ff4..5f5b55dc 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-311.pyc index 0ad55f14..0c02b21f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-311.pyc index 6c280aae..5c1dd007 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-311.pyc index 43f14e8f..acaaf100 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-311.pyc index 8d0cbd6c..56e6f6a1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-311.pyc index a8c490a6..0446fc2e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-311.pyc index 108bf644..520fe1ea 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc index b7b12580..9ec2587d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc index 73d837e5..49c4b874 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc index 6b86ea8f..6cfee57d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc index f996e291..d273d63c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc index 243d9c21..163e8bbd 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc index 1a789d2c..f4f35a87 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc index a4897287..ef1511ae 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc index 08298b03..ec04e21d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc index 271de8f3..96e48a70 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc index a08af8a8..f51b57e0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-311.pyc index 55680c66..61de0c5c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc index 56d71e15..adc8a827 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc index 125a48da..36d4e58d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc index 79f5e827..1f690e0d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-311.pyc index 80a83c12..6e3c88ee 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-311.pyc index 2f05be0d..c69eec1a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc index cbf7ef12..080fb74b 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc index 1fb4e7fb..f13f86fc 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc index d59d8206..397c2db9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc index ba7e21df..636c63ca 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc index e685c467..8e0d3e95 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc index bff13d9a..472bfeb8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc index 0205d859..aee2712e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc index 701837f3..64606634 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc index a73477cd..c1a0f6cf 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc index a0c8d039..f009a0fc 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc index 77fcc4e2..8cc6a599 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc index 42eccc41..c0468c66 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc index 16cf6c28..71cd15fd 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc index 2a80b3b0..628dd1a0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc index 634f41da..df8f0c6e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc index e849276a..fed87263 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc index f44547ae..b5a7179f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc index ee847218..fe4ff626 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc index 73fe0b7c..75baf8bc 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc index a1de1fde..cb9f5a4b 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc index 17e00876..8f6544c0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc index 43f98630..cfaa6901 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc index e505b500..885c1f75 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc index 56559ed9..ee94f149 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc index 2a78e0d9..77859ec0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc index 7a2eb50f..4dd19b18 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc index 2ff58937..a27aa2f0 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc index 49c08f84..64b2fa3e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-311.pyc index 699b19d0..cd2b7131 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-311.pyc index cd32fe4b..597e1f93 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc index e682f1a9..f57ba0fc 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc index e8c81c1f..5c151bbc 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc index 9b9b8dca..67b1afa9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc index 6b2b52f1..66c31406 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc index 93a304df..01f9627f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc index 10298731..42e053e6 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-311.pyc index eb593e78..c366915c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc index df8474e7..0fee5886 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-311.pyc index ccc6228f..6cf41695 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-311.pyc index 3d34fff0..d960e8f8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc index c5ebd228..b220f546 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc index 865b6fc9..42ebc5bf 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc index e5f60d7d..8b4a768a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc index fab57ddb..1358190a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc index 38ca4447..79eab943 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc index 21ec6c3e..8ab581e9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc index 1de69f05..ba0ce3d9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc index 8fc056ea..df7249b6 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc index 2a3159a7..fbb59699 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-311.pyc index 9db158e9..6a347e50 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc index 530543cf..7ca8d59a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc index 2edfb13f..9cd2f68e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc index 19e36b32..cdb82d07 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc index 95d418a9..40c7713d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-311.pyc index 1f818b68..0ea2e635 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc index cf5813fa..e2b1a4ed 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc index 0639cd05..b13743d3 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-311.pyc index e4d7b125..99062002 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc index 452684d1..d12ea8d2 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc index 82602a5f..f7e07f4a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-311.pyc index 8ad6b9f9..4f08f9c8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc index 3eb6172d..fb2f3724 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-311.pyc index fe310340..7cc9ff90 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc index 88d70bfa..fbd89bf6 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc index 7a6ffa6e..2270ca7c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc index 3ea36c5c..358ec82e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc index 772b3cd3..b6247aee 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc index 66197c2e..db1f10d2 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc index e900b5e7..28cc63d4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc index b65466cd..d2ec3cfe 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc index b34fa914..5d24d4d1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc index d1a2d0b0..3b95cb1f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc index 7308b88a..43067e65 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-311.pyc index d73879ab..3af4ae3f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc index 29c327ba..7ad34e4f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-311.pyc index 5367d400..158bed60 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-311.pyc index 725f08c0..a6d24464 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-311.pyc index e26d4b1a..220a719e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-311.pyc index 4c229d2a..8b76017f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-311.pyc index 9c48a0a5..a6b2db09 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-311.pyc index 1f49eaca..c3b499ab 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-311.pyc index c8ed1761..21139f79 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-311.pyc index f3cc4e78..2aa3ba60 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-311.pyc index 57ef5069..9c3daa4a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-311.pyc index b8826562..b09990c2 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-311.pyc index d1f0856d..01424d89 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-311.pyc index 943a95df..ee7feb59 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-311.pyc index 243c4d9e..b8459cf1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-311.pyc index 897deab4..818556b8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-311.pyc index 84d835e5..d81248e1 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-311.pyc index d1143aa5..2a031430 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-311.pyc index 9f2315e2..21298bd9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-311.pyc index 9696923b..8caaad33 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-311.pyc index 0f9916ad..fc3b9806 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-311.pyc index 4e537471..e3af019d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-311.pyc index ff32d203..109a273c 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-311.pyc index d3ad34b0..023e52fa 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-311.pyc index c76c76c9..5b6939f2 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-311.pyc index 7e17bc14..887be875 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-311.pyc index 409504a0..f7d9c68f 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-311.pyc index 93b0ab12..166cae54 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-311.pyc index e19d777b..6445e7d4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-311.pyc index 028e2118..376746a8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-311.pyc index ad91de4f..eb431d88 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-311.pyc index cf48a639..f8ec183e 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-311.pyc index 7112620a..8ce30af4 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-311.pyc index b748f79b..15414a64 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-311.pyc index 2ac05816..e328c244 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-311.pyc index 1ede352f..f0efcf63 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-311.pyc index 35eb8c52..76c6ffb6 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-311.pyc index c6450a5d..ba8d37f9 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-311.pyc index c00ea2fa..14a6cefa 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-311.pyc index 0bbf10cb..1391c041 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-311.pyc index 8e1f9841..70e7535a 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-311.pyc index b4ea2331..203073e8 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-311.pyc index 323980fb..a07fddee 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-311.pyc index df65a5aa..d40cfd8d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-311.pyc differ diff --git a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-311.pyc b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-311.pyc index 4bee1b92..3d2f8b4d 100644 Binary files a/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-311.pyc and b/python/python3/virtualenv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-311.pyc differ diff --git a/requirements.txt b/requirements.txt index 33395bc6..e2d28865 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +orjson>=3.10,<4 autocorrect==2.6.1 colorama==0.4.6 loguru==0.7.2