From 38680441ac525d0912179362119f4d84d29c7c04 Mon Sep 17 00:00:00 2001 From: amanda Date: Fri, 16 Sep 2022 15:02:48 +0100 Subject: [PATCH 1/7] Add python3.9 to GHA --- .github/workflows/ci.yaml | 40 ++++++++++++++++++- .github/workflows/microbenchmarks.yaml | 6 +++ .../workflows/orquesta-integration-tests.yaml | 6 +++ 3 files changed, 51 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index de160c7ebd..2773e5419f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -70,11 +70,19 @@ jobs: task: 'ci-compile' python-version-short: '3.8' python-version: '3.8.10' + - name: 'Lint Checks (black, flake8, etc.)' + task: 'ci-checks' + python-version-short: '3.9' + python-version: '3.9.14' + - name: 'Compile (pip deps, pylint, etc.)' + task: 'ci-compile' + python-version-short: '3.9' + python-version: '3.9.14' env: TASK: '${{ matrix.task }}' COLUMNS: '120' - PYLINT_CONCURRENCY: '4' + PYLINT_CONCURRENCY: '6' steps: - name: Checkout repository uses: actions/checkout@v2 @@ -174,6 +182,18 @@ jobs: nosetests_node_index: 1 python-version-short: '3.8' python-version: '3.8.10' + - name: 'Unit Tests (chunk 1)' + task: 'ci-unit' + nosetests_node_total: 2 + nosetests_node_index: 0 + python-version-short: '3.9' + python-version: '3.9.14' + - name: 'Unit Tests (chunk 2)' + task: 'ci-unit' + nosetests_node_total: 2 + nosetests_node_index: 1 + python-version-short: '3.9' + python-version: '3.9.14' # This job is slow so we only run in on a daily basis # - name: 'Micro Benchmarks' # task: 'micro-benchmarks' @@ -359,6 +379,24 @@ jobs: nosetests_node_index: 1 python-version-short: '3.8' python-version: '3.8.10' + - name: 'Pack Tests' + task: 'ci-packs-tests' + nosetests_node_total: 1 + nosetests_node_index: 0 + python-version-short: '3.9' + python-version: '3.9.14' + - name: 'Integration Tests (chunk 1)' + task: 'ci-integration' + nosetests_node_total: 2 + nosetests_node_index: 0 + python-version-short: '3.9' + python-version: '3.9.14' + - name: 'Integration Tests (chunk 2)' + task: 'ci-integration' + nosetests_node_total: 2 + nosetests_node_index: 1 + python-version-short: '3.9' + python-version: '3.9.14' services: mongo: image: mongo:4.4 diff --git a/.github/workflows/microbenchmarks.yaml b/.github/workflows/microbenchmarks.yaml index 60016966c9..265bffdfae 100644 --- a/.github/workflows/microbenchmarks.yaml +++ b/.github/workflows/microbenchmarks.yaml @@ -46,6 +46,12 @@ jobs: nosetests_node_index: 0 python-version-short: '3.8' python-version: '3.8.10' + - name: 'Microbenchmarks' + task: 'micro-benchmarks' + nosetests_node_total: 1 + nosetests_node_index: 0 + python-version-short: '3.9' + python-version: '3.9.14' services: mongo: image: mongo:4.4 diff --git a/.github/workflows/orquesta-integration-tests.yaml b/.github/workflows/orquesta-integration-tests.yaml index 3740950745..6f2f69ccd2 100644 --- a/.github/workflows/orquesta-integration-tests.yaml +++ b/.github/workflows/orquesta-integration-tests.yaml @@ -67,6 +67,12 @@ jobs: nosetests_node_index: 0 python-version-short: '3.8' python-version: '3.8.10' + - name: 'Integration Tests (Orquesta)' + task: 'ci-orquesta' + nosetests_node_total: 1 + nosetests_node_index: 0 + python-version-short: '3.9' + python-version: '3.9.14' services: mongo: image: mongo:4.4 From 817381cc6b73ef6cbcbd9e293cadc8feaf62e143 Mon Sep 17 00:00:00 2001 From: amanda Date: Mon, 27 Mar 2023 16:07:21 +0100 Subject: [PATCH 2/7] Update with latest master with pants changes --- pants.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pants.toml b/pants.toml index 1a9ce37c68..a1c5175e9b 100644 --- a/pants.toml +++ b/pants.toml @@ -108,8 +108,8 @@ enable_resolves = true default_resolve = "st2" interpreter_constraints = [ # python_distributions needs a single constraint (vs one line per python version). - # officially, we exclude 3.7 support, but that adds unnecessary complexity: "CPython>=3.6,!=3.7.*,<3.9", - "CPython>=3.6,<3.9", + # officially, we exclude 3.7 support, but that adds unnecessary complexity: "CPython>=3.6,!=3.7.*,<3.10", + "CPython>=3.6,<3.10", ] [python.resolves] @@ -177,7 +177,7 @@ extra_requirements = [ lockfile = "lockfiles/black.lock" version = "black==22.3.0" interpreter_constraints = [ - "CPython>=3.6.2,<3.9", + "CPython>=3.6.2,<3.10", ] [flake8] From 1b3ea960c3203f8a25b9bd90b6fe5d9b24ceceee Mon Sep 17 00:00:00 2001 From: amanda Date: Mon, 27 Mar 2023 16:13:37 +0100 Subject: [PATCH 3/7] Add python 3.9 to test yaml --- .github/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 334479b702..172c0cd64d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -38,6 +38,9 @@ jobs: - name: 'Test (pants runs: pytest)' python-version-short: '3.8' python-version: '3.8.10' + - name: 'Test (pants runs: pytest)' + python-version-short: '3.9' + python-version: '3.9.14' services: mongo: From c64847f85e2b218369aac2e7192ea0ab8a8fa8d8 Mon Sep 17 00:00:00 2001 From: Amanda McGuinness Date: Mon, 27 Mar 2023 15:50:49 +0000 Subject: [PATCH 4/7] Regenerate pants lock files --- lockfiles/bandit.lock | 32 +- lockfiles/black.lock | 74 +++- lockfiles/flake8.lock | 22 +- lockfiles/pants-plugins.lock | 72 ++-- lockfiles/pylint.lock | 59 ++- lockfiles/pylint_plugins.lock | 59 ++- lockfiles/pytest.lock | 98 +++-- lockfiles/setuptools.lock | 6 +- lockfiles/st2.lock | 716 +++++++++++++++++++++++++++++----- lockfiles/twine.lock | 619 +++++++++++++++++++++-------- 10 files changed, 1360 insertions(+), 397 deletions(-) diff --git a/lockfiles/bandit.lock b/lockfiles/bandit.lock index d005f4b678..2db325249e 100644 --- a/lockfiles/bandit.lock +++ b/lockfiles/bandit.lock @@ -6,8 +6,8 @@ // { // "version": 3, // "valid_for_interpreter_constraints": [ -// "CPython<3.10,>=3.7", -// "CPython<3.9,>=3.6" +// "CPython<3.10,>=3.6", +// "CPython<3.10,>=3.7" // ], // "generated_with_requirements": [ // "bandit==1.7.0", @@ -52,7 +52,7 @@ "stevedore>=1.20.0" ], "requires_python": ">=3.5", - "version": "1.7" + "version": "1.7.0" }, { "artifacts": [ @@ -137,19 +137,19 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "db2317ff07c84c4c63648c9064a79fe9d9f5c7ce85a9099d4b6258b3db83225a", - "url": "https://files.pythonhosted.org/packages/e5/37/10e8a53f196cf0bcb93008daed42e2c47c7876430a7efd044ff4d647f30a/pbr-5.11.0-py2.py3-none-any.whl" + "hash": "567f09558bae2b3ab53cb3c1e2e33e726ff3338e7bae3db5dc954b3a44eef12b", + "url": "https://files.pythonhosted.org/packages/01/06/4ab11bf70db5a60689fc521b636849c8593eb67a2c6bdf73a16c72d16a12/pbr-5.11.1-py2.py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "b97bc6695b2aff02144133c2e7399d5885223d42b7912ffaec2ca3898e673bfe", - "url": "https://files.pythonhosted.org/packages/52/fb/630d52aaca8fc7634a0711b6ae12a0e828b6f9264bd8051225025c3ed075/pbr-5.11.0.tar.gz" + "hash": "aefc51675b0b533d56bb5fd1c8c6c0522fe31896679882e1c4c63d5e4a0fccb3", + "url": "https://files.pythonhosted.org/packages/02/d8/acee75603f31e27c51134a858e0dea28d321770c5eedb9d1d673eb7d3817/pbr-5.11.1.tar.gz" } ], "project_name": "pbr", "requires_dists": [], "requires_python": ">=2.6", - "version": "5.11" + "version": "5.11.1" }, { "artifacts": [ @@ -247,7 +247,7 @@ "project_name": "pyyaml", "requires_dists": [], "requires_python": ">=3.6", - "version": "6" + "version": "6.0" }, { "artifacts": [ @@ -292,7 +292,7 @@ "wheel; extra == \"testing\"" ], "requires_python": ">=3.6", - "version": "59.6" + "version": "59.6.0" }, { "artifacts": [ @@ -310,7 +310,7 @@ "project_name": "six", "requires_dists": [], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7", - "version": "1.16" + "version": "1.16.0" }, { "artifacts": [ @@ -328,7 +328,7 @@ "project_name": "smmap", "requires_dists": [], "requires_python": ">=3.6", - "version": "5" + "version": "5.0.0" }, { "artifacts": [ @@ -398,14 +398,14 @@ "sphinx; extra == \"docs\"" ], "requires_python": ">=3.6", - "version": "3.6" + "version": "3.6.0" } ], "platform_tag": null } ], "path_mappings": {}, - "pex_version": "2.1.108", + "pex_version": "2.1.126", "pip_version": "20.3.4-patched", "prefer_older_binary": false, "requirements": [ @@ -414,8 +414,8 @@ "setuptools" ], "requires_python": [ - "<3.10,>=3.7", - "<3.9,>=3.6" + "<3.10,>=3.6", + "<3.10,>=3.7" ], "resolver_version": "pip-2020-resolver", "style": "universal", diff --git a/lockfiles/black.lock b/lockfiles/black.lock index 16dbcaca97..9e46595633 100644 --- a/lockfiles/black.lock +++ b/lockfiles/black.lock @@ -6,7 +6,7 @@ // { // "version": 3, // "valid_for_interpreter_constraints": [ -// "CPython<3.9,>=3.6.2" +// "CPython<3.10,>=3.6.2" // ], // "generated_with_requirements": [ // "black==22.3.0", @@ -55,6 +55,16 @@ "hash": "06f9d8846f2340dfac80ceb20200ea5d1b3f181dd0556b47af4e8e0b24fa0a6b", "url": "https://files.pythonhosted.org/packages/43/ba/fd965969581806c96110ce55855b7b4008678f5cbbf559c83db8aac30871/black-22.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "6ee227b696ca60dd1c507be80a6bc849a5a6ab57ac7352aad1ffec9e8b805f21", + "url": "https://files.pythonhosted.org/packages/51/ec/c87695b087b7525fd9c7732c630455f231d3df9a300b730bd0e04ea00f84/black-22.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "ee8f1f7228cce7dffc2b464f07ce769f478968bfb3dd1254a4c2eeed84928aad", + "url": "https://files.pythonhosted.org/packages/56/74/c27c496223168af625d6bba8a14bc581e7742bf7248504a4b5743c374767/black-22.3.0-cp39-cp39-macosx_11_0_arm64.whl" + }, { "algorithm": "sha256", "hash": "6d2fc92002d44746d3e7db7cf9313cf4452f43e9ea77a2c939defce3b10b5c82", @@ -65,11 +75,21 @@ "hash": "863714200ada56cbc366dc9ae5291ceb936573155f8bf8e9de92aef51f3ad0f0", "url": "https://files.pythonhosted.org/packages/98/a0/98fe3aee7a08c7c9d470e38326cefb86372fb08332125d5b0414a22ab49f/black-22.3.0-cp38-cp38-macosx_11_0_arm64.whl" }, + { + "algorithm": "sha256", + "hash": "5891ef8abc06576985de8fa88e95ab70641de6c1fca97e2a15820a9b69e51b20", + "url": "https://files.pythonhosted.org/packages/a4/43/940f848d7d1ecf0be18453a293e5736e9ce60fd6197386a791bcc491f232/black-22.3.0-cp39-cp39-macosx_10_9_universal2.whl" + }, { "algorithm": "sha256", "hash": "e8477ec6bbfe0312c128e74644ac8a02ca06bcdb8982d4ee06f209be28cdf163", "url": "https://files.pythonhosted.org/packages/a9/64/4682e5c7ca539bef71cb9be592f649ff5f1e1134a8e72e2bff8632ade99d/black-22.3.0-cp38-cp38-macosx_10_9_universal2.whl" }, + { + "algorithm": "sha256", + "hash": "30d78ba6bf080eeaf0b7b875d924b15cd46fec5fd044ddfbad38c8ea9171043a", + "url": "https://files.pythonhosted.org/packages/e5/b7/e4e8907dffdac70f018ddb89681dbc77cbc7ac78d1f8a39259110a7e7943/black-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "35020b8886c022ced9282b51b5a875b6d1ab0c387b31a065b84db7c33085ca79", @@ -98,7 +118,7 @@ "uvloop>=0.15.2; extra == \"uvloop\"" ], "requires_python": ">=3.6.2", - "version": "22.3" + "version": "22.3.0" }, { "artifacts": [ @@ -181,21 +201,19 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d", - "url": "https://files.pythonhosted.org/packages/5c/eb/975c7c080f3223a5cdaff09612f3a5221e4ba534f7039db34c35d95fa6a5/mypy_extensions-0.4.3-py2.py3-none-any.whl" + "hash": "4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", + "url": "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8", - "url": "https://files.pythonhosted.org/packages/63/60/0582ce2eaced55f65a4406fc97beba256de4b7a95a0034c6576458c6519f/mypy_extensions-0.4.3.tar.gz" + "hash": "75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", + "url": "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz" } ], "project_name": "mypy-extensions", - "requires_dists": [ - "typing>=3.5.3; python_version < \"3.5\"" - ], - "requires_python": null, - "version": "0.4.3" + "requires_dists": [], + "requires_python": ">=3.5", + "version": "1.0.0" }, { "artifacts": [ @@ -213,7 +231,7 @@ "project_name": "pathspec", "requires_dists": [], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", - "version": "0.9" + "version": "0.9.0" }, { "artifacts": [ @@ -240,7 +258,7 @@ "sphinx-autodoc-typehints>=1.12; extra == \"docs\"" ], "requires_python": ">=3.6", - "version": "2.4" + "version": "2.4.0" }, { "artifacts": [ @@ -264,8 +282,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6", - "url": "https://files.pythonhosted.org/packages/40/1a/5731a1a3908f60032aead10c2ffc9af12ee708bc9a156ed14a5065a9873a/typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + "hash": "98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72", + "url": "https://files.pythonhosted.org/packages/d8/4e/db9505b53c44d7bc324a3d2e09bdf82b0943d6e08b183ae382860f482a87/typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" }, { "algorithm": "sha256", @@ -277,11 +295,21 @@ "hash": "39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2", "url": "https://files.pythonhosted.org/packages/07/d2/d55702e8deba2c80282fea0df53130790d8f398648be589750954c2dcce4/typed_ast-1.5.4.tar.gz" }, + { + "algorithm": "sha256", + "hash": "3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97", + "url": "https://files.pythonhosted.org/packages/0b/e7/8ec06fc870254889198f933a595f139b7871b24bab1116d6128440731ea9/typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl" + }, { "algorithm": "sha256", "hash": "7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f", "url": "https://files.pythonhosted.org/packages/2f/87/25abe9558ed6cbd83ad5bfdccf7210a7eefaaf0232f86de99f65992e91fd/typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl" }, + { + "algorithm": "sha256", + "hash": "ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3", + "url": "https://files.pythonhosted.org/packages/2f/d5/02059fe6ca70b11bb831007962323160372ca83843e0bf296e8b6d833198/typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6", @@ -292,6 +320,11 @@ "hash": "a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47", "url": "https://files.pythonhosted.org/packages/38/54/48f7d5b1f954f3a4d8f76e1a11c8497ae899b900cd5a67f826fa3937f701/typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6", + "url": "https://files.pythonhosted.org/packages/40/1a/5731a1a3908f60032aead10c2ffc9af12ee708bc9a156ed14a5065a9873a/typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + }, { "algorithm": "sha256", "hash": "79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec", @@ -316,6 +349,11 @@ "algorithm": "sha256", "hash": "183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6", "url": "https://files.pythonhosted.org/packages/e3/7c/7407838e9c540031439f2948bce2763cdd6882ebb72cc0a25b763c10529e/typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35", + "url": "https://files.pythonhosted.org/packages/f9/57/89ac0020d5ffc762487376d0c78e5d02af795657f18c411155b73de3c765/typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl" } ], "project_name": "typed-ast", @@ -370,14 +408,14 @@ "sphinx; extra == \"docs\"" ], "requires_python": ">=3.6", - "version": "3.6" + "version": "3.6.0" } ], "platform_tag": null } ], "path_mappings": {}, - "pex_version": "2.1.108", + "pex_version": "2.1.126", "pip_version": "20.3.4-patched", "prefer_older_binary": false, "requirements": [ @@ -385,7 +423,7 @@ "typing-extensions>=3.10.0.0; python_version < \"3.10\"" ], "requires_python": [ - "<3.9,>=3.6.2" + "<3.10,>=3.6.2" ], "resolver_version": "pip-2020-resolver", "style": "universal", diff --git a/lockfiles/flake8.lock b/lockfiles/flake8.lock index 03685e1b49..8781a28139 100644 --- a/lockfiles/flake8.lock +++ b/lockfiles/flake8.lock @@ -6,8 +6,8 @@ // { // "version": 3, // "valid_for_interpreter_constraints": [ -// "CPython<3.10,>=3.7", -// "CPython<3.9,>=3.6" +// "CPython<3.10,>=3.6", +// "CPython<3.10,>=3.7" // ], // "generated_with_requirements": [ // "flake8==4.0.1", @@ -131,7 +131,7 @@ "zipp>=0.5" ], "requires_python": ">=3.6", - "version": "4.2" + "version": "4.2.0" }, { "artifacts": [ @@ -167,7 +167,7 @@ "project_name": "pycodestyle", "requires_dists": [], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", - "version": "2.8" + "version": "2.8.0" }, { "artifacts": [ @@ -185,7 +185,7 @@ "project_name": "pyflakes", "requires_dists": [], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7", - "version": "2.4" + "version": "2.4.0" }, { "artifacts": [ @@ -230,7 +230,7 @@ "wheel; extra == \"testing\"" ], "requires_python": ">=3.6", - "version": "59.6" + "version": "59.6.0" }, { "artifacts": [ @@ -251,7 +251,7 @@ "flake8-polyfill==1.0.2" ], "requires_python": null, - "version": "0.1" + "version": "0.1.0" }, { "artifacts": [ @@ -300,14 +300,14 @@ "sphinx; extra == \"docs\"" ], "requires_python": ">=3.6", - "version": "3.6" + "version": "3.6.0" } ], "platform_tag": null } ], "path_mappings": {}, - "pex_version": "2.1.108", + "pex_version": "2.1.126", "pip_version": "20.3.4-patched", "prefer_older_binary": false, "requirements": [ @@ -315,8 +315,8 @@ "st2flake8==0.1.0" ], "requires_python": [ - "<3.10,>=3.7", - "<3.9,>=3.6" + "<3.10,>=3.6", + "<3.10,>=3.7" ], "resolver_version": "pip-2020-resolver", "style": "universal", diff --git a/lockfiles/pants-plugins.lock b/lockfiles/pants-plugins.lock index 40fddd1b91..0a06b26590 100644 --- a/lockfiles/pants-plugins.lock +++ b/lockfiles/pants-plugins.lock @@ -522,13 +522,13 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "7efb448ec9a5e313a57655d35aa54cd3e01b7e1fbcf72dce1bf06119420f5bad", - "url": "https://files.pythonhosted.org/packages/26/a7/9da7d5b23fc98ab3d424ac2c65613d63c1f401efb84ad50f2fa27b2caab4/importlib_metadata-6.0.0-py3-none-any.whl" + "hash": "ff80f3b5394912eb1b108fcfd444dc78b7f1f3e16b16188054bd01cb9cb86f09", + "url": "https://files.pythonhosted.org/packages/f8/7d/e3adad613703c86d62aa991b45d6f090cf59975078a8c8100b50a0c86948/importlib_metadata-6.1.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "e354bedeb60efa6affdcc8ae121b73544a7aa74156d047311948f6d711cd378d", - "url": "https://files.pythonhosted.org/packages/90/07/6397ad02d31bddf1841c9ad3ec30a693a3ff208e09c2ef45c9a8a5f85156/importlib_metadata-6.0.0.tar.gz" + "hash": "43ce9281e097583d758c2c708c4376371261a02c34682491a8e98352365aad20", + "url": "https://files.pythonhosted.org/packages/e2/d8/3d431bade4598ad9e33be9da41d15e6607b878008e922d122659ab01b077/importlib_metadata-6.1.0.tar.gz" } ], "project_name": "importlib-metadata", @@ -557,7 +557,7 @@ "zipp>=0.5" ], "requires_python": ">=3.7", - "version": "6.0.0" + "version": "6.1.0" }, { "artifacts": [ @@ -631,53 +631,53 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "004a0b8be203d05c19db2919c9e2ce9f0e259dbdc4550f53fd1987d11a1c91bd", - "url": "https://files.pythonhosted.org/packages/7e/e0/007dbe28b8136a1bbe14a8223b8c8daa09fb9616ca9dc19ffbdb405e715e/pantsbuild.pants-2.16.0a0-cp39-cp39-manylinux2014_x86_64.whl" + "hash": "fc322c64a60132a062ab1a9542a8a23b279ceb7af0e30a891246898d2bfd50dc", + "url": "https://files.pythonhosted.org/packages/dc/0d/616f40f3025da6542987ec22f6d5d2567163be59d3be86a705b87d558000/pantsbuild.pants-2.16.0a1-cp39-cp39-manylinux2014_x86_64.whl" }, { "algorithm": "sha256", - "hash": "834f4750febdf5f17868b57d78163a4c3469ccae93f97cb2dbc0adc94cad4c48", - "url": "https://files.pythonhosted.org/packages/10/58/4ec4de0c3043bfa4011599654c2663faac783a7902e9c8328b2083178b5e/pantsbuild.pants-2.16.0a0-cp37-cp37m-manylinux2014_x86_64.whl" + "hash": "598a52e8518876b0dd8883261c7393c588e2735f32c77b3949ccb8ff6c407174", + "url": "https://files.pythonhosted.org/packages/0c/b6/86489361fabc7de4ff95e90cf85b69777fe30b55189fdefb790a42f07ac5/pantsbuild.pants-2.16.0a1-cp39-cp39-macosx_10_15_x86_64.whl" }, { "algorithm": "sha256", - "hash": "15a9fa7e22921c80cafe0374a366a7e655a3871f376b90de7d9d19371e1182b1", - "url": "https://files.pythonhosted.org/packages/27/bf/8157c686f63601200b63ae829c0841af9b5605f0f03752c6316c172148db/pantsbuild.pants-2.16.0a0-cp38-cp38-macosx_10_15_x86_64.whl" + "hash": "1bf65742fd2fb563b0704f32b361d7f3ba44642acccd37838e39589e82ddbfc1", + "url": "https://files.pythonhosted.org/packages/23/5d/104342ce09b1c2fbc28164fe97ee81e0404a559d3768669c22dca3327245/pantsbuild.pants-2.16.0a1-cp37-cp37m-manylinux2014_x86_64.whl" }, { "algorithm": "sha256", - "hash": "4af3caec0de82c1444fc4a5d7f02d69572962da27feffa4509a2c9ce3cd03f6d", - "url": "https://files.pythonhosted.org/packages/41/b2/eadeb13e9ba9d4a1f31f83e0f0553f5e01ad74cbe1e0621c175882ba4c71/pantsbuild.pants-2.16.0a0-cp39-cp39-macosx_10_15_x86_64.whl" + "hash": "6c7f51db49f4006fda737e30ffce91da02079f89dbf2d6c4bd620271edcb1094", + "url": "https://files.pythonhosted.org/packages/3b/66/3e54bedadc3c9c963c65595cb96c4b052944a4eab4da798056d6562afc1c/pantsbuild.pants-2.16.0a1-cp38-cp38-manylinux2014_aarch64.whl" }, { "algorithm": "sha256", - "hash": "a6a30ff967004ab81b809b0e6af6d21867c6ddea8b7964fd164abee0adf62632", - "url": "https://files.pythonhosted.org/packages/74/f8/560d8d9c03ad9d228463e1fc5cd8f0080fb36d7260483f74a2bbd15d908f/pantsbuild.pants-2.16.0a0-cp39-cp39-macosx_11_0_arm64.whl" + "hash": "9c832068fa0b2434b9d9e7613a84983d2f5dac2ac5f2c67bf754c7a1ec128336", + "url": "https://files.pythonhosted.org/packages/3e/59/ed5cddc3e1e59710a7c463083086fa63a1a05ac6e4a94e798e130cbce1bd/pantsbuild.pants-2.16.0a1-cp38-cp38-macosx_10_15_x86_64.whl" }, { "algorithm": "sha256", - "hash": "054db42f5230f424789b3b43610da8a7ce0e69f07254b7d54c4fe5a8a4e293b6", - "url": "https://files.pythonhosted.org/packages/7c/93/285b44577e470b406b2ddf2c2f1f947fc58f405c4c6fed535bcf14a6c378/pantsbuild.pants-2.16.0a0-cp38-cp38-manylinux2014_x86_64.whl" + "hash": "7a9943accb463d63707f1140095cf971ca38d6758a805c754e95ca22fec28ef6", + "url": "https://files.pythonhosted.org/packages/53/e6/e310a0d8981fa30744fc15f2f5413ca680668e5f2c062f314dcd81690b11/pantsbuild.pants-2.16.0a1-cp39-cp39-manylinux2014_aarch64.whl" }, { "algorithm": "sha256", - "hash": "a491f892d5ad6cee970549324c85cba9228e04d96309034bc9a5763efa0a3c91", - "url": "https://files.pythonhosted.org/packages/a3/7c/a34d4292cea34c0f7af618511a56abfc3b44f3cb2278012d33434f7e7262/pantsbuild.pants-2.16.0a0-cp37-cp37m-macosx_10_15_x86_64.whl" + "hash": "f5ad2e828556ff8e8364a9b887ed9d09c2dbb337a71addc457b8c17c74e628c2", + "url": "https://files.pythonhosted.org/packages/70/0b/56da141a6ecd47ce792321641991d28d7cdc99993e33eb9b54a8be861e3e/pantsbuild.pants-2.16.0a1-cp39-cp39-macosx_11_0_arm64.whl" }, { "algorithm": "sha256", - "hash": "9aeb3ab0473fc959959fb366822127a3c47f60a5b49e4ffa1f82c584abfc0510", - "url": "https://files.pythonhosted.org/packages/a4/a0/3009303480b479cfb824e3e93cf58f9df8bd8f91f83b790ef3e93c372d7b/pantsbuild.pants-2.16.0a0-cp37-cp37m-manylinux2014_aarch64.whl" + "hash": "b4b9db074ffc70bc8e166f6828736188ef06e0ea8f286207462dae0ab24ea059", + "url": "https://files.pythonhosted.org/packages/aa/9e/f2b6fe0f5c4d03294161e6e3ea75e40a1c35fb3a0247905a7eb6023f39e5/pantsbuild.pants-2.16.0a1-cp38-cp38-manylinux2014_x86_64.whl" }, { "algorithm": "sha256", - "hash": "6ad74d48564ef46646f1bc189ddd3ad43fef44453fb7ecca6b0c50f85e860030", - "url": "https://files.pythonhosted.org/packages/c8/55/131e098f687a2d4cda67e053d52b7dfc155ebb9d4384a191cff1a2210565/pantsbuild.pants-2.16.0a0-cp39-cp39-manylinux2014_aarch64.whl" + "hash": "3261164cce8e99cb2cdf2bea19065bef845dd5fba537c83a9c99e601b255689f", + "url": "https://files.pythonhosted.org/packages/e7/37/219afab77c5bc9e4317b1f5a774988d14018ceda414ba4b04fef4f32b8ae/pantsbuild.pants-2.16.0a1-cp37-cp37m-manylinux2014_aarch64.whl" }, { "algorithm": "sha256", - "hash": "9516a80ad6def8f147a9bc1c3710ef38b8c714b3c735a9bedf06bf7052688a76", - "url": "https://files.pythonhosted.org/packages/dc/8c/65d81bb187dbb2909c51586553e8c76719592cedf5413c6a515c5d7cb5d6/pantsbuild.pants-2.16.0a0-cp38-cp38-manylinux2014_aarch64.whl" + "hash": "3be055b51782d4e5914969975691bb2625ca9b4d351d19fb32b4164aa6bb5458", + "url": "https://files.pythonhosted.org/packages/f1/18/dcf9a8e5ef6f41cf0460507a28f8f704edeb32b6a94040e55d4dc25b0684/pantsbuild.pants-2.16.0a1-cp37-cp37m-macosx_10_15_x86_64.whl" } ], "project_name": "pantsbuild-pants", @@ -690,7 +690,7 @@ "ijson==3.1.4", "importlib-resources==5.0.*", "packaging==21.3", - "pex==2.1.126", + "pex==2.1.130", "psutil==5.9.0", "python-lsp-jsonrpc==1.0.0", "setproctitle==1.3.2", @@ -702,35 +702,35 @@ "typing-extensions==4.3.0" ], "requires_python": "<3.10,>=3.7", - "version": "2.16.0a0" + "version": "2.16.0a1" }, { "artifacts": [ { "algorithm": "sha256", - "hash": "5ccc55209f86c7d9865692196c9439bfe4922c7481c70c497aee11c79b0686f1", - "url": "https://files.pythonhosted.org/packages/44/43/975340a69e502c3225c3a992888a0183a227065c849eaa5fc850bd773c14/pantsbuild.pants.testutil-2.16.0a0-py3-none-any.whl" + "hash": "b59d7431f617f26ecb73ec9cb40d084a139e2575da8aa54122dad9996d8bee63", + "url": "https://files.pythonhosted.org/packages/4c/2c/532cf7c73a9f27d6612c18ab5d9bf486e9bad62c662ee42471128247fb45/pantsbuild.pants.testutil-2.16.0a1-py3-none-any.whl" } ], "project_name": "pantsbuild-pants-testutil", "requires_dists": [ - "pantsbuild.pants==2.16.0a0", + "pantsbuild.pants==2.16.0a1", "pytest<7.1.0,>=6.2.4" ], "requires_python": "<3.10,>=3.7", - "version": "2.16.0a0" + "version": "2.16.0a1" }, { "artifacts": [ { "algorithm": "sha256", - "hash": "fef7b5536bc07a69388b64a419164b573e25d4aeae503091d832cb5603438e99", - "url": "https://files.pythonhosted.org/packages/66/43/8c5d97f4acbfb38fd3a0e46f235e6e9d9d20f224dffacecd2bb76093e3fd/pex-2.1.126-py2.py3-none-any.whl" + "hash": "7bd8e30a7ca36e59a44314a6d41b93601ee79efe73a695c0d46d764bcc7d9e46", + "url": "https://files.pythonhosted.org/packages/2c/fc/2a543ec5228e70a5bb331f03bbd4849a4c86209d94723d87b1b28af1e535/pex-2.1.130-py2.py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "3fcd6cf993815f2a2ad1d826ea194e35bca3c82f485f9886e9e681e400566b15", - "url": "https://files.pythonhosted.org/packages/75/b5/f12684a46ede450a44fa985ece3a310478208a7ff866c24b8b0b6e1ea089/pex-2.1.126.tar.gz" + "hash": "789fa35bd3c015f167c667d668bf518327b1f0fba27120e4f8b97b06c34dca3c", + "url": "https://files.pythonhosted.org/packages/1b/75/2e2b46b62a112b4073fb5dd64dabe2ce78558fdfc5c2324825ebb81fa65f/pex-2.1.130.tar.gz" } ], "project_name": "pex", @@ -738,7 +738,7 @@ "subprocess32>=3.2.7; extra == \"subprocess\" and python_version < \"3\"" ], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<3.12,>=2.7", - "version": "2.1.126" + "version": "2.1.130" }, { "artifacts": [ diff --git a/lockfiles/pylint.lock b/lockfiles/pylint.lock index 7939e53bc4..6518faff98 100644 --- a/lockfiles/pylint.lock +++ b/lockfiles/pylint.lock @@ -6,7 +6,7 @@ // { // "version": 3, // "valid_for_interpreter_constraints": [ -// "CPython<3.9,>=3.6" +// "CPython<3.10,>=3.6" // ], // "generated_with_requirements": [ // "astroid", @@ -72,7 +72,7 @@ "requirementslib; extra == \"pipfile_deprecated_finder\"" ], "requires_python": "<4.0,>=3.6", - "version": "5.8" + "version": "5.8.0" }, { "artifacts": [ @@ -91,6 +91,11 @@ "hash": "553b0f0d8dbf21890dd66edd771f9b1b5f51bd912fa5f26de4449bfc5af5e029", "url": "https://files.pythonhosted.org/packages/1d/45/f5304f3b32c3333af45f880b814cd9b310a03d3c2a5b36b2826b27d15b71/lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "39b0e26725c5023757fc1ab2a89ef9d7ab23b84f9251e28f9cc114d5b59c1b09", + "url": "https://files.pythonhosted.org/packages/28/25/a4c87ad33bf3fcc9f3b30a23ddd08fa31974c66509f2684e51e0af04c767/lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "91ba172fc5b03978764d1df5144b4ba4ab13290d7bab7a50f12d8117f8630c38", @@ -111,11 +116,26 @@ "hash": "07fa44286cda977bd4803b656ffc1c9b7e3bc7dff7d34263446aec8f8c96f88a", "url": "https://files.pythonhosted.org/packages/5c/96/2c984706be60a1671177f57ba9f6b17a11b4cbf1b6704f3839ad6addc284/lazy_object_proxy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "dd7ed7429dbb6c494aa9bc4e09d94b778a3579be699f9d67da7e6804c422d3de", + "url": "https://files.pythonhosted.org/packages/61/08/2b64bc9c9807e9f996f9562f43d6737cf5a5ecc5be2081a13fe50b9479c0/lazy_object_proxy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "7096a5e0c1115ec82641afbdd70451a144558ea5cf564a896294e346eb611be1", + "url": "https://files.pythonhosted.org/packages/69/b8/b97b53de2c3f62cecf8f79ae64f209714034cb888a3b76a0c8fc10728161/lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", "hash": "d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4", "url": "https://files.pythonhosted.org/packages/75/93/3fc1cc28f71dd10b87a53b9d809602d7730e84cc4705a062def286232a9c/lazy-object-proxy-1.7.1.tar.gz" }, + { + "algorithm": "sha256", + "hash": "70ed0c2b380eb6248abdef3cd425fc52f0abd92d2b07ce26359fcbc399f636ad", + "url": "https://files.pythonhosted.org/packages/79/18/c13e90a35cc6bba07ff53ae9c6f7da739a2e143eddc487ff1c92686bf595/lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "c4ce15276a1a14549d7e81c243b887293904ad2d94ad767f42df91e75fd7b5b6", @@ -131,6 +151,11 @@ "hash": "46ff647e76f106bb444b4533bb4153c7370cdf52efc62ccfc1a28bdb3cc95442", "url": "https://files.pythonhosted.org/packages/ae/e2/ff13e38604d080904529c11ad63b580de9102b0966b3c623131e38fe31c2/lazy_object_proxy-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "f769457a639403073968d118bc70110e7dce294688009f5c24ab78800ae56dc8", + "url": "https://files.pythonhosted.org/packages/be/0d/b34afd15214c7a70b246d9de36cf912dab5bac0c34d84ab1e8ab21d49239/lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_aarch64.whl" + }, { "algorithm": "sha256", "hash": "6ecbb350991d6434e1388bee761ece3260e5228952b1f0c46ffc800eb313ff42", @@ -252,7 +277,7 @@ "wheel; extra == \"testing\"" ], "requires_python": ">=3.6", - "version": "59.6" + "version": "59.6.0" }, { "artifacts": [ @@ -276,8 +301,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39", - "url": "https://files.pythonhosted.org/packages/13/25/bde133fcd73e4c74e9a8de8410fe867aaca843838b83cc22304eec960fbc/typed_ast-1.4.3-cp38-cp38-manylinux2014_aarch64.whl" + "hash": "b9574c6f03f685070d859e75c7f9eeca02d6933273b5e69572e5ff9d5e3931c3", + "url": "https://files.pythonhosted.org/packages/62/9f/55f7378ecae81cbebc586dc15d48285141a026241704b1df6f043613218f/typed_ast-1.4.3-cp39-cp39-manylinux2014_aarch64.whl" }, { "algorithm": "sha256", @@ -289,6 +314,11 @@ "hash": "7538e495704e2ccda9b234b82423a4038f324f3a10c43bc088a1636180f11a41", "url": "https://files.pythonhosted.org/packages/0d/14/d54fd856673e3a5cb230e481bcdea04976c28b691a65029a7d45aef80575/typed_ast-1.4.3-cp38-cp38-manylinux1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39", + "url": "https://files.pythonhosted.org/packages/13/25/bde133fcd73e4c74e9a8de8410fe867aaca843838b83cc22304eec960fbc/typed_ast-1.4.3-cp38-cp38-manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "5feca99c17af94057417d744607b82dd0a664fd5e4ca98061480fd8b14b18d04", @@ -309,6 +339,16 @@ "hash": "f8afcf15cc511ada719a88e013cec87c11aff7b91f019295eb4530f96fe5ef2f", "url": "https://files.pythonhosted.org/packages/86/aa/29546548ed3affef704d9aabb95d7032bae8814bbf0e2323e48d353ed234/typed_ast-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "2c726c276d09fc5c414693a2de063f521052d9ea7c240ce553316f70656c84d4", + "url": "https://files.pythonhosted.org/packages/96/b0/0d26e87c8beefd839e466b4b3507c8ba826b2ee8d3d7ad049618f60d3b2e/typed_ast-1.4.3-cp39-cp39-manylinux1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "f328adcfebed9f11301eaedfa48e15bdece9b519fb27e6a8c01aa52a17ec31b3", + "url": "https://files.pythonhosted.org/packages/b2/98/c818c3024a0d44558a53941671dea7d14c690e74aa02fe2b7976d16275d1/typed_ast-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "760ad187b1041a154f0e4d0f6aae3e40fdb51d6de16e5c99aedadd9246450e9e", @@ -319,6 +359,11 @@ "hash": "067a74454df670dcaa4e59349a2e5c81e567d8d65458d480a5b3dfecec08c5ff", "url": "https://files.pythonhosted.org/packages/b8/98/9f31fcc91c54b9ae80f5fa48352b6a22ed04b399037d87d0ecbca5b67d21/typed_ast-1.4.3-cp38-cp38-manylinux1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "cae53c389825d3b46fb37538441f75d6aecc4174f615d048321b716df2757fb0", + "url": "https://files.pythonhosted.org/packages/d0/c7/7a26ab66c32558dac761ea88d79c4175d99231db9ebb9e09c0c354bba612/typed_ast-1.4.3-cp39-cp39-manylinux1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "95431a26309a21874005845c21118c83991c63ea800dd44843e42a916aec5899", @@ -363,7 +408,7 @@ } ], "path_mappings": {}, - "pex_version": "2.1.108", + "pex_version": "2.1.126", "pip_version": "20.3.4-patched", "prefer_older_binary": false, "requirements": [ @@ -372,7 +417,7 @@ "setuptools" ], "requires_python": [ - "<3.9,>=3.6" + "<3.10,>=3.6" ], "resolver_version": "pip-2020-resolver", "style": "universal", diff --git a/lockfiles/pylint_plugins.lock b/lockfiles/pylint_plugins.lock index 69804f4dac..9c724fc203 100644 --- a/lockfiles/pylint_plugins.lock +++ b/lockfiles/pylint_plugins.lock @@ -6,7 +6,7 @@ // { // "version": 3, // "valid_for_interpreter_constraints": [ -// "CPython<3.9,>=3.6" +// "CPython<3.10,>=3.6" // ], // "generated_with_requirements": [ // "astroid", @@ -72,7 +72,7 @@ "requirementslib; extra == \"pipfile_deprecated_finder\"" ], "requires_python": "<4.0,>=3.6", - "version": "5.8" + "version": "5.8.0" }, { "artifacts": [ @@ -91,6 +91,11 @@ "hash": "553b0f0d8dbf21890dd66edd771f9b1b5f51bd912fa5f26de4449bfc5af5e029", "url": "https://files.pythonhosted.org/packages/1d/45/f5304f3b32c3333af45f880b814cd9b310a03d3c2a5b36b2826b27d15b71/lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "39b0e26725c5023757fc1ab2a89ef9d7ab23b84f9251e28f9cc114d5b59c1b09", + "url": "https://files.pythonhosted.org/packages/28/25/a4c87ad33bf3fcc9f3b30a23ddd08fa31974c66509f2684e51e0af04c767/lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "91ba172fc5b03978764d1df5144b4ba4ab13290d7bab7a50f12d8117f8630c38", @@ -111,11 +116,26 @@ "hash": "07fa44286cda977bd4803b656ffc1c9b7e3bc7dff7d34263446aec8f8c96f88a", "url": "https://files.pythonhosted.org/packages/5c/96/2c984706be60a1671177f57ba9f6b17a11b4cbf1b6704f3839ad6addc284/lazy_object_proxy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "dd7ed7429dbb6c494aa9bc4e09d94b778a3579be699f9d67da7e6804c422d3de", + "url": "https://files.pythonhosted.org/packages/61/08/2b64bc9c9807e9f996f9562f43d6737cf5a5ecc5be2081a13fe50b9479c0/lazy_object_proxy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "7096a5e0c1115ec82641afbdd70451a144558ea5cf564a896294e346eb611be1", + "url": "https://files.pythonhosted.org/packages/69/b8/b97b53de2c3f62cecf8f79ae64f209714034cb888a3b76a0c8fc10728161/lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", "hash": "d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4", "url": "https://files.pythonhosted.org/packages/75/93/3fc1cc28f71dd10b87a53b9d809602d7730e84cc4705a062def286232a9c/lazy-object-proxy-1.7.1.tar.gz" }, + { + "algorithm": "sha256", + "hash": "70ed0c2b380eb6248abdef3cd425fc52f0abd92d2b07ce26359fcbc399f636ad", + "url": "https://files.pythonhosted.org/packages/79/18/c13e90a35cc6bba07ff53ae9c6f7da739a2e143eddc487ff1c92686bf595/lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "c4ce15276a1a14549d7e81c243b887293904ad2d94ad767f42df91e75fd7b5b6", @@ -131,6 +151,11 @@ "hash": "46ff647e76f106bb444b4533bb4153c7370cdf52efc62ccfc1a28bdb3cc95442", "url": "https://files.pythonhosted.org/packages/ae/e2/ff13e38604d080904529c11ad63b580de9102b0966b3c623131e38fe31c2/lazy_object_proxy-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "f769457a639403073968d118bc70110e7dce294688009f5c24ab78800ae56dc8", + "url": "https://files.pythonhosted.org/packages/be/0d/b34afd15214c7a70b246d9de36cf912dab5bac0c34d84ab1e8ab21d49239/lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_aarch64.whl" + }, { "algorithm": "sha256", "hash": "6ecbb350991d6434e1388bee761ece3260e5228952b1f0c46ffc800eb313ff42", @@ -252,7 +277,7 @@ "wheel; extra == \"testing\"" ], "requires_python": ">=3.6", - "version": "59.6" + "version": "59.6.0" }, { "artifacts": [ @@ -276,8 +301,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39", - "url": "https://files.pythonhosted.org/packages/13/25/bde133fcd73e4c74e9a8de8410fe867aaca843838b83cc22304eec960fbc/typed_ast-1.4.3-cp38-cp38-manylinux2014_aarch64.whl" + "hash": "b9574c6f03f685070d859e75c7f9eeca02d6933273b5e69572e5ff9d5e3931c3", + "url": "https://files.pythonhosted.org/packages/62/9f/55f7378ecae81cbebc586dc15d48285141a026241704b1df6f043613218f/typed_ast-1.4.3-cp39-cp39-manylinux2014_aarch64.whl" }, { "algorithm": "sha256", @@ -289,6 +314,11 @@ "hash": "7538e495704e2ccda9b234b82423a4038f324f3a10c43bc088a1636180f11a41", "url": "https://files.pythonhosted.org/packages/0d/14/d54fd856673e3a5cb230e481bcdea04976c28b691a65029a7d45aef80575/typed_ast-1.4.3-cp38-cp38-manylinux1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39", + "url": "https://files.pythonhosted.org/packages/13/25/bde133fcd73e4c74e9a8de8410fe867aaca843838b83cc22304eec960fbc/typed_ast-1.4.3-cp38-cp38-manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "5feca99c17af94057417d744607b82dd0a664fd5e4ca98061480fd8b14b18d04", @@ -309,6 +339,16 @@ "hash": "f8afcf15cc511ada719a88e013cec87c11aff7b91f019295eb4530f96fe5ef2f", "url": "https://files.pythonhosted.org/packages/86/aa/29546548ed3affef704d9aabb95d7032bae8814bbf0e2323e48d353ed234/typed_ast-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "2c726c276d09fc5c414693a2de063f521052d9ea7c240ce553316f70656c84d4", + "url": "https://files.pythonhosted.org/packages/96/b0/0d26e87c8beefd839e466b4b3507c8ba826b2ee8d3d7ad049618f60d3b2e/typed_ast-1.4.3-cp39-cp39-manylinux1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "f328adcfebed9f11301eaedfa48e15bdece9b519fb27e6a8c01aa52a17ec31b3", + "url": "https://files.pythonhosted.org/packages/b2/98/c818c3024a0d44558a53941671dea7d14c690e74aa02fe2b7976d16275d1/typed_ast-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "760ad187b1041a154f0e4d0f6aae3e40fdb51d6de16e5c99aedadd9246450e9e", @@ -319,6 +359,11 @@ "hash": "067a74454df670dcaa4e59349a2e5c81e567d8d65458d480a5b3dfecec08c5ff", "url": "https://files.pythonhosted.org/packages/b8/98/9f31fcc91c54b9ae80f5fa48352b6a22ed04b399037d87d0ecbca5b67d21/typed_ast-1.4.3-cp38-cp38-manylinux1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "cae53c389825d3b46fb37538441f75d6aecc4174f615d048321b716df2757fb0", + "url": "https://files.pythonhosted.org/packages/d0/c7/7a26ab66c32558dac761ea88d79c4175d99231db9ebb9e09c0c354bba612/typed_ast-1.4.3-cp39-cp39-manylinux1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "95431a26309a21874005845c21118c83991c63ea800dd44843e42a916aec5899", @@ -363,7 +408,7 @@ } ], "path_mappings": {}, - "pex_version": "2.1.108", + "pex_version": "2.1.126", "pip_version": "20.3.4-patched", "prefer_older_binary": false, "requirements": [ @@ -372,7 +417,7 @@ "setuptools" ], "requires_python": [ - "<3.9,>=3.6" + "<3.10,>=3.6" ], "resolver_version": "pip-2020-resolver", "style": "universal", diff --git a/lockfiles/pytest.lock b/lockfiles/pytest.lock index b22b835798..f247570d7c 100644 --- a/lockfiles/pytest.lock +++ b/lockfiles/pytest.lock @@ -6,8 +6,8 @@ // { // "version": 3, // "valid_for_interpreter_constraints": [ -// "CPython<3.10,>=3.7", -// "CPython<3.9,>=3.6" +// "CPython<3.10,>=3.6", +// "CPython<3.10,>=3.7" // ], // "generated_with_requirements": [ // "pygments", @@ -37,51 +37,47 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c", - "url": "https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl" + "hash": "29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836", + "url": "https://files.pythonhosted.org/packages/fb/6e/6f83bf616d2becdf333a1640f1d463fef3150e2e926b7010cb0f81c95e88/attrs-22.2.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6", - "url": "https://files.pythonhosted.org/packages/1a/cb/c4ffeb41e7137b23755a45e1bfec9cbb76ecf51874c6f1d113984ecaa32c/attrs-22.1.0.tar.gz" + "hash": "c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99", + "url": "https://files.pythonhosted.org/packages/21/31/3f468da74c7de4fcf9b25591e682856389b3400b4b62f201e65f15ea3e07/attrs-22.2.0.tar.gz" } ], "project_name": "attrs", "requires_dists": [ - "cloudpickle; platform_python_implementation == \"CPython\" and extra == \"dev\"", - "cloudpickle; platform_python_implementation == \"CPython\" and extra == \"tests\"", + "attrs[docs,tests]; extra == \"dev\"", + "attrs[tests-no-zope]; extra == \"tests\"", + "attrs[tests]; extra == \"cov\"", + "cloudpickle; platform_python_implementation == \"CPython\" and extra == \"tests-no-zope\"", "cloudpickle; platform_python_implementation == \"CPython\" and extra == \"tests_no_zope\"", - "coverage[toml]>=5.0.2; extra == \"dev\"", - "coverage[toml]>=5.0.2; extra == \"tests\"", - "coverage[toml]>=5.0.2; extra == \"tests_no_zope\"", - "furo; extra == \"dev\"", + "coverage-enable-subprocess; extra == \"cov\"", + "coverage[toml]>=5.3; extra == \"cov\"", "furo; extra == \"docs\"", - "hypothesis; extra == \"dev\"", - "hypothesis; extra == \"tests\"", + "hypothesis; extra == \"tests-no-zope\"", "hypothesis; extra == \"tests_no_zope\"", - "mypy!=0.940,>=0.900; extra == \"dev\"", - "mypy!=0.940,>=0.900; extra == \"tests\"", - "mypy!=0.940,>=0.900; extra == \"tests_no_zope\"", - "pre-commit; extra == \"dev\"", - "pympler; extra == \"dev\"", - "pympler; extra == \"tests\"", + "mypy<0.990,>=0.971; platform_python_implementation == \"CPython\" and extra == \"tests-no-zope\"", + "mypy<0.990,>=0.971; platform_python_implementation == \"CPython\" and extra == \"tests_no_zope\"", + "myst-parser; extra == \"docs\"", + "pympler; extra == \"tests-no-zope\"", "pympler; extra == \"tests_no_zope\"", - "pytest-mypy-plugins; extra == \"dev\"", - "pytest-mypy-plugins; extra == \"tests\"", - "pytest-mypy-plugins; extra == \"tests_no_zope\"", - "pytest>=4.3.0; extra == \"dev\"", - "pytest>=4.3.0; extra == \"tests\"", + "pytest-mypy-plugins; (platform_python_implementation == \"CPython\" and python_version < \"3.11\") and extra == \"tests-no-zope\"", + "pytest-mypy-plugins; (platform_python_implementation == \"CPython\" and python_version < \"3.11\") and extra == \"tests_no_zope\"", + "pytest-xdist[psutil]; extra == \"tests-no-zope\"", + "pytest-xdist[psutil]; extra == \"tests_no_zope\"", + "pytest>=4.3.0; extra == \"tests-no-zope\"", "pytest>=4.3.0; extra == \"tests_no_zope\"", - "sphinx-notfound-page; extra == \"dev\"", "sphinx-notfound-page; extra == \"docs\"", - "sphinx; extra == \"dev\"", "sphinx; extra == \"docs\"", - "zope.interface; extra == \"dev\"", + "sphinxcontrib-towncrier; extra == \"docs\"", + "towncrier; extra == \"docs\"", "zope.interface; extra == \"docs\"", "zope.interface; extra == \"tests\"" ], - "requires_python": ">=3.5", - "version": "22.1" + "requires_python": ">=3.6", + "version": "22.2.0" }, { "artifacts": [ @@ -246,20 +242,20 @@ "pre-commit; extra == \"testing\"" ], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", - "version": "1.9" + "version": "1.9.0" }, { "artifacts": [ { "algorithm": "sha256", - "hash": "35d24b728e48b7e0a12bdb69386d3bfc7eef4fe922d0ac1cd70d6e5c11630bae", - "url": "https://files.pythonhosted.org/packages/fd/d5/3ab4777d15535bf712e1d3509b7bdfc01ed4da7c935679f84bd454fbb0fe/icdiff-2.0.5.tar.gz" + "hash": "a2673b335d671e64fc73c44e1eaa0aa01fd0e68354e58ee17e863ab29912a79a", + "url": "https://files.pythonhosted.org/packages/b6/11/542ff30f2c399d71126e55b64d41cb5caa78ddf7ce557fddf45607a41fe8/icdiff-2.0.6.tar.gz" } ], "project_name": "icdiff", "requires_dists": [], "requires_python": null, - "version": "2.0.5" + "version": "2.0.6" }, { "artifacts": [ @@ -359,7 +355,7 @@ "tox; extra == \"dev\"" ], "requires_python": ">=3.6", - "version": "1" + "version": "1.0.0" }, { "artifacts": [ @@ -377,7 +373,7 @@ "project_name": "pprintpp", "requires_dists": [], "requires_python": null, - "version": "0.4" + "version": "0.4.0" }, { "artifacts": [ @@ -395,7 +391,7 @@ "project_name": "py", "requires_dists": [], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7", - "version": "1.11" + "version": "1.11.0" }, { "artifacts": [ @@ -413,7 +409,7 @@ "project_name": "py-cpuinfo", "requires_dists": [], "requires_python": null, - "version": "9" + "version": "9.0.0" }, { "artifacts": [ @@ -450,7 +446,7 @@ "sphinx; extra == \"docs\"" ], "requires_python": null, - "version": "3" + "version": "3.0.0" }, { "artifacts": [ @@ -474,13 +470,13 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "f643f331ab57ba3c9d89212ee4a2dabc6e94f117cf4eefde99a0574720d14c42", - "url": "https://files.pythonhosted.org/packages/4f/82/672cd382e5b39ab1cd422a672382f08a1fb3d08d9e0c0f3707f33a52063b/Pygments-2.13.0-py3-none-any.whl" + "hash": "fa7bd7bd2771287c0de303af8bfdfc731f51bd2c6a47ab69d117138893b82717", + "url": "https://files.pythonhosted.org/packages/0b/42/d9d95cc461f098f204cd20c85642ae40fbff81f74c300341b8d0e0df14e0/Pygments-2.14.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "56a8508ae95f98e2b9bdf93a6be5ae3f7d8af858b43e02c5a2ff083726be40c1", - "url": "https://files.pythonhosted.org/packages/e0/ef/5905cd3642f2337d44143529c941cc3a02e5af16f0f65f81cbef7af452bb/Pygments-2.13.0.tar.gz" + "hash": "b3ed06a9e8ac9a9aae5a6f5dbe78a8a58655d17b43b93c078f094ddc476ae297", + "url": "https://files.pythonhosted.org/packages/da/6a/c427c06913204e24de28de5300d3f0e809933f376e0b7df95194b2bb3f71/Pygments-2.14.0.tar.gz" } ], "project_name": "pygments", @@ -488,7 +484,7 @@ "importlib-metadata; python_version < \"3.8\" and extra == \"plugins\"" ], "requires_python": ">=3.6", - "version": "2.13" + "version": "2.14.0" }, { "artifacts": [ @@ -598,7 +594,7 @@ "virtualenv; extra == \"testing\"" ], "requires_python": ">=3.6", - "version": "3" + "version": "3.0.0" }, { "artifacts": [ @@ -619,7 +615,7 @@ "pytest>=3.10" ], "requires_python": ">=3.6", - "version": "1.4" + "version": "1.4.0" }, { "artifacts": [ @@ -661,7 +657,7 @@ "setproctitle; extra == \"setproctitle\"" ], "requires_python": ">=3.6", - "version": "2.5" + "version": "2.5.0" }, { "artifacts": [ @@ -728,14 +724,14 @@ "sphinx; extra == \"docs\"" ], "requires_python": ">=3.6", - "version": "3.6" + "version": "3.6.0" } ], "platform_tag": null } ], "path_mappings": {}, - "pex_version": "2.1.108", + "pex_version": "2.1.126", "pip_version": "20.3.4-patched", "prefer_older_binary": false, "requirements": [ @@ -747,8 +743,8 @@ "pytest==7.0.1" ], "requires_python": [ - "<3.10,>=3.7", - "<3.9,>=3.6" + "<3.10,>=3.6", + "<3.10,>=3.7" ], "resolver_version": "pip-2020-resolver", "style": "universal", diff --git a/lockfiles/setuptools.lock b/lockfiles/setuptools.lock index ab6cefa08d..9e275c74c4 100644 --- a/lockfiles/setuptools.lock +++ b/lockfiles/setuptools.lock @@ -6,7 +6,7 @@ // { // "version": 3, // "valid_for_interpreter_constraints": [ -// "CPython<3.9,>=3.6" +// "CPython<3.10,>=3.6" // ], // "generated_with_requirements": [ // "setuptools<59.0,>=50.3.0", @@ -99,7 +99,7 @@ } ], "path_mappings": {}, - "pex_version": "2.1.108", + "pex_version": "2.1.126", "pip_version": "20.3.4-patched", "prefer_older_binary": false, "requirements": [ @@ -107,7 +107,7 @@ "wheel<0.38,>=0.35.1" ], "requires_python": [ - "<3.9,>=3.6" + "<3.10,>=3.6" ], "resolver_version": "pip-2020-resolver", "style": "universal", diff --git a/lockfiles/st2.lock b/lockfiles/st2.lock index a7d153faf8..941be843d2 100644 --- a/lockfiles/st2.lock +++ b/lockfiles/st2.lock @@ -6,7 +6,7 @@ // { // "version": 3, // "valid_for_interpreter_constraints": [ -// "CPython<3.9,>=3.6" +// "CPython<3.10,>=3.6" // ], // "generated_with_requirements": [ // "PyYAML", @@ -173,29 +173,27 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "17041f55b8c45099428df6ce6d0d282b892471a78c71375d24f227e21c13f8c5", - "url": "https://files.pythonhosted.org/packages/d9/40/13aea82bbe95c0f9f3c4ba21bdaf3ff12f405353b640d347cda55a23778a/argcomplete-2.1.1-py3-none-any.whl" + "hash": "e858595eee91732440e7291dbb49ae73d3fb9bfcc073429a16d54b7b374a7a3d", + "url": "https://files.pythonhosted.org/packages/ef/51/f03fd5e3ff83a57336a201d7888e9da66c7061edd429ab676b4ae5fc30aa/argcomplete-3.0.5-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "72e08340852d32544459c0c19aad1b48aa2c3a96de8c6e5742456b4f538ca52f", - "url": "https://files.pythonhosted.org/packages/ac/43/b4ac2e533f86b96414a471589948da660925b95b50b1296bd25cd50c0e3e/argcomplete-2.1.1.tar.gz" + "hash": "fe3ce77125f434a0dd1bffe5f4643e64126d5731ce8d173d36f62fa43d6eb6f7", + "url": "https://files.pythonhosted.org/packages/9d/50/e5b3e9824a387920c4b92870359c9f7dbf21a6cd6d3dff5bf4fd3b50237a/argcomplete-3.0.5.tar.gz" } ], "project_name": "argcomplete", "requires_dists": [ "coverage; extra == \"test\"", - "flake8; extra == \"lint\"", - "flake8; extra == \"test\"", "importlib-metadata<6,>=0.23; python_version == \"3.6\"", "importlib-metadata<6,>=0.23; python_version == \"3.7\"", - "mypy; extra == \"lint\"", "mypy; extra == \"test\"", "pexpect; extra == \"test\"", + "ruff; extra == \"test\"", "wheel; extra == \"test\"" ], "requires_python": ">=3.6", - "version": "2.1.1" + "version": "3.0.5" }, { "artifacts": [ @@ -399,13 +397,13 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "0e79446b10b3ecb499c1556f7e228a53e64a2bfcebd455f370d8927cb5b59e39", - "url": "https://files.pythonhosted.org/packages/c6/ee/16d6f808f5668317d7c23f942091fbc694bcded6aa39678e5167f61b2ba0/beautifulsoup4-4.11.2-py3-none-any.whl" + "hash": "2130a5ad7f513200fae61a17abb5e338ca980fa28c439c0571014bc0217e9591", + "url": "https://files.pythonhosted.org/packages/ee/a7/06b189a2e280e351adcef25df532af3c59442123187e228b960ab3238687/beautifulsoup4-4.12.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "bc4bdda6717de5a2987436fb8d72f45dc90dd856bdfd512a1314ce90349a0106", - "url": "https://files.pythonhosted.org/packages/75/f8/de84282681c5a8307f3fff67b64641627b2652752d49d9222b77400d02b8/beautifulsoup4-4.11.2.tar.gz" + "hash": "c5fceeaec29d09c84970e47c65f2f0efe57872f7cff494c9691a26ec0ff13234", + "url": "https://files.pythonhosted.org/packages/c5/4c/b5b7d6e1d4406973fb7f4e5df81c6f07890fa82548ac3b945deed1df9d48/beautifulsoup4-4.12.0.tar.gz" } ], "project_name": "beautifulsoup4", @@ -415,7 +413,7 @@ "soupsieve>1.2" ], "requires_python": ">=3.6.0", - "version": "4.11.2" + "version": "4.12.0" }, { "artifacts": [ @@ -475,8 +473,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "d2ad4d668a5c0645d281dcd17aff2be3212bc109b33814bbb15c4939f44181cc", - "url": "https://files.pythonhosted.org/packages/a5/30/d0d23e56afef51ca18de6b7099cf8b595cb5e90c50cc3fa44d1fac68e405/cffi-1.14.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" + "hash": "c9e005e9bd57bc987764c32a1bee4364c44fdc11a3cc20a40b93b444984f2b87", + "url": "https://files.pythonhosted.org/packages/00/b8/a127ffae2de749e0c0e3e10fc76a4f110abae64dbeb4b89247dfb6de7cab/cffi-1.14.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" }, { "algorithm": "sha256", @@ -498,11 +496,26 @@ "hash": "fd4305f86f53dfd8cd3522269ed7fc34856a8ee3709a5e28b2836b2db9d4cd69", "url": "https://files.pythonhosted.org/packages/46/5e/2f5f83be1586e04f4f14b32c48aafb29197355cca8f62d430f915706fafa/cffi-1.14.6-cp37-cp37m-manylinux1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "06c54a68935738d206570b20da5ef2b6b6d92b38ef3ec45c5422c0ebaf338d4d", + "url": "https://files.pythonhosted.org/packages/54/39/cc4587c7c179a545a454c2252a64a8ab0d76b28f347e66caa825c7b36ae6/cffi-1.14.6-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "e8c6a99be100371dbb046880e7a282152aa5d6127ae01783e37662ef73850d8f", "url": "https://files.pythonhosted.org/packages/62/84/16fcb8ed5d3347c14612e6dee2f577ab7de951696c6210bbf0c912015867/cffi-1.14.6-cp36-cp36m-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "f174135f5609428cc6e1b9090f9268f5c8935fddb1b25ccb8255a2d50de6789e", + "url": "https://files.pythonhosted.org/packages/6b/a9/c95f5cca87cdda74f544ecb7d9cdf3eb3eae883e210f3994677086528352/cffi-1.14.6-cp39-cp39-manylinux1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "4922cd707b25e623b902c86188aca466d3620892db76c0bdd7b99a3d5e61d35f", + "url": "https://files.pythonhosted.org/packages/79/bb/f05a6b0129ff445286e9ad76235eb479dae16917df7388ed549d3d99d136/cffi-1.14.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + }, { "algorithm": "sha256", "hash": "6d6169cb3c6c2ad50db5b868db6491a790300ade1ed5d1da29289d73bbe40b56", @@ -548,6 +561,16 @@ "hash": "4373612d59c404baeb7cbd788a18b2b2a8331abcc84c3ba40051fcd18b17a4d5", "url": "https://files.pythonhosted.org/packages/a2/4e/6225779f1ccb7916cd6c640ca4dbe6e0ce1452952bb822d66d5e875a6f53/cffi-1.14.6-cp37-cp37m-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "d2ad4d668a5c0645d281dcd17aff2be3212bc109b33814bbb15c4939f44181cc", + "url": "https://files.pythonhosted.org/packages/a5/30/d0d23e56afef51ca18de6b7099cf8b595cb5e90c50cc3fa44d1fac68e405/cffi-1.14.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" + }, + { + "algorithm": "sha256", + "hash": "f3ebe6e73c319340830a9b2825d32eb6d8475c1dac020b4f0aa774ee3b898d1c", + "url": "https://files.pythonhosted.org/packages/be/2a/6d266eea47dbb2d872bbd1b8954a2d167668481ff34ebb70ffdd1113eeab/cffi-1.14.6-cp39-cp39-manylinux1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "ba6f2b3f452e150945d58f4badd92310449876c4c954836cfb1803bdd7b422f0", @@ -558,6 +581,11 @@ "hash": "e9dc245e3ac69c92ee4c167fbdd7428ec1956d4e754223124991ef29eb57a09d", "url": "https://files.pythonhosted.org/packages/cf/7a/29571270ca3f59e5dfba88afb03d7a9d77eeeb8084cfb6574042c2eae777/cffi-1.14.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "3c8d896becff2fa653dc4438b54a5a25a971d1f4110b32bd3068db3722c80202", + "url": "https://files.pythonhosted.org/packages/d9/0a/c441c3f0ecb791c0b6b67b5df841bb50c46d5a7d088895abe9322375e8e0/cffi-1.14.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "5d4b68e216fc65e9fe4f524c177b54964af043dde734807586cf5435af84045c", @@ -618,14 +646,19 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "b9f7608a276fa46d28255906c341752a87fe5353d8060932e0ec71745148a4d8", - "url": "https://files.pythonhosted.org/packages/e0/2b/83532379a80e3a7084fb49d9bdbc568d22ac6a9e9213beca6cc735797081/ciso8601-2.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + "hash": "a3f781561401c8666accae823ed8f2a5d1fa50b3e65eb65c21a2bd0374e14f19", + "url": "https://files.pythonhosted.org/packages/20/05/384bf0a374a75cb90994e97d37e870dbc2480f6e5f061843a4c955cf779e/ciso8601-2.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }, { "algorithm": "sha256", "hash": "4cc04399f79a62338d4f4c19560d2b30f2d257021df1b0e55bae9209d8844c0c", "url": "https://files.pythonhosted.org/packages/04/09/3a96e57b8b45ee85cd3bbcefd1092fb8530d9d223768b115ab320d3db3e5/ciso8601-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "3b135cda50be4ed52e44e815794cb19b268baf75d6c2a2a34eb6c2851bbe9423", + "url": "https://files.pythonhosted.org/packages/04/77/a4d6bbced665329ea18b943348c08f49665fe4254dfbe654a0ce88677a8c/ciso8601-2.3.0-cp39-cp39-macosx_10_9_universal2.whl" + }, { "algorithm": "sha256", "hash": "19e3fbd786d8bec3358eac94d8774d365b694b604fd1789244b87083f66c8900", @@ -636,11 +669,21 @@ "hash": "374275a329138b9b70c857c9ea460f65dc7f01ed2513f991e57090f39bf01de5", "url": "https://files.pythonhosted.org/packages/05/d9/c20fd851d080ac6871d05394d25c889e730f3cb67d19b56bd3131aab5988/ciso8601-2.3.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "d39aa3d7148fcd9db1007c258e47c9e0174f383d82f5504b80db834c6215b7e4", + "url": "https://files.pythonhosted.org/packages/09/74/167a3f93c202c053bfa7f202363aabd3f377735ac0c93ff0e6a026c79365/ciso8601-2.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", "hash": "fa1085b47c15df627d6bea783a8f7c89a59268af85e204992a013df174b339aa", "url": "https://files.pythonhosted.org/packages/0d/09/388f503c7e71f1d9c11300f958b4df66e75a89d5d94cf329ba00431237b1/ciso8601-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "aa58f55ed5c8b1e9962b56b2ecbfcca32f056edf8ecdce73b6623c55a2fd11e8", + "url": "https://files.pythonhosted.org/packages/1a/e9/a80e8436a7c1ea0deb40ebbe56cb38fe721e1f000f4e33860b59082bcd97/ciso8601-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "8b1a217967083ac295d9239f5ba5235c66697fdadc2d5399c7bac53353218201", @@ -666,11 +709,21 @@ "hash": "2188dd4784d87e4008cc765c80e26a503450c57a98655321de777679c556b133", "url": "https://files.pythonhosted.org/packages/3d/e6/f531d64616e5c4423328a80c6457cacabd71b6acf8ff067229103107e497/ciso8601-2.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "e838b694b009e2d9b3b680008fa4c56e52f83935a31ea86fe4203dfff0086f88", + "url": "https://files.pythonhosted.org/packages/48/42/f0dfff48ba836a13fffa90b915ba76373f381f06245b47b12d6749c8c4ac/ciso8601-2.3.0-cp39-cp39-musllinux_1_1_i686.whl" + }, { "algorithm": "sha256", "hash": "7e8e78f8c7d35e6b43ad7316f652e2d53bf4b8798725d481abff14657852a88c", "url": "https://files.pythonhosted.org/packages/49/77/a36731b29d2a5beedacdfd311d2d96f637a0f5589cb008c40f2fde8087fa/ciso8601-2.3.0-cp38-cp38-macosx_10_9_universal2.whl" }, + { + "algorithm": "sha256", + "hash": "243ffcbee824ed74b21bd1cede72050d36095df5fad8f1704730669d2b0db5be", + "url": "https://files.pythonhosted.org/packages/75/15/09f68e148eb386576f7ae0d377dad0610b70805a507dc8ef251c46e1e369/ciso8601-2.3.0-cp39-cp39-macosx_11_0_arm64.whl" + }, { "algorithm": "sha256", "hash": "4e0fa37c6d58be990c10d537ed286a35c018b5f038039ad796cf2352bc26799e", @@ -686,6 +739,11 @@ "hash": "5817bd895c0d083c161ea38459de8e2b90d798de09769aaba003fe53c1418aba", "url": "https://files.pythonhosted.org/packages/89/84/7ed431b83014a78829398dc8142bd016b67b868640cd89f03c3290cc5ade/ciso8601-2.3.0-cp36-cp36m-musllinux_1_1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "b247b4a854119d438d28e0efd0258a5bb710be59ffeba3d2bea5bdab82f90ef3", + "url": "https://files.pythonhosted.org/packages/a3/fe/9e59fc93c66b8713a17cc704a8c99e5e21648abb7c13868f8f50cff9a176/ciso8601-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "2785f374388e48c21420e820295d36a8d0734542e4e7bd3899467dc4d56016da", @@ -700,6 +758,11 @@ "algorithm": "sha256", "hash": "b12d314415ba1e4e4bfcfa3db782335949ca1866a2b6fe22c47099fed9c82826", "url": "https://files.pythonhosted.org/packages/b5/67/8413042e109230e2746625228a4eaa792a21fef08be7636d4bcc4839af23/ciso8601-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "b9f7608a276fa46d28255906c341752a87fe5353d8060932e0ec71745148a4d8", + "url": "https://files.pythonhosted.org/packages/e0/2b/83532379a80e3a7084fb49d9bdbc568d22ac6a9e9213beca6cc735797081/ciso8601-2.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" } ], "project_name": "ciso8601", @@ -732,73 +795,78 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "103e8f7155f3ce2ffa0049fe60169878d47a4364b277906386f8de21c9234aa1", - "url": "https://files.pythonhosted.org/packages/1e/85/d5b768b45e564a66fc5ba6344145334208f01d64939adcb8c4032545d164/cryptography-39.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl" + "hash": "6f2bbd72f717ce33100e6467572abaedc61f1acb87b8d546001328d7f466b778", + "url": "https://files.pythonhosted.org/packages/0c/e1/4cd34c7eca5cf2420d0d2a050fae52dc47b36c3686943411a0f5e1958a27/cryptography-40.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "cf91e428c51ef692b82ce786583e214f58392399cf65c341bc7301d096fa3ba2", + "url": "https://files.pythonhosted.org/packages/10/2b/485100eb127268fcc72eaf3b0ee643523718b2a23f8ba3904ef027fdbbb2/cryptography-40.0.1-cp36-abi3-musllinux_1_1_x86_64.whl" }, { "algorithm": "sha256", - "hash": "ffd394c7896ed7821a6d13b24657c6a34b6e2650bd84ae063cf11ccffa4f1a97", - "url": "https://files.pythonhosted.org/packages/26/d2/85480f4e754375c6d8e4a18cc8d2f28ef1984cf2843395c4d1ea396331d3/cryptography-39.0.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + "hash": "2803f2f8b1e95f614419926c7e6f55d828afc614ca5ed61543877ae668cc3472", + "url": "https://files.pythonhosted.org/packages/15/d9/c679e9eda76bfc0d60c9d7a4084ca52d0631d9f24ef04f818012f6d1282e/cryptography-40.0.1.tar.gz" }, { "algorithm": "sha256", - "hash": "23df8ca3f24699167daf3e23e51f7ba7334d504af63a94af468f468b975b7dd7", - "url": "https://files.pythonhosted.org/packages/3c/0c/ac188ca210fbc02102d34ad8dba6956fe16fc566e5c5110a7f7bdbd30138/cryptography-39.0.2-cp36-abi3-macosx_10_12_x86_64.whl" + "hash": "7c872413353c70e0263a9368c4993710070e70ab3e5318d85510cc91cce77e7c", + "url": "https://files.pythonhosted.org/packages/3e/01/87993574bc3ee99770c34abdd03836b911729dd136b45abccd2e7351ac61/cryptography-40.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl" }, { "algorithm": "sha256", - "hash": "eb40fe69cfc6f5cdab9a5ebd022131ba21453cf7b8a7fd3631f45bbf52bed612", - "url": "https://files.pythonhosted.org/packages/3c/5a/6c180b745336f989e9b298e1790af0ef5b37640edb861fc536b5663726e3/cryptography-39.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl" + "hash": "d36bbeb99704aabefdca5aee4eba04455d7a27ceabd16f3b3ba9bdcc31da86c4", + "url": "https://files.pythonhosted.org/packages/6d/b9/5d1a8fc0a44f156bbf0f97adc56efe63222325b6e9b2a52522bb228e1954/cryptography-40.0.1-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl" }, { "algorithm": "sha256", - "hash": "d15809e0dbdad486f4ad0979753518f47980020b7a34e9fc56e8be4f60702fac", - "url": "https://files.pythonhosted.org/packages/6d/5b/516dc11fa0a638cb707293ad44cc1cb93924bb4b5ba03881dfdb819e23b0/cryptography-39.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl" + "hash": "0a4e3406cfed6b1f6d6e87ed243363652b2586b2d917b0609ca4f97072994405", + "url": "https://files.pythonhosted.org/packages/92/65/bead02abece1e8b3f0dee942e216cb42df2630aa7efb41d2831d99a9bb68/cryptography-40.0.1-cp36-abi3-manylinux_2_28_aarch64.whl" }, { "algorithm": "sha256", - "hash": "50cadb9b2f961757e712a9737ef33d89b8190c3ea34d0fb6675e00edbe35d074", - "url": "https://files.pythonhosted.org/packages/77/19/47d55b3f609fc03b6f80c63820996671dfccb28e1d07427dd81319d514d5/cryptography-39.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl" + "hash": "cd033d74067d8928ef00a6b1327c8ea0452523967ca4463666eeba65ca350d4c", + "url": "https://files.pythonhosted.org/packages/94/20/d0881962d7e85157339f9ddba2fb07db5318cd19a5ffb64dab3a479826ef/cryptography-40.0.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl" }, { "algorithm": "sha256", - "hash": "8f35c17bd4faed2bc7797d2a66cbb4f986242ce2e30340ab832e5d99ae60e011", - "url": "https://files.pythonhosted.org/packages/9c/30/e787edf59f35192799d340a0a36976870ce487ba32948f086c29dc5d54ab/cryptography-39.0.2-cp36-abi3-manylinux_2_28_aarch64.whl" + "hash": "9618a87212cb5200500e304e43691111570e1f10ec3f35569fdfcd17e28fd797", + "url": "https://files.pythonhosted.org/packages/a1/e0/4fa9f4d0c15040ea0b0c19f8442c62a5cebc4846db4a745177a85b7a6d82/cryptography-40.0.1-cp36-abi3-macosx_10_12_x86_64.whl" }, { "algorithm": "sha256", - "hash": "2725672bb53bb92dc7b4150d233cd4b8c59615cd8288d495eaa86db00d4e5c06", - "url": "https://files.pythonhosted.org/packages/c5/8a/6dcd53c995506d4ff0de3a7da2202715654493fd12d7875f2a43b3a44150/cryptography-39.0.2-cp36-abi3-macosx_10_12_universal2.whl" + "hash": "28d63d75bf7ae4045b10de5413fb1d6338616e79015999ad9cf6fc538f772d41", + "url": "https://files.pythonhosted.org/packages/b5/58/3e048b70b16f3cd662c06f6f165494bdb400716f686d177871c18ea9406b/cryptography-40.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl" }, { "algorithm": "sha256", - "hash": "5f8c682e736513db7d04349b4f6693690170f95aac449c56f97415c6980edef5", - "url": "https://files.pythonhosted.org/packages/d3/26/da69282ae3b350ee869536994e6816ac77057a7b5970068fabe56c644624/cryptography-39.0.2-cp36-abi3-musllinux_1_1_aarch64.whl" + "hash": "d8aa3609d337ad85e4eb9bb0f8bcf6e4409bfb86e706efa9a027912169e89122", + "url": "https://files.pythonhosted.org/packages/b6/2e/16f5531d29034554aeca5b6fafb83a2afc75e29666269233f26f9372af05/cryptography-40.0.1-cp36-abi3-musllinux_1_1_aarch64.whl" }, { "algorithm": "sha256", - "hash": "bc0521cce2c1d541634b19f3ac661d7a64f9555135e9d8af3980965be717fd4a", - "url": "https://files.pythonhosted.org/packages/d6/99/12d3b9c8df83b52799f9994da17bb67bb4565c418b3a8284ed1f79b692e1/cryptography-39.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + "hash": "1e0af458515d5e4028aad75f3bb3fe7a31e46ad920648cd59b64d3da842e4356", + "url": "https://files.pythonhosted.org/packages/c0/ea/76eb113bafc97f2e8d9872eda85eb59383892a3559ebbec7595753785fd2/cryptography-40.0.1-cp36-abi3-manylinux_2_28_x86_64.whl" }, { "algorithm": "sha256", - "hash": "d7d84a512a59f4412ca8549b01f94be4161c94efc598bf09d027d67826beddc0", - "url": "https://files.pythonhosted.org/packages/e8/5c/9e47aac90fb5923d09c413909af6bf6ad4af2bfeeff707a2485c3f2af8be/cryptography-39.0.2-cp36-abi3-musllinux_1_1_x86_64.whl" + "hash": "918cb89086c7d98b1b86b9fdb70c712e5a9325ba6f7d7cfb509e784e0cfc6917", + "url": "https://files.pythonhosted.org/packages/c7/0c/5eeec6973710b2dacff598be034b13f3812ca8a563e8b324b129a93d0214/cryptography-40.0.1-cp36-abi3-macosx_10_12_universal2.whl" }, { "algorithm": "sha256", - "hash": "b49a88ff802e1993b7f749b1eeb31134f03c8d5c956e3c125c75558955cda536", - "url": "https://files.pythonhosted.org/packages/f4/6d/1afb19efbe093f0b1af7a788bb8a693e495dc6c1d2139316b05b40f5e1dd/cryptography-39.0.2-cp36-abi3-manylinux_2_28_x86_64.whl" + "hash": "32057d3d0ab7d4453778367ca43e99ddb711770477c4f072a51b3ca69602780a", + "url": "https://files.pythonhosted.org/packages/ca/0b/43b7383dafd5e2aae27fa85655b73d520c50dee349bbf31e018d275806ee/cryptography-40.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl" }, { "algorithm": "sha256", - "hash": "e8a0772016feeb106efd28d4a328e77dc2edae84dfbac06061319fdb669ff828", - "url": "https://files.pythonhosted.org/packages/f7/c0/daaeedc40e3385f01bb1af8c001ac214dcea6716b61efebabf9066b6f619/cryptography-39.0.2-cp36-abi3-manylinux_2_24_x86_64.whl" + "hash": "3a4805a4ca729d65570a1b7cac84eac1e431085d40387b7d3bbaa47e39890b88", + "url": "https://files.pythonhosted.org/packages/e9/79/b258803f573bfb202e29f9f56cd73e2b2e2fee1fe2e9cdf03f388919d8cc/cryptography-40.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, { "algorithm": "sha256", - "hash": "bc5b871e977c8ee5a1bbc42fa8d19bcc08baf0c51cbf1586b0e87a2694dde42f", - "url": "https://files.pythonhosted.org/packages/fa/f3/f4b8c175ea9a1de650b0085858059050b7953a93d66c97ed89b93b232996/cryptography-39.0.2.tar.gz" + "hash": "63dac2d25c47f12a7b8aa60e528bfb3c51c5a6c5a9f7c86987909c6c79765554", + "url": "https://files.pythonhosted.org/packages/ed/d0/f7470892f9f496f3d403fca9b141367b1d5350fcd953ef5761674afafaa7/cryptography-40.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" } ], "project_name": "cryptography", @@ -807,7 +875,6 @@ "black; extra == \"pep8test\"", "cffi>=1.12", "check-manifest; extra == \"pep8test\"", - "hypothesis!=3.79.2,>=1.11.4; extra == \"test\"", "iso8601; extra == \"test\"", "mypy; extra == \"pep8test\"", "pretend; extra == \"test\"", @@ -819,19 +886,16 @@ "pytest-subtests; extra == \"test\"", "pytest-xdist; extra == \"test\"", "pytest>=6.2.0; extra == \"test\"", - "pytz; extra == \"test\"", "ruff; extra == \"pep8test\"", "setuptools-rust>=0.11.4; extra == \"sdist\"", "sphinx-rtd-theme>=1.1.1; extra == \"docs\"", "sphinx>=5.3.0; extra == \"docs\"", "sphinxcontrib-spelling>=4.0.1; extra == \"docstest\"", "tox; extra == \"tox\"", - "twine>=1.12.0; extra == \"docstest\"", - "types-pytz; extra == \"pep8test\"", - "types-requests; extra == \"pep8test\"" + "twine>=1.12.0; extra == \"docstest\"" ], "requires_python": ">=3.6", - "version": "39.0.2" + "version": "40.0.1" }, { "artifacts": [ @@ -1140,8 +1204,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "b0ef99cdbe2b682b9ccbb964743a6aca37905fda5e0452e5ee239b1654d37f2a", - "url": "https://files.pythonhosted.org/packages/6b/cd/84301cdf80360571f6aa77ac096f867ba98094fec2cb93e69c93d996b8f8/greenlet-2.0.2-cp38-cp38-musllinux_1_1_x86_64.whl" + "hash": "7efde645ca1cc441d6dc4b48c0f7101e8d86b54c8530141b09fd31cef5149ec9", + "url": "https://files.pythonhosted.org/packages/4d/b2/32f737e1fcf67b23351b4860489029df562b41d7ffb568a3e1ae610f7a9b/greenlet-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl" }, { "algorithm": "sha256", @@ -1153,6 +1217,11 @@ "hash": "2dd11f291565a81d71dab10b7033395b7a3a5456e637cf997a6f33ebdf06f8db", "url": "https://files.pythonhosted.org/packages/08/b1/0615df6393464d6819040124eb7bdff6b682f206a464b4537964819dcab4/greenlet-2.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "971ce5e14dc5e73715755d0ca2975ac88cfdaefcaab078a284fea6cfabf866df", + "url": "https://files.pythonhosted.org/packages/09/57/5fdd37939e0989a756a32d0a838409b68d1c5d348115e9c697f42ee4f87d/greenlet-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "e0f72c9ddb8cd28532185f54cc1453f2c16fb417a08b53a855c4e6a418edd099", @@ -1163,6 +1232,11 @@ "hash": "8eab883b3b2a38cc1e050819ef06a7e6344d4a990d24d45bc6f2cf959045a45b", "url": "https://files.pythonhosted.org/packages/0d/f6/2d406a22767029e785154071bef79b296f91b92d1c199ec3c2202386bf04/greenlet-2.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" }, + { + "algorithm": "sha256", + "hash": "561091a7be172ab497a3527602d467e2b3fbe75f9e783d8b8ce403fa414f71a6", + "url": "https://files.pythonhosted.org/packages/1d/a0/697653ea5e35acaf28e2a1246645ac512beb9b49a86b310fd0151b075342/greenlet-2.0.2-cp39-cp39-manylinux2010_x86_64.whl" + }, { "algorithm": "sha256", "hash": "e7c8dc13af7db097bed64a051d2dd49e9f0af495c26995c00a9ee842690d34c0", @@ -1173,6 +1247,11 @@ "hash": "18e98fb3de7dba1c0a852731c3070cf022d14f0d68b4c87a19cc1016f3bb8b33", "url": "https://files.pythonhosted.org/packages/1f/42/95800f165d20fb8269fe6a3ac494649718ede074b1d8a78f58ee2ebda27a/greenlet-2.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "1a819eef4b0e0b96bb0d98d797bef17dc1b4a10e8d7446be32d1da33e095dbb8", + "url": "https://files.pythonhosted.org/packages/20/28/c93ffaa75f3c907cd010bf44c5c18c7f8f4bb2409146bd67d538163e33b8/greenlet-2.0.2-cp39-cp39-musllinux_1_1_aarch64.whl" + }, { "algorithm": "sha256", "hash": "ba2956617f1c42598a308a84c6cf021a90ff3862eddafd20c3333d50f0edb45b", @@ -1183,6 +1262,11 @@ "hash": "2780572ec463d44c1d3ae850239508dbeb9fed38e294c68d19a24d925d9223ca", "url": "https://files.pythonhosted.org/packages/43/81/e0a656e3a417b172f834ba5a08dde02b55fd249416c1e933d62ffb6734d0/greenlet-2.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" }, + { + "algorithm": "sha256", + "hash": "be4ed120b52ae4d974aa40215fcdfde9194d63541c7ded40ee12eb4dda57b76b", + "url": "https://files.pythonhosted.org/packages/49/b8/3ee1723978245e6f0c087908689f424876803ec05555400681240ab2ab33/greenlet-2.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + }, { "algorithm": "sha256", "hash": "b864ba53912b6c3ab6bcb2beb19f19edd01a6bfcbdfe1f37ddd1778abfe75a30", @@ -1198,6 +1282,11 @@ "hash": "937e9020b514ceedb9c830c55d5c9872abc90f4b5862f89c0887033ae33c6f73", "url": "https://files.pythonhosted.org/packages/5a/30/5eab5cbb99263c7d8305657587381c84da2a71fddb07dd5efbfaeecf7264/greenlet-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "b0ef99cdbe2b682b9ccbb964743a6aca37905fda5e0452e5ee239b1654d37f2a", + "url": "https://files.pythonhosted.org/packages/6b/cd/84301cdf80360571f6aa77ac096f867ba98094fec2cb93e69c93d996b8f8/greenlet-2.0.2-cp38-cp38-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "acd2162a36d3de67ee896c43effcd5ee3de247eb00354db411feb025aa319857", @@ -1247,6 +1336,16 @@ "algorithm": "sha256", "hash": "f82d4d717d8ef19188687aa32b8363e96062911e63ba22a0cff7802a8e58e5f1", "url": "https://files.pythonhosted.org/packages/e6/0e/591ea935b63aa3aed3836976779e5d1324aa4b2961f7355ff5d1f296066b/greenlet-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "94c817e84245513926588caf1152e3b559ff794d505555211ca041f032abbb6b", + "url": "https://files.pythonhosted.org/packages/e9/29/2ae545c4c0218b042c2bb0760c0f65e114cca1ab5e552dc23b0f118e428a/greenlet-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "88d9ab96491d38a5ab7c56dd7a3cc37d83336ecc564e4e8816dbed12e5aaefc8", + "url": "https://files.pythonhosted.org/packages/f6/04/74e97d545f9276dee994b959eab3f7d70d77588e5aaedc383d15b0057acd/greenlet-2.0.2-cp39-cp39-macosx_11_0_x86_64.whl" } ], "project_name": "greenlet", @@ -1287,13 +1386,13 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "987c8bb3eb82d3fa60c68699510a692aa2ad9c4bd4f123e51dfb1488c14cdd01", - "url": "https://files.pythonhosted.org/packages/31/c9/4720a06cc961415e49735e672071b1da1621a347e14a9b1f3728a59a2cbd/httplib2-0.21.0-py3-none-any.whl" + "hash": "14ae0a53c1ba8f3d37e9e27cf37eabb0fb9980f435ba405d546948b009dd64dc", + "url": "https://files.pythonhosted.org/packages/a8/6c/d2fbdaaa5959339d53ba38e94c123e4e84b8fbc4b84beb0e70d7c1608486/httplib2-0.22.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "fc144f091c7286b82bec71bdbd9b27323ba709cc612568d3000893bfd9cb4b34", - "url": "https://files.pythonhosted.org/packages/c2/37/a093aaa902f6b2301f0f2cff5285548dbc4ab9b9a29215eb440381cbb32b/httplib2-0.21.0.tar.gz" + "hash": "d7a10bc5ef5ab08322488bde8c726eeee5c8618723fdb399597ec58f3d82df81", + "url": "https://files.pythonhosted.org/packages/3d/ad/2371116b22d616c194aa25ec410c9c6c37f23599dcd590502b74db197584/httplib2-0.22.0.tar.gz" } ], "project_name": "httplib2", @@ -1302,7 +1401,7 @@ "pyparsing<3,>=2.4.2; python_version < \"3.0\"" ], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7", - "version": "0.21.0" + "version": "0.22.0" }, { "artifacts": [ @@ -1685,8 +1784,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "6300b8454aa6930a24b9618fbb54b5a68135092bc666f7b06901f897fa5c2fee", - "url": "https://files.pythonhosted.org/packages/1f/44/ada8e01854175525e8e139278c3a52fec0ef720307cbd670bca86b473b56/MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl" + "hash": "5b6d930f030f8ed98e3e6c98ffa0652bdb82601e7a016ec2ab5d7ff23baa78d1", + "url": "https://files.pythonhosted.org/packages/3b/41/f53e2ac439b309d8bb017d12ee6e7d393aa70c508448c1f30a7e5db9d69e/MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl" }, { "algorithm": "sha256", @@ -1718,6 +1817,11 @@ "hash": "7d91275b0245b1da4d4cfa07e0faedd5b0812efc15b702576d103293e252af1b", "url": "https://files.pythonhosted.org/packages/1d/c5/1d1b42c65f96ee7b0c81761260878d1a1dc0afdf259e434b7d7af88a80a3/MarkupSafe-2.0.1-cp38-cp38-manylinux1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "6300b8454aa6930a24b9618fbb54b5a68135092bc666f7b06901f897fa5c2fee", + "url": "https://files.pythonhosted.org/packages/1f/44/ada8e01854175525e8e139278c3a52fec0ef720307cbd670bca86b473b56/MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "63f3268ba69ace99cab4e3e3b5840b03340efed0948ab8f78d2fd87ee5442a4f", @@ -1738,16 +1842,41 @@ "hash": "bf5d821ffabf0ef3533c39c518f3357b171a1651c1ff6827325e4489b0e46c3c", "url": "https://files.pythonhosted.org/packages/3f/43/72fd80844b2687e2c5aac95b64662ede122b8c3919b4c95488017ca8d2a9/MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "f5653a225f31e113b152e56f154ccbe59eeb1c7487b39b9d9f9cdb58e6c79dc5", + "url": "https://files.pythonhosted.org/packages/50/99/06eccf68be0bff67ab9a0b90b5382c04769f9ad2e42cae5e5e92f99380cd/MarkupSafe-2.0.1-cp39-cp39-manylinux1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "5bb28c636d87e840583ee3adeb78172efc47c8b26127267f54a9c0ec251d41a9", "url": "https://files.pythonhosted.org/packages/51/1e/45e25cd867fb79339c49086dad9794e11923dd6325251ae48c341b0a4271/MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_universal2.whl" }, + { + "algorithm": "sha256", + "hash": "4efca8f86c54b22348a5467704e3fec767b2db12fc39c6d963168ab1d3fc9135", + "url": "https://files.pythonhosted.org/packages/5a/ff/34bdcd8cc794f692588de0b3f4c1aa7ec0d17716fda9d874836ed68775c1/MarkupSafe-2.0.1-cp39-cp39-manylinux2010_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "53edb4da6925ad13c07b6d26c2a852bd81e364f95301c66e930ab2aef5b5ddd8", + "url": "https://files.pythonhosted.org/packages/66/66/b5891704372c9f5d97432933bdd7e9b5a0647fad9170c72bb7f486550c43/MarkupSafe-2.0.1-cp39-cp39-manylinux1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "37205cac2a79194e3750b0af2a5720d95f786a55ce7df90c3af697bfa100eaac", + "url": "https://files.pythonhosted.org/packages/67/e9/579a3ad8d48f7680f887ff1f22cc6330f083de23ce32a8fa35f8acef477a/MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" + }, { "algorithm": "sha256", "hash": "47ab1e7b91c098ab893b828deafa1203de86d0bc6ab587b160f78fe6c4011f75", "url": "https://files.pythonhosted.org/packages/68/ba/7a5ca0f9b4239e6fd846dd54c0b5928187355fa62fbdbd13e1c5942afae7/MarkupSafe-2.0.1-cp38-cp38-manylinux2010_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "ab3ef638ace319fa26553db0624c4699e31a28bb2a835c5faca8f8acf6a5a902", + "url": "https://files.pythonhosted.org/packages/6f/83/eabfb8c6d60b096dc9ada378cf935809289c4d0327b74a60789bde77e1db/MarkupSafe-2.0.1-cp39-cp39-manylinux2010_x86_64.whl" + }, { "algorithm": "sha256", "hash": "be98f628055368795d818ebf93da628541e10b75b41c559fdf36d104c5787066", @@ -1778,6 +1907,11 @@ "hash": "6557b31b5e2c9ddf0de32a691f2312a32f77cd7681d8af66c2692efdbef84c18", "url": "https://files.pythonhosted.org/packages/80/ec/e4272ac306ccc17062d253cb11f5c79c457f5e78b0e3c9f6adc989d507c0/MarkupSafe-2.0.1-cp37-cp37m-manylinux1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "4296f2b1ce8c86a6aea78613c34bb1a672ea0e3de9c6ba08a960efe0b0a09047", + "url": "https://files.pythonhosted.org/packages/8f/87/4668ce3963e942a9aa7b13212158e74bf063a2461138b7ed5a043ac6aa79/MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_aarch64.whl" + }, { "algorithm": "sha256", "hash": "01a9b8ea66f1658938f65b93a85ebe8bc016e6769611be228d797c9d998dd298", @@ -1798,11 +1932,26 @@ "hash": "b7f2d075102dc8c794cbde1947378051c4e5180d52d276987b8d28a3bd58c17d", "url": "https://files.pythonhosted.org/packages/a3/01/8d5fd91ccc1a61b7a9e2803819b8b60c3bac37290bbbd3df33d8d548f9c1/MarkupSafe-2.0.1-cp37-cp37m-manylinux2014_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "c47adbc92fc1bb2b3274c4b3a43ae0e4573d9fbff4f54cd484555edbf030baf1", + "url": "https://files.pythonhosted.org/packages/a6/d1/a7b97d0e000336c4e06bfce7e08dcb2b47fc5091146ee883dfac6cb4842e/MarkupSafe-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "9f02365d4e99430a12647f09b6cc8bab61a6564363f313126f775eb4f6ef798e", + "url": "https://files.pythonhosted.org/packages/a7/55/a576835b6b95af21d15f69eaf14c4fb1358fd48475f2b9813abd9654132e/MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_i686.whl" + }, { "algorithm": "sha256", "hash": "6a7fae0dd14cf60ad5ff42baa2e95727c3d81ded453457771d02b7d2b3f9c0c2", "url": "https://files.pythonhosted.org/packages/ad/cd/650b1be2a81674939ef962b1f1b956e4a84116d69708c842667445e95408/MarkupSafe-2.0.1-cp37-cp37m-manylinux2010_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "f8ba0e8349a38d3001fae7eadded3f6606f0da5d748ee53cc1dab1d6527b9509", + "url": "https://files.pythonhosted.org/packages/ae/70/8dd5f2c0aab82431c9c619a2c4fbd1742fc0fb769d8d7b275ae1d03eb3a5/MarkupSafe-2.0.1-cp39-cp39-manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "f0567c4dc99f264f49fe27da5f735f414c4e7e7dd850cfd8e69f0862d7c74ea9", @@ -1818,16 +1967,31 @@ "hash": "0955295dd5eec6cb6cc2fe1698f4c6d84af2e92de33fbcac4111913cd100a6ff", "url": "https://files.pythonhosted.org/packages/bf/a8/76f613645617c31dd4db1950057b0bab68e0b790c2dbb368c1971d38d87e/MarkupSafe-2.0.1-cp36-cp36m-manylinux1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "1f2ade76b9903f39aa442b4aadd2177decb66525062db244b35d71d0ee8599b6", + "url": "https://files.pythonhosted.org/packages/c2/db/314df69668f582d5173922bded7b58126044bb77cfce6347c5d992074d2e/MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + }, { "algorithm": "sha256", "hash": "5855f8438a7d1d458206a2466bf82b0f104a3724bf96a1c781ab731e4201731a", "url": "https://files.pythonhosted.org/packages/cc/f2/854d33eee85df681e61e22b52d8e83bef8b7425c0b9826212289f7885710/MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" }, + { + "algorithm": "sha256", + "hash": "3c112550557578c26af18a1ccc9e090bfe03832ae994343cfdacd287db6a6ae7", + "url": "https://files.pythonhosted.org/packages/ce/a7/835a636047f4bb4fea31a682c18affad9795e864d800892bd7248485425e/MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "49e3ceeabbfb9d66c3aef5af3a60cc43b85c33df25ce03d0031a608b0a8b2e3f", "url": "https://files.pythonhosted.org/packages/d7/56/9d9c0dc2b0f5dc342ff9c7df31c523cc122947970b5ea943b2311be0c391/MarkupSafe-2.0.1-cp37-cp37m-manylinux1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "2ef54abee730b502252bcdf31b10dacb0a416229b72c18b19e24a4509f273d26", + "url": "https://files.pythonhosted.org/packages/dd/8f/d0c570c851f70377ca6f344531fab4b6b01a99a9d2a801b25d6fd75525e5/MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_universal2.whl" + }, { "algorithm": "sha256", "hash": "baa1a4e8f868845af802979fcdbf0bb11f94f1cb7ced4c4b8a351bb60d108145", @@ -1928,8 +2092,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "821c7e677cc6acf0fd3f7ac664c98803827ae6de594a9f99563e48c5a2f27eb0", - "url": "https://files.pythonhosted.org/packages/56/50/bfcc0fad07067b6f1b09d940272ec749d5fe82570d938c2348c3ad0babf7/msgpack-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl" + "hash": "362d9655cd369b08fda06b6657a303eb7172d5279997abe094512e919cf74b11", + "url": "https://files.pythonhosted.org/packages/17/10/be97811782473d709d07b65a3955a5a76d47686aff3d62bb41d48aea7c92/msgpack-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl" }, { "algorithm": "sha256", @@ -1941,6 +2105,11 @@ "hash": "916723458c25dfb77ff07f4c66aed34e47503b2eb3188b3adbec8d8aa6e00f48", "url": "https://files.pythonhosted.org/packages/0d/90/44edef4a8c6f035b054c4b017c5adcb22a35ec377e17e50dd5dced279a6b/msgpack-1.0.5-cp38-cp38-musllinux_1_1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "20c784e66b613c7f16f632e7b5e8a1651aa5702463d61394671ba07b2fc9e025", + "url": "https://files.pythonhosted.org/packages/12/6e/0cfd1dc07f61a6ac606587a393f489c3ca463469d285a73c8e5e2f61b021/msgpack-1.0.5-cp39-cp39-macosx_10_9_universal2.whl" + }, { "algorithm": "sha256", "hash": "476a8fe8fae289fdf273d6d2a6cb6e35b5a58541693e8f9f019bfe990a51e4ba", @@ -1976,11 +2145,31 @@ "hash": "379026812e49258016dd84ad79ac8446922234d498058ae1d415f04b522d5b2d", "url": "https://files.pythonhosted.org/packages/33/52/099f0dde1283bac7bf267ab941dfa3b7c89ee701e4252973f8d3c10e68d6/msgpack-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "a740fa0e4087a734455f0fc3abf5e746004c9da72fbd541e9b113013c8dc3282", + "url": "https://files.pythonhosted.org/packages/43/87/6507d56f62b958d822ae4ffe1c4507ed7d3cf37ad61114665816adcf4adc/msgpack-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" + }, { "algorithm": "sha256", "hash": "b1d46dfe3832660f53b13b925d4e0fa1432b00f5f7210eb3ad3bb9a13c6204a6", "url": "https://files.pythonhosted.org/packages/45/e1/6408389bd2cf0c339ea317926beb64d100f60bc8d236ac59f1c1162be2e4/msgpack-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "57e1f3528bd95cc44684beda696f74d3aaa8a5e58c816214b9046512240ef437", + "url": "https://files.pythonhosted.org/packages/49/57/a28120d82f8e77622a1e1efc652389c71145f6b89b47b39814a7c6038373/msgpack-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "266fa4202c0eb94d26822d9bfd7af25d1e2c088927fe8de9033d929dd5ba24c5", + "url": "https://files.pythonhosted.org/packages/4b/3d/cc5eb6d69e0ecde80a78cc42f48579971ec333e509d56a4a6de1a2c40ba2/msgpack-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "821c7e677cc6acf0fd3f7ac664c98803827ae6de594a9f99563e48c5a2f27eb0", + "url": "https://files.pythonhosted.org/packages/56/50/bfcc0fad07067b6f1b09d940272ec749d5fe82570d938c2348c3ad0babf7/msgpack-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "f933bbda5a3ee63b8834179096923b094b76f0c7a73c1cfe8f07ad608c58844b", @@ -1996,6 +2185,11 @@ "hash": "ef8108f8dedf204bb7b42994abf93882da1159728a2d4c5e82012edd92c9da9f", "url": "https://files.pythonhosted.org/packages/62/5c/9c7fed4ca0235a2d7b8d15b4047c328976b97d2b227719e54cad1e47c244/msgpack-1.0.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" }, + { + "algorithm": "sha256", + "hash": "3055b0455e45810820db1f29d900bf39466df96ddca11dfa6d074fa47054376d", + "url": "https://files.pythonhosted.org/packages/67/f8/e3ab674f4a945308362e9342297fe6b35a89dd0f648aa325aabffa5dc210/msgpack-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl" + }, { "algorithm": "sha256", "hash": "e57916ef1bd0fee4f21c4600e9d1da352d8816b52a599c46460e93a6e9f17086", @@ -2011,6 +2205,16 @@ "hash": "4c075728a1095efd0634a7dccb06204919a2f67d1893b6aa8e00497258bf926c", "url": "https://files.pythonhosted.org/packages/a2/e0/f3d5dd7809cf5728bb1bae683032ce50547d009be6551054815a8bf2a2da/msgpack-1.0.5-cp36-cp36m-musllinux_1_1_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "586d0d636f9a628ddc6a17bfd45aa5b5efaf1606d2b60fa5d87b8986326e933f", + "url": "https://files.pythonhosted.org/packages/ab/ff/ca74e519c47139b6c08fb21db5ead2bd2eed6cb1225f9be69390cdb48182/msgpack-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "18334484eafc2b1aa47a6d42427da7fa8f2ab3d60b674120bce7a895a0a85bdd", + "url": "https://files.pythonhosted.org/packages/bf/68/032e62ad44f92ba6a4ae7c45054843cdec7f0c405ecdfd166f25123b0c47/msgpack-1.0.5-cp39-cp39-macosx_11_0_arm64.whl" + }, { "algorithm": "sha256", "hash": "137850656634abddfb88236008339fdaba3178f4751b28f270d2ebe77a563b6c", @@ -2031,6 +2235,11 @@ "hash": "17358523b85973e5f242ad74aa4712b7ee560715562554aa2134d96e7aa4cbbf", "url": "https://files.pythonhosted.org/packages/e8/60/78906f564804aae23eb1102eca8b8830f1e08a649c179774c05fa7dc0aad/msgpack-1.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "a61215eac016f391129a013c9e46f3ab308db5f5ec9f25811e811f96962599a8", + "url": "https://files.pythonhosted.org/packages/e9/f1/45b73a9e97f702bcb5f51569b93990e456bc969363e55122374c22ed7d24/msgpack-1.0.5-cp39-cp39-musllinux_1_1_i686.whl" + }, { "algorithm": "sha256", "hash": "1835c84d65f46900920b3708f5ba829fb19b1096c1800ad60bae8418652a951d", @@ -2076,8 +2285,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "c92ff9ac7c2282009fe0dcb67ee3cd17978cffbe0c8f4b471c00fe4325c9b4d4", - "url": "https://files.pythonhosted.org/packages/77/6c/eb2b7c9dbbf6cd0148fda0215742346dc4d45b79f680500832e8c6457936/netifaces-0.11.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl" + "hash": "e76c7f351e0444721e85f975ae92718e21c1f361bda946d60a214061de1f00a1", + "url": "https://files.pythonhosted.org/packages/6b/07/613110af7b7856cf0bea173a866304f5476aba06f5ccf74c66acc73e36f1/netifaces-0.11.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl" }, { "algorithm": "sha256", @@ -2094,6 +2303,11 @@ "hash": "28f4bf3a1361ab3ed93c5ef360c8b7d4a4ae060176a3529e72e5e4ffc4afd8b0", "url": "https://files.pythonhosted.org/packages/47/49/bf6c18d33682ec5cca15ba37f86d0a04979cfa15a9e51c86673c1831d04c/netifaces-0.11.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "c92ff9ac7c2282009fe0dcb67ee3cd17978cffbe0c8f4b471c00fe4325c9b4d4", + "url": "https://files.pythonhosted.org/packages/77/6c/eb2b7c9dbbf6cd0148fda0215742346dc4d45b79f680500832e8c6457936/netifaces-0.11.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "c37a1ca83825bc6f54dddf5277e9c65dec2f1b4d0ba44b8fd42bc30c91aa6ea1", @@ -2104,6 +2318,11 @@ "hash": "043a79146eb2907edf439899f262b3dfe41717d34124298ed281139a8b93ca32", "url": "https://files.pythonhosted.org/packages/a6/91/86a6eac449ddfae239e93ffc1918cf33fd9bab35c04d1e963b311e347a73/netifaces-0.11.0.tar.gz" }, + { + "algorithm": "sha256", + "hash": "54ff6624eb95b8a07e79aa8817288659af174e954cca24cdb0daeeddfc03c4ff", + "url": "https://files.pythonhosted.org/packages/c0/8c/b8d1e0bb4139e8b9b8acea7157c4106eb020ea25f943b364c763a0edba0a/netifaces-0.11.0-cp39-cp39-macosx_11_0_arm64.whl" + }, { "algorithm": "sha256", "hash": "48324183af7f1bc44f5f197f3dad54a809ad1ef0c78baee2c88f16a5de02c4c9", @@ -2119,10 +2338,20 @@ "hash": "18917fbbdcb2d4f897153c5ddbb56b31fa6dd7c3fa9608b7e3c3a663df8206b5", "url": "https://files.pythonhosted.org/packages/d8/6f/3cb4f56b5298905e55fbbb8eb468e2db13375f74504d162bbaa9488a306e/netifaces-0.11.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "5be83986100ed1fdfa78f11ccff9e4757297735ac17391b95e17e74335c2047d", + "url": "https://files.pythonhosted.org/packages/dd/51/316a0e27e015dff0573da8a7629b025eb2c10ebbe3aaf6a152039f233972/netifaces-0.11.0-cp39-cp39-macosx_10_15_x86_64.whl" + }, { "algorithm": "sha256", "hash": "aab1dbfdc55086c789f0eb37affccf47b895b98d490738b81f3b2360100426be", "url": "https://files.pythonhosted.org/packages/ea/14/57dcb067e83a6615b60d3635cdaa05b4b7c7fa8b21a1ae5fcab5513bda20/netifaces-0.11.0-cp36-cp36m-macosx_10_15_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "841aa21110a20dc1621e3dd9f922c64ca64dd1eb213c47267a2c324d823f6c8f", + "url": "https://files.pythonhosted.org/packages/f1/52/2e526c90b5636bfab54eb81c52f5b27810d0228e80fa1afac3444dd0cd77/netifaces-0.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl" } ], "project_name": "netifaces", @@ -2195,8 +2424,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "1575700c542b98f6149dc5783e28709dccd27222b07ede6d0709a63cd08ec557", - "url": "https://files.pythonhosted.org/packages/ca/47/73f4f10b9525f793621054382e37305905efd752f8142674f6c6f713758e/orjson-3.6.1-cp38-cp38-manylinux_2_24_x86_64.whl" + "hash": "1cdeda055b606c308087c5492f33650af4491a67315f89829d8680db9653137c", + "url": "https://files.pythonhosted.org/packages/7d/9f/ca1fe1cd6a8f162f501287c54467becf472be0a80a54368c7a700b89fa17/orjson-3.6.1-cp39-cp39-manylinux_2_24_x86_64.whl" }, { "algorithm": "sha256", @@ -2213,6 +2442,11 @@ "hash": "0f707c232d1d99d9812b81aac727be5185e53df7c7847dabcbf2d8888269933c", "url": "https://files.pythonhosted.org/packages/08/70/163f5afd1a37e1a132873d0f0a480f1d741f0db7a375e252c7e86c7ad2f5/orjson-3.6.1-cp36-cp36m-manylinux_2_24_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "7e6211e515dd4bd5fbb09e6de6202c106619c059221ac29da41bc77a78812bb0", + "url": "https://files.pythonhosted.org/packages/09/01/94b331dfd2b33c6263e0f71d0363043acb8e5bade43d9a42563c3d94376b/orjson-3.6.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl" + }, { "algorithm": "sha256", "hash": "62fb8f8949d70cefe6944818f5ea410520a626d5a4b33a090d5a93a6d7c657a3", @@ -2228,6 +2462,11 @@ "hash": "3954406cc8890f08632dd6f2fabc11fd93003ff843edc4aa1c02bfe326d8e7db", "url": "https://files.pythonhosted.org/packages/24/0c/7b13a136da9cf16fc88e9a2044a74ae9f5c133cff3e5bdee4d73e40f4e60/orjson-3.6.1-cp36-cp36m-macosx_10_7_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "973e67cf4b8da44c02c3d1b0e68fb6c18630f67a20e1f7f59e4f005e0df622a0", + "url": "https://files.pythonhosted.org/packages/29/ba/6f591859fc0f53beb3e6f7c17743bc44cb18b834ab76bc579d30fd4a94e1/orjson-3.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", "hash": "33e0be636962015fbb84a203f3229744e071e1ef76f48686f76cb639bdd4c695", @@ -2272,6 +2511,21 @@ "algorithm": "sha256", "hash": "a89c4acc1cd7200fd92b68948fdd49b1789a506682af82e69a05eefd0c1f2602", "url": "https://files.pythonhosted.org/packages/a4/27/3dfa1f049967aae46375187d54daf8bc7cebb850f02ea522c41f4c44d784/orjson-3.6.1-cp37-cp37m-manylinux_2_24_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "1575700c542b98f6149dc5783e28709dccd27222b07ede6d0709a63cd08ec557", + "url": "https://files.pythonhosted.org/packages/ca/47/73f4f10b9525f793621054382e37305905efd752f8142674f6c6f713758e/orjson-3.6.1-cp38-cp38-manylinux_2_24_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "cb84f10b816ed0cb8040e0d07bfe260549798f8929e9ab88b07622924d1a215f", + "url": "https://files.pythonhosted.org/packages/e0/d6/1d848d61eba4969e40c040cffb4a422fbcb6a2673d988be2fc63a84c6b36/orjson-3.6.1-cp39-cp39-macosx_10_7_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "f15267d2e7195331b9823e278f953058721f0feaa5e6f2a7f62a8768858eed3b", + "url": "https://files.pythonhosted.org/packages/f0/88/5eb316dc880b46487f9f2582db8abab156db1091a185800d8dbda58b52c3/orjson-3.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" } ], "project_name": "orjson", @@ -2793,19 +3047,34 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "d08c182933e3654ae5265e3e76af3f5fcfa2bfac5eb40bc222bf8661b7e4c552", - "url": "https://files.pythonhosted.org/packages/02/ad/19e0993ec13ce349d2afe6ee56d228765c73d843567df4e2b6a5d11f770f/pymongo-4.0.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl" + "hash": "af196696e866b80efedf19b860e82e7579e3a0c292a4660d8b3341b3068a35a9", + "url": "https://files.pythonhosted.org/packages/34/e3/a55309a63214eba23b8c162c4e13d6adfb89613ea02b2ba107256c7c6865/pymongo-4.0.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl" }, { "algorithm": "sha256", "hash": "ffee707ce5390429e10adb47cff7de8389a61a82e1e36cf6538cfe264470657a", "url": "https://files.pythonhosted.org/packages/00/d3/a739bffa0800cb303471ea78ba0c0d3e81e455e9ac7ceb220cbb31b27409/pymongo-4.0.2-cp36-cp36m-macosx_10_6_intel.whl" }, + { + "algorithm": "sha256", + "hash": "d08c182933e3654ae5265e3e76af3f5fcfa2bfac5eb40bc222bf8661b7e4c552", + "url": "https://files.pythonhosted.org/packages/02/ad/19e0993ec13ce349d2afe6ee56d228765c73d843567df4e2b6a5d11f770f/pymongo-4.0.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "ede2c98d81dcf839c073dd4c69ebfbd732905c6f6dc4b875830ff404ec3ab628", + "url": "https://files.pythonhosted.org/packages/07/25/d38d74c11c97dd7dec1ee45ae636818806f50485968d1a3bd510cbb4fc58/pymongo-4.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", "hash": "bc1e1c0661605395e2314e9c41b0146723478e64fdcecfa7da7d24afe4a7d2cf", "url": "https://files.pythonhosted.org/packages/0c/47/002c271d63fbf5e22139ece4ad4dba0ecfae96c10dde2ee01129eb626b7e/pymongo-4.0.2-cp37-cp37m-manylinux2014_ppc64le.whl" }, + { + "algorithm": "sha256", + "hash": "0b64ee18b67e38458e8acc4d52ee413095f98a4bdaf4a5eed2ddd1726ce314bc", + "url": "https://files.pythonhosted.org/packages/11/a4/b0e8e2762417787c23d6bf6f153150310afedcf6a465852f4de751d9f33b/pymongo-4.0.2-cp39-cp39-manylinux2014_ppc64le.whl" + }, { "algorithm": "sha256", "hash": "5ea229163b589cee8560afd1b9eeab83afa363488f0ac83594937253046e5273", @@ -2871,6 +3140,11 @@ "hash": "2c893f88fec9231fcaa41d53306dffebb162c9b38867780305edaa830522749e", "url": "https://files.pythonhosted.org/packages/44/b6/bcf4511f189a27c54e91134fc12c7c24ddc873a703f105805e5413bde399/pymongo-4.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" }, + { + "algorithm": "sha256", + "hash": "bdcb32c22946966b0fe7bbcbf91a9c8392a7659ab5ac54355e650aee4c615c04", + "url": "https://files.pythonhosted.org/packages/49/04/74854c6b82215a699e343ad53da34da74b7cc2d7fb19fec353f84afe2117/pymongo-4.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" + }, { "algorithm": "sha256", "hash": "4fec55c0b9e4111a9633a32c7387c966b72f4127a6dc9e10d8d421d45184e8eb", @@ -2901,6 +3175,11 @@ "hash": "8f81f1fcb71cfd8120bd04b26dccfe4da2bdb25e2cdf38383603a8a265a97498", "url": "https://files.pythonhosted.org/packages/60/d6/f34211d6f964cbcfa60c733e1ad842eacff1e5d5b08799d779d83a236141/pymongo-4.0.2-cp38-cp38-manylinux2014_s390x.whl" }, + { + "algorithm": "sha256", + "hash": "6a14e4e417d6498b983e4fe8b06dd7ded53872bbf87961e2f1f649ae7135e7af", + "url": "https://files.pythonhosted.org/packages/66/8d/471bd1535fa4835f76657ff38f243cf8897a3422fee9371c316f7b7e9051/pymongo-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "c93edd3fdc45ff1ee1eff6900e3499caf832ec16b452560ba93f358a94329669", @@ -2931,6 +3210,11 @@ "hash": "092f5c9a65a467218e39c6388454d122f592c9341971dc1121e238dcafa08bc0", "url": "https://files.pythonhosted.org/packages/8f/42/891a4fdd149365ad362015042cd204aacb494cb288be9618d43a3fdd0694/pymongo-4.0.2-cp37-cp37m-macosx_10_6_intel.whl" }, + { + "algorithm": "sha256", + "hash": "d2d5d2f587f2a5125d9172222e3037e327d79bcb6e4958989680c1941d28f586", + "url": "https://files.pythonhosted.org/packages/92/88/63ae51a9a218b01a91ceab0f98d1bbf963f8b374136842a73e97ec368457/pymongo-4.0.2-cp39-cp39-manylinux1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "706f2bf6398627eb843ba40d73d21476a141b32d152bc077bbf5b780ffe5290d", @@ -2941,11 +3225,21 @@ "hash": "7f3c6f698df84b7f2d839ca6102192fbb8a653058bbf0cd98f03aee2cd8cc967", "url": "https://files.pythonhosted.org/packages/97/b9/eca87aad40f86d1509530fbbed4c2287facf8595f0dcbecffdefa9714114/pymongo-4.0.2-cp36-cp36m-manylinux2014_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "9b944ba110300a30b0e0bfea0018ed272da06591ea985af4a70b09226e3f928f", + "url": "https://files.pythonhosted.org/packages/98/b7/39fd83c5495d7881d58cf1446442485ade2e144c8c30a82eb792676ca6ff/pymongo-4.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" + }, { "algorithm": "sha256", "hash": "40ee6449bd2f946e9cd83d97752fb25fb72100bec586cece259fc4a23aa60fcc", "url": "https://files.pythonhosted.org/packages/99/cf/6d1344d5b7dc8ab2831ddb31941054e12c66cf45f2a6edca4ae26824417c/pymongo-4.0.2-cp38-cp38-manylinux1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "98c63f3bf91ff39d22c5330fb57f29e1045925df7e9dcaaedb978e1d94cdf9e8", + "url": "https://files.pythonhosted.org/packages/a9/cf/19f7ba8c49ba2df1aeecfa80649cdb065735118d7a7fd00bbdf43ac7f812/pymongo-4.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "574a533c17b090ecc7b865d9ae4a6f111fb50711ad14bbc1d5eb2871c40d2eb7", @@ -2976,11 +3270,46 @@ "hash": "45a0d4327af93c3c9ac17822886b4b7cc418e9f0a2de17b293d701946f300d4d", "url": "https://files.pythonhosted.org/packages/c8/38/169faeb16519881730199748cfec9c7e1581b655e839cf71e558aca18db6/pymongo-4.0.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "d5bf753e02b25cae2be13de834b9fbaef29921784867c58ec5568a8b123ca85e", + "url": "https://files.pythonhosted.org/packages/c8/80/1ce4c213b096ade64fc3aee95ea688d770403eadfc077cbdf529fa663b40/pymongo-4.0.2-cp39-cp39-manylinux2014_s390x.whl" + }, + { + "algorithm": "sha256", + "hash": "ea00375486b02c592a068a55e3237807939b10833d23fb15fb60cd14b504a89d", + "url": "https://files.pythonhosted.org/packages/cb/9e/43791b582563768205af4d1a53d31ac81d274c5f851ca040de391cffc81f/pymongo-4.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "dbd0c29baadb3c59f35952c526a015ff47965f1187a0c04eb54f9ea1686ad1ab", + "url": "https://files.pythonhosted.org/packages/d0/f7/03e2e06a85dc481f9c3e133bfce494b4dcf89816e3fb18d70d95b33f0624/pymongo-4.0.2-cp39-cp39-manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", "hash": "ce5fdebc875892bb6aafe2053ef0f8d7f99281b74e1224cd6ac9036dee625cc5", "url": "https://files.pythonhosted.org/packages/d2/e2/61576a7e24e22ba3e0f8cb0e28fac8567c41b2773598692f171eaa7c410c/pymongo-4.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" }, + { + "algorithm": "sha256", + "hash": "019a386dfa4eaddb067274a32a0a7aa1bcad4d0fff15e92cb46ffe58321bc9ae", + "url": "https://files.pythonhosted.org/packages/dd/08/a0373443357a5c42e01f2644292c0de8f6cd5226d8d90feee4c93199beba/pymongo-4.0.2-cp39-cp39-manylinux2014_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "f8f78b53d242fd7ce94f6f4044d71f0355c7ae97ba943d044b097257fc48aa5e", + "url": "https://files.pythonhosted.org/packages/e6/47/503031956751769d287e95607906226ff57c24a524a8daffac436a117c2c/pymongo-4.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "4b14f78563aae3474b826329dcd2b5f5643e6ff0c391a51572d89994cc126a23", + "url": "https://files.pythonhosted.org/packages/e9/52/d145ced8751cb9d1426970372e1054399fd7e6ccbd91fedebe12d93534e9/pymongo-4.0.2-cp39-cp39-manylinux1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "ef00b8592e66b6df3114c7379ec1e7e189e2018ad47eac3f427233a9838514f8", + "url": "https://files.pythonhosted.org/packages/ee/00/c8beb251b234fe4faf06e4e1d470eccbad8f0a46b323e52b4cc6df5b77fc/pymongo-4.0.2-cp39-cp39-manylinux2014_i686.whl" + }, { "algorithm": "sha256", "hash": "6d6ce4a7b494e0b40492c7c084816cfe9c5cbb4ef4797f6cda40c174bd14a068", @@ -3280,19 +3609,19 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "78f4f37d8198e0627c5f1143240bb0206b8691d8d7ac6d78fee88b78733f8c4a", - "url": "https://files.pythonhosted.org/packages/2e/09/fbd3c46dce130958ee8e0090f910f1fe39e502cc5ba0aadca1e8a2b932e5/pytz-2022.7.1-py2.py3-none-any.whl" + "hash": "8a8baaf1e237175b02f5c751eea67168043a749c843989e2b3015aa1ad9db68b", + "url": "https://files.pythonhosted.org/packages/a3/21/0ffac8dacd94d20f4d1ceaaa91cf28ad94ec22e8f3ec9056976f1066ff24/pytz-2023.2-py2.py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "01a0681c4b9684a28304615eba55d1ab31ae00bf68ec157ec3708a8182dbbcd0", - "url": "https://files.pythonhosted.org/packages/03/3e/dc5c793b62c60d0ca0b7e58f1fdd84d5aaa9f8df23e7589b39cc9ce20a03/pytz-2022.7.1.tar.gz" + "hash": "a27dcf612c05d2ebde626f7d506555f10dfc815b3eddccfaadfc7d99b11c9a07", + "url": "https://files.pythonhosted.org/packages/55/71/cb1b0a0035cf479eaf05109ea830323af66d48197bfc759a018f94acc3c4/pytz-2023.2.tar.gz" } ], "project_name": "pytz", "requires_dists": [], "requires_python": null, - "version": "2022.7.1" + "version": "2023.2" }, { "artifacts": [ @@ -3346,8 +3675,13 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287", - "url": "https://files.pythonhosted.org/packages/d7/42/7ad4b6d67a16229496d4f6e74201bdbebcf4bc1e87d5a70c9297d4961bd2/PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + "hash": "40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0", + "url": "https://files.pythonhosted.org/packages/12/fc/a4d5a7554e0067677823f7265cb3ae22aed8a238560b5133b58cda252dad/PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803", + "url": "https://files.pythonhosted.org/packages/21/67/b42191239c5650c9e419c4a08a7a022bbf1abf55b0391c380a72c3af5462/PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, { "algorithm": "sha256", @@ -3364,6 +3698,11 @@ "hash": "9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34", "url": "https://files.pythonhosted.org/packages/63/6b/f5dc7942bac17192f4ef00b2d0cdd1ae45eea453d05c1944c0573debe945/PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" }, + { + "algorithm": "sha256", + "hash": "e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174", + "url": "https://files.pythonhosted.org/packages/67/d4/b95266228a25ef5bd70984c08b4efce2c035a4baa5ccafa827b266e3dc36/PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl" + }, { "algorithm": "sha256", "hash": "213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba", @@ -3374,6 +3713,11 @@ "hash": "48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92", "url": "https://files.pythonhosted.org/packages/74/68/3c13deaa496c14a030c431b7b828d6b343f79eb241b4848c7918091a64a2/PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl" }, + { + "algorithm": "sha256", + "hash": "cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3", + "url": "https://files.pythonhosted.org/packages/77/da/e845437ffe0dffae4e7562faf23a4f264d886431c5d2a2816c853288dc8e/PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" + }, { "algorithm": "sha256", "hash": "0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4", @@ -3394,6 +3738,11 @@ "hash": "98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4", "url": "https://files.pythonhosted.org/packages/b3/85/79b9e5b4e8d3c0ac657f4e8617713cca8408f6cdc65d2ee6554217cedff1/PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287", + "url": "https://files.pythonhosted.org/packages/d7/42/7ad4b6d67a16229496d4f6e74201bdbebcf4bc1e87d5a70c9297d4961bd2/PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + }, { "algorithm": "sha256", "hash": "0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b", @@ -3408,6 +3757,11 @@ "algorithm": "sha256", "hash": "231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9", "url": "https://files.pythonhosted.org/packages/eb/5f/6e6fe6904e1a9c67bc2ca5629a69e7a5a0b17f079da838bab98a1e548b25/PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b", + "url": "https://files.pythonhosted.org/packages/f5/6f/b8b4515346af7c33d3b07cd8ca8ea0700ca72e8d7a750b2b87ac0268ca4e/PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl" } ], "project_name": "pyyaml", @@ -3434,13 +3788,13 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "46652271dc7525cd5a9667e5b0ca983c848c75b2b8f7425403395bb8379dcf25", - "url": "https://files.pythonhosted.org/packages/76/ad/dd7b6423295394b95e03d961d454e3046b569715dcc2dd4a030bb43a7cff/redis-4.3.5-py3-none-any.whl" + "hash": "1ea4018b8b5d8a13837f0f1c418959c90bfde0a605cb689e8070cff368a3b177", + "url": "https://files.pythonhosted.org/packages/d6/f6/19237b28c632935c7359bddf703395ba13bbd134fc5e2eb297c4c120398c/redis-4.3.6-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "30c07511627a4c5c4d970e060000772f323174f75e745a26938319817ead7a12", - "url": "https://files.pythonhosted.org/packages/c9/33/8841abbbb9b9f0202fac6e96539cfb98728a709a9b0c5b2ccfb745fb8211/redis-4.3.5.tar.gz" + "hash": "7a462714dcbf7b1ad1acd81f2862b653cc8535cdfc879e28bf4947140797f948", + "url": "https://files.pythonhosted.org/packages/f2/52/2a4b3ceffe59483cdea5e653aaa40ebd7a90241612c40212dfc10fde9215/redis-4.3.6.tar.gz" } ], "project_name": "redis", @@ -3455,7 +3809,7 @@ "typing-extensions; python_version < \"3.8\"" ], "requires_python": ">=3.6", - "version": "4.3.5" + "version": "4.3.6" }, { "artifacts": [ @@ -3617,8 +3971,8 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "8831a2cedcd0f0927f788c5bdf6567d9dc9cc235646a434986a852af1cb54b4b", - "url": "https://files.pythonhosted.org/packages/aa/53/e963164dcd2e2b0d4ecfd12972c1eaa000a8376e63544adeb0fee2f6f90b/ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl" + "hash": "a7b301ff08055d73223058b5c46c55638917f04d21577c95e00e0c4d79201a6b", + "url": "https://files.pythonhosted.org/packages/35/bc/a1f58a339ffe891d92492f47b1dfa90b0957ccf8ad11f35f653a1a6b8c4e/ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl" }, { "algorithm": "sha256", @@ -3650,6 +4004,11 @@ "hash": "99e77daab5d13a48a4054803d052ff40780278240a902b880dd37a51ba01a307", "url": "https://files.pythonhosted.org/packages/87/a3/38e62187deea524f008f3b7d0b42b0aaa98b1788c47367c6412b172e5cc7/ruamel.yaml.clib-0.2.7-cp38-cp38-macosx_12_0_arm64.whl" }, + { + "algorithm": "sha256", + "hash": "8831a2cedcd0f0927f788c5bdf6567d9dc9cc235646a434986a852af1cb54b4b", + "url": "https://files.pythonhosted.org/packages/aa/53/e963164dcd2e2b0d4ecfd12972c1eaa000a8376e63544adeb0fee2f6f90b/ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl" + }, { "algorithm": "sha256", "hash": "a234a20ae07e8469da311e182e70ef6b199d0fbeb6c6cc2901204dd87fb867e8", @@ -3660,6 +4019,11 @@ "hash": "3243f48ecd450eddadc2d11b5feb08aca941b5cd98c9b1db14b2fd128be8c697", "url": "https://files.pythonhosted.org/packages/cd/b9/ee26013ba5cf86454c7e62336b39b7760d71b255546f50c955a86be54c07/ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux2014_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "4a4d8d417868d68b979076a9be6a38c676eca060785abaa6709c7b31593c35d1", + "url": "https://files.pythonhosted.org/packages/d2/3e/179eeeabcbbfe173ecd2bb3f958e22011c0a2c18f75674a75f62928f55eb/ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_12_0_arm64.whl" + }, { "algorithm": "sha256", "hash": "1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497", @@ -3675,10 +4039,20 @@ "hash": "4b3a93bb9bc662fc1f99c5c3ea8e623d8b23ad22f861eb6fce9377ac07ad6072", "url": "https://files.pythonhosted.org/packages/dd/76/730425e8e1ded9383256e2b13dccbf92f3dcf814c1b4a65f8cc839116faf/ruamel.yaml.clib-0.2.7-cp36-cp36m-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "5bc0667c1eb8f83a3752b71b9c4ba55ef7c7058ae57022dd9b29065186a113d9", + "url": "https://files.pythonhosted.org/packages/f5/ac/dda2d23d652bc2f6db886496ad632957af82e33d22c1088cc0ac87c496b5/ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "f01da5790e95815eb5a8a138508c01c758e5f5bc0ce4286c4f7028b8dd7ac3d0", "url": "https://files.pythonhosted.org/packages/fb/c0/de69d49a6d0a346fb27ddf3114d807380b08a40d8e22e0fbaf19be8b6044/ruamel.yaml.clib-0.2.7-cp37-cp37m-macosx_12_0_arm64.whl" + }, + { + "algorithm": "sha256", + "hash": "bf9a6bc4a0221538b1a7de3ed7bca4c93c02346853f44e1cd764be0023cd3640", + "url": "https://files.pythonhosted.org/packages/ff/66/4c05485243e24c6db5d7305063304c410b5539577becc89e4539d2897e41/ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux2014_aarch64.whl" } ], "project_name": "ruamel-yaml-clib", @@ -3801,6 +4175,11 @@ "hash": "f1b425a857ce52e651739314e4118fc68bd702ef983148b8fd5cb6f68bb6a020", "url": "https://files.pythonhosted.org/packages/32/ee/fc40c82dc430a731194a9daecb807f811c2049ff02110cc7cd85e5db5bae/simplejson-3.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "a2285609b4edbf9957440642493788ebef6583042b3fb96217c2e71f29bc6d80", + "url": "https://files.pythonhosted.org/packages/44/97/4374aebba0f544c40ee0f925d68408c79d82b9c0a111c8dcdde5993e0dbf/simplejson-3.18.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" + }, { "algorithm": "sha256", "hash": "3dbfaa79b1c0efdb768392a19110f1aff793f3e8d43f57e292f46734b8affb45", @@ -3816,6 +4195,11 @@ "hash": "041dd69026284d10f035cefb4a75026d2cfcef31f31e62585eeb2b7776e7e047", "url": "https://files.pythonhosted.org/packages/53/6e/971dad95ee1454bb0746b0981777894530a5e951b8582c41f155870bccdf/simplejson-3.18.4-cp38-cp38-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "65de5876e34780b43f92d9d2539de16ecc56d16f56e56e59b34adfa1cebe064f", + "url": "https://files.pythonhosted.org/packages/70/d5/30495008f4f8e081863e18ac4c7d829ca208869f4647e860e7f475f94fcc/simplejson-3.18.4-cp39-cp39-macosx_11_0_arm64.whl" + }, { "algorithm": "sha256", "hash": "efae49d0148ec68b6e012f1b9e19bd530f4dced378ba919e3e906ae2b829cc31", @@ -3831,6 +4215,11 @@ "hash": "0cdb5069870f7d26a34e5adc30672d0a7b26e652720530a023bb3a8d8a42e37f", "url": "https://files.pythonhosted.org/packages/8d/72/9d2ec69170c3ee7956bad0e7790f6cd9177e8493cb5c071c9a03bd7bf892/simplejson-3.18.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "5b217201efc007166e24e9a282007cc208a2d059350a7c5bd0b0303460ad3019", + "url": "https://files.pythonhosted.org/packages/8f/23/345991ea9b919fcaa36d66ca15f14f94e9a14d47f3ec1cb4f09e7b4d55c6/simplejson-3.18.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", "hash": "5c4f59dd358c3a99efa46d62dc1583be3a1c37171f5240c4cbdc2d5838870902", @@ -3846,11 +4235,36 @@ "hash": "16fbebfc38ad4285c256d2430797fd669b0437d090e985c6d443521d4303b133", "url": "https://files.pythonhosted.org/packages/97/da/429126015bf7387ebde115845221a5f6f020a83075bd2e39bc121a4001d6/simplejson-3.18.4-cp38-cp38-musllinux_1_1_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "0cc9a47bf8cde85c99db5f4a919bb756e62427ade0f2e875a6ec89ae8492d486", + "url": "https://files.pythonhosted.org/packages/9a/98/a43f8240f937335c6d7a2d9ac555907afef26738f76f707f36f7f0548457/simplejson-3.18.4-cp39-cp39-musllinux_1_1_aarch64.whl" + }, { "algorithm": "sha256", "hash": "a3bba99178f1b25878752a8bc6da2f93fbae754ebd4914d2ac4b869b9fb24102", "url": "https://files.pythonhosted.org/packages/9c/9e/5bb167020a665f3934dc86eae8826dd0ac727340834a6639d75e68bfa1c4/simplejson-3.18.4-cp37-cp37m-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "46b8cc86204b51eddcf157cbaf3c44a20f24393030442af0909eeb961186cb67", + "url": "https://files.pythonhosted.org/packages/9d/93/d80b1935bdde133253f12a9cae522b7d9a1bee10ef1236a8ca26388f313b/simplejson-3.18.4-cp39-cp39-macosx_10_9_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "fa6fe8fa94a831886ee164ac03514f361e1387a62a1b9da32fde5c0c1f27fa8d", + "url": "https://files.pythonhosted.org/packages/9d/b1/37f9002daa7caafe742aa7ab650d4a4882312b65b2f44bf50a392601b321/simplejson-3.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "01f426ee9e3a2d205aa4c22c3da996b51f2de75c4199ef703258a28b304dea8c", + "url": "https://files.pythonhosted.org/packages/9f/4e/111806d89a9782a0fffb56eba3a0f8608d1490076e45b59338332e81ce05/simplejson-3.18.4-cp39-cp39-macosx_10_9_universal2.whl" + }, + { + "algorithm": "sha256", + "hash": "1844d7782652f859d9648531778582d4842d80cfff8d334eb23bb8da0d22a1b0", + "url": "https://files.pythonhosted.org/packages/a3/fa/2cc5de368bd622f0e841aea8021cdb89064f1719e1ec986d6e69f5656c91/simplejson-3.18.4-cp39-cp39-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "827ddc3b3603f7d0421b054388da6face7871d800c4b3bbedeedc8778e4085ea", @@ -3876,6 +4290,11 @@ "hash": "e7d3f7cd57ce0c6a5bb8133f8ed5c3d1be0473a88b7d91a300626298f12d0999", "url": "https://files.pythonhosted.org/packages/cc/3a/e05810fb58a934437aaead11a4b4b95ff5038ea8411ef890a4148b59c195/simplejson-3.18.4-cp38-cp38-musllinux_1_1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "e042ae053e05fe193514d51d6b0f0243729961901e9a75f8b596bfaf69522c52", + "url": "https://files.pythonhosted.org/packages/d1/b4/1373c9f3afe70576e5778dcad3e9831bfd39afbc271fce34c0793a61d0c6/simplejson-3.18.4-cp39-cp39-musllinux_1_1_i686.whl" + }, { "algorithm": "sha256", "hash": "b482d1fdd8f860e743c7de8cd6dfe54fb9fe8cd6ccba29e2966912ac89e17b2f", @@ -3891,6 +4310,11 @@ "hash": "b9893852c559998f667e6434d2c2474518d4cdfd1b9cec8e57b3c9d577ba55c1", "url": "https://files.pythonhosted.org/packages/e1/22/c483a14ae63bb3fbf4e960bb462134342c9d35fc41817c69f2f6bc8c2a3f/simplejson-3.18.4-cp36-cp36m-musllinux_1_1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "9a50a9da1cf93e35f26c4ddee162abf3184a340339ec2d4001c34607b87e71b4", + "url": "https://files.pythonhosted.org/packages/e4/b8/cecd841874066c705c61b4b1a7976bf4c50f30e9bc13dca88bb6c34a8250/simplejson-3.18.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + }, { "algorithm": "sha256", "hash": "d5f67bffa6fc68e391b2250e1feb43d534ded64a7b918eb89cf7e3e679759d94", @@ -3905,6 +4329,11 @@ "algorithm": "sha256", "hash": "deb71e6166e4f1264174d78b5b88abd52b14c6649e6eabaf9cf93cb1c7362850", "url": "https://files.pythonhosted.org/packages/f7/62/be32e0ca97bb049e3a7a9ecb8dca1211756cd88373987a7ff0773297fe9c/simplejson-3.18.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "d0d3b9f7cee233368d92c89746dde74313abafaa3ec1f0c06a3f4f164dc27bcc", + "url": "https://files.pythonhosted.org/packages/fb/21/c869fb88740f655642105f977d37ff0eb33e3268330ac72f9fba80807f12/simplejson-3.18.4-cp39-cp39-musllinux_1_1_ppc64le.whl" } ], "project_name": "simplejson", @@ -4218,19 +4647,19 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "2b88858b0e3120792a3c0635c23daf36a7d7eeeca657c323da299d2094402a0d", - "url": "https://files.pythonhosted.org/packages/fa/5e/f99a7df3ae2079211d31ec23b1d34380c7870c26e99159f6e422dcbab538/tzdata-2022.7-py2.py3-none-any.whl" + "hash": "905ae9e6744dd9ef5ce94d2aaa2dd00282fee38b670b2133407f23c388f110a1", + "url": "https://files.pythonhosted.org/packages/24/85/4a1b9beb6e1cf19b85f8b33b7a54fec284fead03ca41c37e55f0bc3ef39a/tzdata-2023.2-py2.py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "fe5f866eddd8b96e9fcba978f8e503c909b19ea7efda11e52e39494bad3a7bfa", - "url": "https://files.pythonhosted.org/packages/5b/30/b7abfb11be6642d26de1c1840d25e8d90333513350ad0ebc03101d55e13b/tzdata-2022.7.tar.gz" + "hash": "c3b51b235b07f9f1889089c2264bcbeaaba260a63f89bea09e350ea4205eb95f", + "url": "https://files.pythonhosted.org/packages/d9/72/e152a44bc74ddac6a3d0a91b1bc2a81826b07772d7dccbb0d492ad7dc256/tzdata-2023.2.tar.gz" } ], "project_name": "tzdata", "requires_dists": [], "requires_python": ">=2", - "version": "2022.7" + "version": "2023.2" }, { "artifacts": [ @@ -4290,11 +4719,21 @@ "hash": "2a06006dad34c8cfaa734bd6458452e46702b368da53b56e7732351082aa0420", "url": "https://files.pythonhosted.org/packages/0b/16/01944627b14866723cd2b49c0d1c489c5fa7e7fa136032a5908f7c86c644/ujson-4.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" }, + { + "algorithm": "sha256", + "hash": "1f211c7c0c9377cbf4650aa990118d0c2cce3c5fad476c39ecd35b6714ba4463", + "url": "https://files.pythonhosted.org/packages/10/ac/d520022d4222fd810582426cd8e12fb906f84eb1f8c31634523fbd2f2881/ujson-4.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "b80a35bad8fad1772f992bae8086b0cde788cd3b37f35d0d4506c93e6edad645", "url": "https://files.pythonhosted.org/packages/1b/21/35af6dd59b8abb8137ff9160b5afc91332874a54880aa7cb2d1b465a05d9/ujson-4.3.0-cp37-cp37m-macosx_10_14_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "103cbabe4e6fd70c957219519e37d65be612d7c74d91ef19022a2c8f8c5e4e82", + "url": "https://files.pythonhosted.org/packages/1c/88/2c89f7c6418069e555b0d15b358909e222eea0bd29b38a487a261cf245e3/ujson-4.3.0-cp39-cp39-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "baee56eca35cb5fbe02c28bd9c0936be41a96fa5c0812d9d4b7edeb5c3d568a0", @@ -4315,6 +4754,11 @@ "hash": "8a0d9dde58937976cd06cd776411b77b0e5d38db0a3c1be28ee8bb428ff5a42b", "url": "https://files.pythonhosted.org/packages/37/0f/26f1a0ba1108788e48c3ee092dcc3fe8225c27db662142cf3c1966f40e02/ujson-4.3.0-cp36-cp36m-macosx_10_14_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "0c81159d3f1bcb5729ba019e63e78ee6c91b556e1ac0e67c7579768720fd3c4e", + "url": "https://files.pythonhosted.org/packages/56/3d/5f7ef7d7eb9750cbdf1d78148fb72e6c2329d1a74da757cb101673dd7195/ujson-4.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", "hash": "087cd977f4f63f885a49607244e7e157801a22aadcc075a262d3c3633138573c", @@ -4345,6 +4789,11 @@ "hash": "fc9a508efb829bf0542be9b2578d8da08f0ab1fa712e086ebb777d6ec9e6d8d2", "url": "https://files.pythonhosted.org/packages/80/92/6302d9398ca602e3e6b94ba870345f50dbf81af68b87a1fe1ad93243ee48/ujson-4.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "b850029d64008e970cae04ada69aa33e1cd412106a1efde221269c1cda1b40cc", + "url": "https://files.pythonhosted.org/packages/81/23/6fe2e65b3a3e43376f8e695d1a041b3e25ce6ddf6759ced15da79a81e5e5/ujson-4.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" + }, { "algorithm": "sha256", "hash": "fd0901db652a58f46550074596227dbddb7a02d2de744d3cd2358101f78037bb", @@ -4370,11 +4819,21 @@ "hash": "a6c32356145d95a0403b5895d60c36798a48af13b8863e43ad7457a0361afad0", "url": "https://files.pythonhosted.org/packages/ba/79/cd72294165b47d18443ba8a7bfb53182d53dd878722c7e9b58e2e95d04d8/ujson-4.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "32ee97ec37af31b35ca4395732d883bf74fb70309d38485f7fb9a5cc3332c53e", + "url": "https://files.pythonhosted.org/packages/bf/23/19c51f724c92feecc5251006508098686b138310a77a9a5886a66f87808d/ujson-4.3.0-cp39-cp39-macosx_10_14_x86_64.whl" + }, { "algorithm": "sha256", "hash": "43d2403451d7bd27b6a600f89d4bd2cf6e1b3494254509d8b5ef3c8e94ae4d8e", "url": "https://files.pythonhosted.org/packages/ef/b0/13109e3a7143b366d19fd31f7f1847947ccea20c2b019607bff3e9b3dba4/ujson-4.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" }, + { + "algorithm": "sha256", + "hash": "327ec982bb89abe779fe463e1013c47aae6ed53b76600af7cb1e8b8cb0ee9f85", + "url": "https://files.pythonhosted.org/packages/f4/f0/57660f1f97bc22d34aa36dbb0decd3b99fcb8082affd098d1f716083f24c/ujson-4.3.0-cp39-cp39-musllinux_1_1_aarch64.whl" + }, { "algorithm": "sha256", "hash": "f158fdb08e022f2f16f0fba317a80558b0cebc7e2c84ae783e5f75616d5c90d5", @@ -4659,11 +5118,21 @@ "hash": "64b1df0f83706b4ef4cfb4fb0e4c2669100fd7ecacfb59e091fad300d4e04640", "url": "https://files.pythonhosted.org/packages/f8/f8/e068dafbb844c1447c55b23c921f3d338cddaba4ea53187a7dd0058452d9/wrapt-1.15.0-py3-none-any.whl" }, + { + "algorithm": "sha256", + "hash": "76407ab327158c510f44ded207e2f76b657303e17cb7a572ffe2f5a8a48aa04d", + "url": "https://files.pythonhosted.org/packages/0f/9a/179018bb3f20071f39597cd38fc65d6285d7b89d57f6c51f502048ed28d9/wrapt-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "f2e69b3ed24544b0d3dbe2c5c0ba5153ce50dcebb576fdc4696d52aa22db6034", "url": "https://files.pythonhosted.org/packages/18/f6/659d7c431a57da9c9a86945834ab2bf512f1d9ebefacea49135a0135ef1a/wrapt-1.15.0-cp37-cp37m-musllinux_1_1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "0970ddb69bba00670e58955f8019bec4a42d1785db3faa043c33d81de2bf843c", + "url": "https://files.pythonhosted.org/packages/1e/3c/cb96dbcafbf3a27413fb15e0a1997c4610283f895dc01aca955cd2fda8b9/wrapt-1.15.0-cp39-cp39-macosx_11_0_arm64.whl" + }, { "algorithm": "sha256", "hash": "63424c681923b9f3bfbc5e3205aafe790904053d42ddcc08542181a30a7a51bd", @@ -4694,11 +5163,21 @@ "hash": "780c82a41dc493b62fc5884fb1d3a3b81106642c5c5c78d6a0d4cbe96d62ba7e", "url": "https://files.pythonhosted.org/packages/65/be/3ae5afe9d78d97595b28914fa7e375ebc6329549d98f02768d5a08f34937/wrapt-1.15.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" }, + { + "algorithm": "sha256", + "hash": "078e2a1a86544e644a68422f881c48b84fef6d18f8c7a957ffd3f2e0a74a0d4a", + "url": "https://files.pythonhosted.org/packages/78/f2/106d90140a93690eab240fae76759d62dae639fcec1bd098eccdb83aa38f/wrapt-1.15.0-cp39-cp39-musllinux_1_1_aarch64.whl" + }, { "algorithm": "sha256", "hash": "b0724f05c396b0a4c36a3226c31648385deb6a65d8992644c12a4963c70326ba", "url": "https://files.pythonhosted.org/packages/81/1e/0bb8f01c6ac5baba66ef1ab65f4644bede856c3c7aede18c896be222151c/wrapt-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "7dc0713bf81287a00516ef43137273b23ee414fe41a3c14be10dd95ed98a2df9", + "url": "https://files.pythonhosted.org/packages/8a/1c/740c3ad1b7754dd7213f4df09ccdaf6b19e36da5ff3a269444ba9e103f1b/wrapt-1.15.0-cp39-cp39-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", "hash": "e169e957c33576f47e21864cf3fc9ff47c223a4ebca8960079b8bd36cb014fd0", @@ -4714,11 +5193,21 @@ "hash": "38adf7198f8f154502883242f9fe7333ab05a5b02de7d83aa2d88ea621f13364", "url": "https://files.pythonhosted.org/packages/b6/0c/435198dbe6961c2343ca725be26b99c8aee615e32c45bc1cb2a960b06183/wrapt-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" }, + { + "algorithm": "sha256", + "hash": "2e51de54d4fb8fb50d6ee8327f9828306a959ae394d3e01a1ba8b2f937747d86", + "url": "https://files.pythonhosted.org/packages/b7/3d/9d3cd75f7fc283b6e627c9b0e904189c41ca144185fd8113a1a094dec8ca/wrapt-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "b130fe77361d6771ecf5a219d8e0817d61b236b7d8b37cc045172e574ed219e6", "url": "https://files.pythonhosted.org/packages/bd/47/57ffe222af59fae1eb56bca7d458b704a9b59380c47f0921efb94dc4786a/wrapt-1.15.0-cp38-cp38-musllinux_1_1_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "cd525e0e52a5ff16653a3fc9e3dd827981917d34996600bbc34c05d048ca35cc", + "url": "https://files.pythonhosted.org/packages/c3/12/5fabf0014a0f30eb3975b7199ac2731215a40bc8273083f6a89bd6cadec6/wrapt-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" + }, { "algorithm": "sha256", "hash": "230ae493696a371f1dbffaad3dafbb742a4d27a0afd2b1aecebe52b740167e7f", @@ -4744,11 +5233,21 @@ "hash": "a4cbb9ff5795cd66f0066bdf5947f170f5d63a9274f99bdbca02fd973adcf2a8", "url": "https://files.pythonhosted.org/packages/d7/4b/1bd4837362d31d402b9bc1a27cdd405baf994dbf9942696f291d2f7eeb73/wrapt-1.15.0-cp36-cp36m-musllinux_1_1_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "9d37ac69edc5614b90516807de32d08cb8e7b12260a285ee330955604ed9dd29", + "url": "https://files.pythonhosted.org/packages/dd/eb/389f9975a6be31ddd19d29128a11f1288d07b624e464598a4b450f8d007e/wrapt-1.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", "hash": "96177eb5645b1c6985f5c11d03fc2dbda9ad24ec0f3a46dcce91445747e15094", "url": "https://files.pythonhosted.org/packages/de/77/e2ebfa2f46c19094888a364fdb59aeab9d3336a3ad7ccdf542de572d2a35/wrapt-1.15.0-cp38-cp38-musllinux_1_1_i686.whl" }, + { + "algorithm": "sha256", + "hash": "2cf56d0e237280baed46f0b5316661da892565ff58309d4d2ed7dba763d984b8", + "url": "https://files.pythonhosted.org/packages/f6/89/bf77b063c594795aaa056cac7b467463702f346d124d46d7f06e76e8cd97/wrapt-1.15.0-cp39-cp39-musllinux_1_1_i686.whl" + }, { "algorithm": "sha256", "hash": "d6bcbfc99f55655c3d93feb7ef3800bd5bbe963a755687cbf1f490a71fb7794b", @@ -4876,8 +5375,18 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "c28c7441638c472bfb794f424bd560a22c7afce764cd99196e8d70fbc4d14e85", - "url": "https://files.pythonhosted.org/packages/37/e9/e9aa530447cb4482fdc972e69c6f73424f2edb4088e8eb806459c60c0665/zstandard-0.20.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + "hash": "6179808ebd1ebc42b1e2f221a23c28a22d3bc8f79209ae4a3cc114693c380bff", + "url": "https://files.pythonhosted.org/packages/68/53/162d81276593172123cbe9d2a88ad9e0f1a1c1c8408b0330cb4e529f2133/zstandard-0.20.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "4a3c36284c219a4d2694e52b2582fe5d5f0ecaf94a22cf0ea959b527dbd8a2a6", + "url": "https://files.pythonhosted.org/packages/00/41/3b7280a08beb4d8d4a11ac5ef4750f2501bf77f194439e35afbb7f7bf053/zstandard-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "39cbaf8fe3fa3515d35fb790465db4dc1ff45e58e1e00cbaf8b714e85437f039", + "url": "https://files.pythonhosted.org/packages/01/6a/ce9221add8d6013653ed1c2498165d3eacb0b2b7543f53bd4eeec3e52e7e/zstandard-0.20.0-cp39-cp39-macosx_11_0_arm64.whl" }, { "algorithm": "sha256", @@ -4894,6 +5403,11 @@ "hash": "489959e2d52f7f1fe8ea275fecde6911d454df465265bf3ec51b3e755e769a5e", "url": "https://files.pythonhosted.org/packages/37/84/02163a56672658bdb50dd707379454ebd0810883ef7d66ab4f3cc5b76f58/zstandard-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" }, + { + "algorithm": "sha256", + "hash": "c28c7441638c472bfb794f424bd560a22c7afce764cd99196e8d70fbc4d14e85", + "url": "https://files.pythonhosted.org/packages/37/e9/e9aa530447cb4482fdc972e69c6f73424f2edb4088e8eb806459c60c0665/zstandard-0.20.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" + }, { "algorithm": "sha256", "hash": "059316f07e39b7214cd9eed565d26ab239035d2c76835deeff381995f7a27ba8", @@ -4919,6 +5433,11 @@ "hash": "b671b75ae88139b1dd022fa4aa66ba419abd66f98869af55a342cb9257a1831e", "url": "https://files.pythonhosted.org/packages/78/9e/4208aae4ad0fcb30209e25c6c3238f12d611b833036b4f57f9c63029c3ac/zstandard-0.20.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" }, + { + "algorithm": "sha256", + "hash": "79c3058ccbe1fa37356a73c9d3c0475ec935ab528f5b76d56fc002a5a23407c7", + "url": "https://files.pythonhosted.org/packages/81/3e/e34081ce3b05b4e34dfbb1b944d1e90e377a8a49d2410052a055806db9d7/zstandard-0.20.0-cp39-cp39-macosx_10_9_x86_64.whl" + }, { "algorithm": "sha256", "hash": "2adf65cfce73ce94ef4c482f6cc01f08ddf5e1ca0c1ec95f2b63840f9e4c226c", @@ -4954,6 +5473,16 @@ "hash": "0b815dec62e2d5a1bf7a373388f2616f21a27047b9b999de328bca7462033708", "url": "https://files.pythonhosted.org/packages/c5/4c/175aeba888025323324da718b92bfea601aa69682880ca8f4bb2b100bc6a/zstandard-0.20.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" }, + { + "algorithm": "sha256", + "hash": "0f32a8f3a697ef87e67c0d0c0673b245babee6682b2c95e46eb30208ffb720bd", + "url": "https://files.pythonhosted.org/packages/cd/0e/2e10f205fdef1f6461c4dfbd54c1d39e54cbb5696ff0dc569b209eaca64d/zstandard-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "2eeb9e1ecd48ac1d352608bfe0dc1ed78a397698035a1796cf72f0c9d905d219", + "url": "https://files.pythonhosted.org/packages/d0/13/d40fb7ee0163ad9b883f4cecf7b695864197aa58af7f994611e0261bcd6f/zstandard-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" + }, { "algorithm": "sha256", "hash": "b0f556c74c6f0f481b61d917e48c341cdfbb80cc3391511345aed4ce6fb52fdc", @@ -4964,6 +5493,11 @@ "hash": "a56036c08645aa6041d435a50103428f0682effdc67f5038de47cea5e4221d6f", "url": "https://files.pythonhosted.org/packages/da/f8/d7184cb7b63dbb1c0f2e4f80273b2692de8d1eaffee959cc2d2759a0995b/zstandard-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, + { + "algorithm": "sha256", + "hash": "f199d58f3fd7dfa0d447bc255ff22571f2e4e5e5748bfd1c41370454723cb053", + "url": "https://files.pythonhosted.org/packages/e2/2d/774e4d1a70294875ca3697f035c3e2f52900135eb17a8ee2149e548761cb/zstandard-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, { "algorithm": "sha256", "hash": "862ad0a5c94670f2bd6f64fff671bd2045af5f4ed428a3f2f69fa5e52483f86a", @@ -5062,7 +5596,7 @@ "zstandard" ], "requires_python": [ - "<3.9,>=3.6" + "<3.10,>=3.6" ], "resolver_version": "pip-2020-resolver", "style": "universal", diff --git a/lockfiles/twine.lock b/lockfiles/twine.lock index bae7a95b47..a51d641ac2 100644 --- a/lockfiles/twine.lock +++ b/lockfiles/twine.lock @@ -32,34 +32,23 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a", - "url": "https://files.pythonhosted.org/packages/d4/87/508104336a2bc0c4cfdbdceedc0f44dc72da3abc0460c57e323ddd1b3257/bleach-5.0.1-py3-none-any.whl" + "hash": "33c16e3353dbd13028ab4799a0f89a83f113405c766e9c122df8a06f5b85b3f4", + "url": "https://files.pythonhosted.org/packages/ac/e2/dfcab68c9b2e7800c8f06b85c76e5f978d05b195a958daa9b1dda54a1db6/bleach-6.0.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c", - "url": "https://files.pythonhosted.org/packages/c2/5d/d5d45a38163ede3342d6ac1ca01b5d387329daadf534a25718f9a9ba818c/bleach-5.0.1.tar.gz" + "hash": "1a1a85c1595e07d8db14c5f09f09e6433502c51c595970edc090551f0db99414", + "url": "https://files.pythonhosted.org/packages/7e/e6/d5f220ca638f6a25557a611860482cb6e54b2d97f0332966b1b005742e1f/bleach-6.0.0.tar.gz" } ], "project_name": "bleach", "requires_dists": [ - "Sphinx==4.3.2; extra == \"dev\"", - "black==22.3.0; implementation_name == \"cpython\" and extra == \"dev\"", - "build==0.8.0; extra == \"dev\"", - "flake8==4.0.1; extra == \"dev\"", - "hashin==0.17.0; extra == \"dev\"", - "mypy==0.961; implementation_name == \"cpython\" and extra == \"dev\"", - "pip-tools==6.6.2; extra == \"dev\"", - "pytest==7.1.2; extra == \"dev\"", "six>=1.9.0", "tinycss2<1.2,>=1.1.0; extra == \"css\"", - "tox==3.25.0; extra == \"dev\"", - "twine==4.0.1; extra == \"dev\"", - "webencodings", - "wheel==0.37.1; extra == \"dev\"" + "webencodings" ], "requires_python": ">=3.7", - "version": "5.0.1" + "version": "6.0.0" }, { "artifacts": [ @@ -288,151 +277,429 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f", - "url": "https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl" + "hash": "3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d", + "url": "https://files.pythonhosted.org/packages/ef/81/14b3b8f01ddaddad6cdec97f2f599aa2fa466bd5ee9af99b08b7713ccd29/charset_normalizer-3.1.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845", - "url": "https://files.pythonhosted.org/packages/a1/34/44964211e5410b051e4b8d2869c470ae8a68ae274953b1c7de6d98bbcf94/charset-normalizer-2.1.1.tar.gz" - } - ], - "project_name": "charset-normalizer", - "requires_dists": [ - "unicodedata2; extra == \"unicode_backport\"" - ], - "requires_python": ">=3.6.0", - "version": "2.1.1" - }, - { - "artifacts": [ + "hash": "3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28", + "url": "https://files.pythonhosted.org/packages/00/47/f14533da238134f5067fb1d951eb03d5c4be895d6afb11c7ebd07d111acb/charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, { "algorithm": "sha256", - "hash": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", - "url": "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl" + "hash": "3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb", + "url": "https://files.pythonhosted.org/packages/01/c7/0407de35b70525dba2a58a2724a525cf882ee76c3d2171d834463c5d2881/charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, { "algorithm": "sha256", - "hash": "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", - "url": "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz" - } - ], - "project_name": "colorama", - "requires_dists": [], - "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7", - "version": "0.4.6" - }, - { - "artifacts": [ + "hash": "6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017", + "url": "https://files.pythonhosted.org/packages/0a/67/8d3d162ec6641911879651cdef670c3c6136782b711d7f8e82e2fffe06e0/charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41", + "url": "https://files.pythonhosted.org/packages/12/12/c5c39f5a149cd6788d2e40cea5618bae37380e2754fcdf53dc9e01bdd33a/charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e", + "url": "https://files.pythonhosted.org/packages/12/68/4812f9b05ac0a2b7619ac3dd7d7e3fc52c12006b84617021c615fc2fcf42/charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl" + }, + { + "algorithm": "sha256", + "hash": "f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326", + "url": "https://files.pythonhosted.org/packages/13/b7/21729a6d512246aa0bb872b90aea0d9fcd1b293762cdb1d1d33c01140074/charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6", + "url": "https://files.pythonhosted.org/packages/16/58/19fd2f62e6ff44ba0db0cd44b584790555e2cde09293149f4409d654811b/charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62", + "url": "https://files.pythonhosted.org/packages/18/36/7ae10a3dd7f9117b61180671f8d1e4802080cca88ad40aaabd3dad8bab0e/charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230", + "url": "https://files.pythonhosted.org/packages/1c/9b/de2adc43345623da8e7c958719528a42b6d87d2601017ce1187d43b8a2d7/charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854", + "url": "https://files.pythonhosted.org/packages/1f/be/c6c76cf8fcf6918922223203c83ba8192eff1c6a709e8cfec7f5ca3e7d2d/charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" + }, + { + "algorithm": "sha256", + "hash": "11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be", + "url": "https://files.pythonhosted.org/packages/21/16/1b0d8fdcb81bbf180976af4f867ce0f2244d303ab10d452fde361dec3b5c/charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137", + "url": "https://files.pythonhosted.org/packages/23/13/cf5d7bb5bc95f120df64d6c470581189df51d7f011560b2a06a395b7a120/charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649", + "url": "https://files.pythonhosted.org/packages/2c/2f/ec805104098085728b7cb610deede7195c6fa59f51942422f02cc427b6f6/charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b", + "url": "https://files.pythonhosted.org/packages/31/8b/81c3515a69d06b501fcce69506af57a7a19bd9f42cabd1a667b1b40f2c55/charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11", + "url": "https://files.pythonhosted.org/packages/33/10/c87ba15f779f8251ae55fa147631339cd91e7af51c3c133d2687c6e41800/charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706", + "url": "https://files.pythonhosted.org/packages/33/97/9967fb2d364a9da38557e4af323abcd58cc05bdd8f77e9fd5ae4882772cc/charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f", + "url": "https://files.pythonhosted.org/packages/45/3d/fa2683f5604f99fba5098a7313e5d4846baaecbee754faf115907f21a85f/charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0", + "url": "https://files.pythonhosted.org/packages/4e/11/f7077d78b18aca8ea3186a706c0221aa2bc34c442a3d3bdf3ad401a29052/charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d", + "url": "https://files.pythonhosted.org/packages/4f/18/92866f050f7114ba38aba4f4a69f83cc2a25dc2e5a8af4b44fd1bfd6d528/charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7", + "url": "https://files.pythonhosted.org/packages/4f/7c/af43743567a7da2a069b4f9fa31874c3c02b963cd1fb84fe1e7568a567e6/charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b", + "url": "https://files.pythonhosted.org/packages/4f/a2/9031ba4a008e11a21d7b7aa41751290d2f2035a2f14ecb6e589771a17c47/charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl" + }, + { + "algorithm": "sha256", + "hash": "cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324", + "url": "https://files.pythonhosted.org/packages/56/24/5f2dedcf3d0673931b6200c410832ae44b376848bc899dbf1fa6c91c4ebe/charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb", + "url": "https://files.pythonhosted.org/packages/5d/2b/4d8c80400c04ae3c8dbc847de092e282b5c7b17f8f9505d68bb3e5815c71/charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d", + "url": "https://files.pythonhosted.org/packages/61/e3/ad9ae58b28482d1069eba1edec2be87701f5dd6fd6024a665020d66677a0/charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1", + "url": "https://files.pythonhosted.org/packages/67/30/dbab1fe5ab2ce5d3d517ad9936170d896e9687f3860a092519f1fe359812/charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60", + "url": "https://files.pythonhosted.org/packages/67/df/660e9665ace7ad711e275194a86cb757fb4d4e513fae5ff3d39573db4984/charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd", + "url": "https://files.pythonhosted.org/packages/68/77/af702eba147ba963b27eb00832cef6b8c4cb9fcf7404a476993876434b93/charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl" + }, + { + "algorithm": "sha256", + "hash": "1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f", + "url": "https://files.pythonhosted.org/packages/69/22/66351781e668158feef71c5e3b059a79ecc9efc3ef84a45888b0f3a933d5/charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0", + "url": "https://files.pythonhosted.org/packages/6d/59/59a3f4d8a59ee270da77f9e954a0e284c9d6884d39ec69d696d9aa5ff2f2/charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0", + "url": "https://files.pythonhosted.org/packages/72/90/667a6bc6abe42fc10adf4cd2c1e1c399d78e653dbac4c8018350843d4ab7/charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl" + }, + { + "algorithm": "sha256", + "hash": "de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0", + "url": "https://files.pythonhosted.org/packages/74/5f/361202de730532028458b729781b8435f320e31a622c27f30e25eec80513/charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce", + "url": "https://files.pythonhosted.org/packages/74/f1/d0b8385b574f7e086fb6709e104b696707bd3742d54a6caf0cebbb7e975b/charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl" + }, + { + "algorithm": "sha256", + "hash": "d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c", + "url": "https://files.pythonhosted.org/packages/82/b9/51b66a647be8685dee75b7807e0f750edf5c1e4f29bc562ad285c501e3c7/charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl" + }, { "algorithm": "sha256", - "hash": "b4cad0cea995af760f82820ab4ca54e5471fc782f70a007f31531957f43e9dee", - "url": "https://files.pythonhosted.org/packages/7e/c5/de81357e353d1d7f50b327cb1c1d8ccd45ebd2a6949a2c819db8a7481a2b/cryptography-38.0.4-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl" + "hash": "dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84", + "url": "https://files.pythonhosted.org/packages/84/23/f60cda6c70ae922ad78368982f06e7fef258fba833212f26275fe4727dc4/charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl" }, { "algorithm": "sha256", - "hash": "c9e0d79ee4c56d841bd4ac6e7697c8ff3c8d6da67379057f29e66acffcd1e9a7", - "url": "https://files.pythonhosted.org/packages/0e/36/c21943944d4cb1e767510cd17432eec2c59c779fae28703b5a35d4440703/cryptography-38.0.4-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl" + "hash": "f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df", + "url": "https://files.pythonhosted.org/packages/85/e8/18d408d8fe29a56012c10d6b15960940b83f06620e9d7481581cdc6d9901/charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl" }, { "algorithm": "sha256", - "hash": "4367da5705922cf7070462e964f66e4ac24162e22ab0a2e9d31f1b270dd78083", - "url": "https://files.pythonhosted.org/packages/0e/fc/417b674c05af65d8dc2856a439f20a866a3fa21b01496f99fb18f812c4ab/cryptography-38.0.4-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl" + "hash": "6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e", + "url": "https://files.pythonhosted.org/packages/94/70/23981e7bf098efbc4037e7c66d28a10e950d9296c08c6dea8ef290f9c79e/charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" }, { "algorithm": "sha256", - "hash": "10652dd7282de17990b88679cb82f832752c4e8237f0c714be518044269415db", - "url": "https://files.pythonhosted.org/packages/12/9c/e44f95e71aedc5fefe3425df662dd17c6f94fbf68470b56c4873c43f27d2/cryptography-38.0.4-cp36-abi3-manylinux_2_24_x86_64.whl" + "hash": "c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f", + "url": "https://files.pythonhosted.org/packages/9a/f1/ff81439aa09070fee64173e6ca6ce1342f2b1cca997bcaae89e443812684/charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl" }, { "algorithm": "sha256", - "hash": "ce127dd0a6a0811c251a6cddd014d292728484e530d80e872ad9806cfb1c5b3c", - "url": "https://files.pythonhosted.org/packages/26/f8/a81170a816679fca9ccd907b801992acfc03c33f952440421c921af2cc57/cryptography-38.0.4-cp36-abi3-manylinux_2_28_x86_64.whl" + "hash": "aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a", + "url": "https://files.pythonhosted.org/packages/9e/62/a1e0a8f8830c92014602c8a88a1a20b8a68d636378077381f671e6e1cec9/charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" }, { "algorithm": "sha256", - "hash": "50a1494ed0c3f5b4d07650a68cd6ca62efe8b596ce743a5c94403e6f11bf06c1", - "url": "https://files.pythonhosted.org/packages/32/ed/d7de730e1452ed714f2f8eee123669d4819080e03ec523b131d9b709d060/cryptography-38.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + "hash": "0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e", + "url": "https://files.pythonhosted.org/packages/a2/6c/5167f08da5298f383036c33cb749ab5b3405fd07853edc8314c6882c01b8/charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl" }, { "algorithm": "sha256", - "hash": "1f13ddda26a04c06eb57119caf27a524ccae20533729f4b1e4a69b54e07035eb", - "url": "https://files.pythonhosted.org/packages/52/1b/49ebc2b59e9126f1f378ae910e98704d54a3f48b78e2d6d6c8cfe6fbe06f/cryptography-38.0.4-cp36-abi3-macosx_10_10_x86_64.whl" + "hash": "1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d", + "url": "https://files.pythonhosted.org/packages/a4/03/355281b62c26712a50c6a9dd75339d8cdd58488fd7bf2556ba1320ebd315/charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl" }, { "algorithm": "sha256", - "hash": "67461b5ebca2e4c2ab991733f8ab637a7265bb582f07c7c88914b5afb88cb95b", - "url": "https://files.pythonhosted.org/packages/5a/72/bc0ce09fbddb40ef81284a2479ad5236b305c0871f4712e31c298fb77b0e/cryptography-38.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + "hash": "53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f", + "url": "https://files.pythonhosted.org/packages/a9/83/138d2624fdbcb62b7e14715eb721d44347e41a1b4c16544661e940793f49/charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl" }, { "algorithm": "sha256", - "hash": "2fb481682873035600b5502f0015b664abc26466153fab5c6bc92c1ea69d478b", - "url": "https://files.pythonhosted.org/packages/61/1a/35fd07185b10e3153c8c95d694fb2db1e1e3f55dcc8ef2763685705bf0dd/cryptography-38.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + "hash": "8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f", + "url": "https://files.pythonhosted.org/packages/ac/7f/62d5dff4e9cb993e4b0d4ea78a74cc84d7d92120879529e0ce0965765936/charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl" }, { "algorithm": "sha256", - "hash": "a10498349d4c8eab7357a8f9aa3463791292845b79597ad1b98a543686fb1ec8", - "url": "https://files.pythonhosted.org/packages/63/d4/66b3b4ffe51b47a065b5a5a00e6a4c8aa6cdfa4f2453adfa0aac77fd3511/cryptography-38.0.4-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + "hash": "3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c", + "url": "https://files.pythonhosted.org/packages/ac/c5/990bc41a98b7fa2677c665737fdf278bb74ad4b199c56b6b564b3d4cbfc5/charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl" }, { "algorithm": "sha256", - "hash": "8a4b2bdb68a447fadebfd7d24855758fe2d6fecc7fed0b78d190b1af39a8e3b0", - "url": "https://files.pythonhosted.org/packages/64/4e/04dced6a515032b7bf3e8f287c7ff73a7d1b438c8394aa50b9fceb4077e2/cryptography-38.0.4-cp36-abi3-musllinux_1_1_x86_64.whl" + "hash": "6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8", + "url": "https://files.pythonhosted.org/packages/b0/55/d8ef4c8c7d2a8b3a16e7d9b03c59475c2ee96a0e0c90b14c99faaac0ee3b/charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl" }, { "algorithm": "sha256", - "hash": "ca57eb3ddaccd1112c18fc80abe41db443cc2e9dcb1917078e02dfa010a4f353", - "url": "https://files.pythonhosted.org/packages/68/00/36a95b6b92b7161afcddcc57ae8883d2978f2b5eaac15fe6dbda23424428/cryptography-38.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" + "hash": "11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c", + "url": "https://files.pythonhosted.org/packages/bb/dc/58fdef3ab85e8e7953a8b89ef1d2c06938b8ad88d9617f22967e1a90e6b8/charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" }, { "algorithm": "sha256", - "hash": "2ec2a8714dd005949d4019195d72abed84198d877112abb5a27740e217e0ea8d", - "url": "https://files.pythonhosted.org/packages/6d/47/929f07e12ebbcfedddb95397c49677dd82bb5a0bb648582b10d5f65e321c/cryptography-38.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl" + "hash": "891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203", + "url": "https://files.pythonhosted.org/packages/c2/35/dfb4032f5712747d3dcfdd19d0768f6d8f60910ae24ed066ecbf442be013/charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl" }, { "algorithm": "sha256", - "hash": "2fa36a7b2cc0998a3a4d5af26ccb6273f3df133d61da2ba13b3286261e7efb70", - "url": "https://files.pythonhosted.org/packages/75/7a/2ea7dd2202638cf1053aaa8fbbaddded0b78c78832b3d03cafa0416a6c84/cryptography-38.0.4-cp36-abi3-macosx_10_10_universal2.whl" + "hash": "04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1", + "url": "https://files.pythonhosted.org/packages/c6/ab/43ea052756b2f2dcb6a131897811c0e2704b0288f090336217d3346cd682/charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl" }, { "algorithm": "sha256", - "hash": "4eb85075437f0b1fd8cd66c688469a0c4119e0ba855e3fef86691971b887caf6", - "url": "https://files.pythonhosted.org/packages/77/fa/69375dc382dc0385628c33d4b9fefc1a27c0c901a493832c605399930c17/cryptography-38.0.4-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl" + "hash": "bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5", + "url": "https://files.pythonhosted.org/packages/c9/8c/a76dd9f2c8803eb147e1e715727f5c3ba0ef39adaadf66a7b3698c113180/charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl" }, { "algorithm": "sha256", - "hash": "998cd19189d8a747b226d24c0207fdaa1e6658a1d3f2494541cb9dfbf7dcb6d2", - "url": "https://files.pythonhosted.org/packages/8b/92/ef0762ecda6a225366d0aa15926f752a8af9eff3c4a4603d8262d5ce80fd/cryptography-38.0.4-pp38-pypy38_pp73-macosx_10_10_x86_64.whl" + "hash": "75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795", + "url": "https://files.pythonhosted.org/packages/cc/f6/21a66e524658bd1dd7b89ac9d1ee8f7823f2d9701a2fbc458ab9ede53c63/charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" }, { "algorithm": "sha256", - "hash": "3178d46f363d4549b9a76264f41c6948752183b3f587666aff0555ac50fd7876", - "url": "https://files.pythonhosted.org/packages/94/67/6cf029c40885b5a559ce4f40c16a95c9d5929cc41184503a31f3e8c025e4/cryptography-38.0.4-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl" + "hash": "6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31", + "url": "https://files.pythonhosted.org/packages/d5/92/86c0f0e66e897f6818c46dadef328a5b345d061688f9960fc6ca1fd03dbe/charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl" }, { "algorithm": "sha256", - "hash": "bfe6472507986613dc6cc00b3d492b2f7564b02b3b3682d25ca7f40fa3fd321b", - "url": "https://files.pythonhosted.org/packages/a2/8f/6c52b1f9d650863e8f67edbe062c04f1c8455579eaace1593d8fe469319a/cryptography-38.0.4-cp36-abi3-manylinux_2_28_aarch64.whl" + "hash": "e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1", + "url": "https://files.pythonhosted.org/packages/d7/4c/37ad75674e8c6bc22ab01bef673d2d6e46ee44203498c9a26aa23959afe5/charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl" }, { "algorithm": "sha256", - "hash": "53049f3379ef05182864d13bb9686657659407148f901f3f1eee57a733fb4b00", - "url": "https://files.pythonhosted.org/packages/b1/44/6d6cb7cff7f2dbc59fde50e5b82bc6df075e73af89a25eba1a6193c22165/cryptography-38.0.4-cp36-abi3-musllinux_1_1_aarch64.whl" + "hash": "7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14", + "url": "https://files.pythonhosted.org/packages/d8/ca/a7ff600781bf1e5f702ba26bb82f2ba1d3a873a3f8ad73cc44c79dfaefa9/charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl" }, { "algorithm": "sha256", - "hash": "78e47e28ddc4ace41dd38c42e6feecfdadf9c3be2af389abbfeef1ff06822285", - "url": "https://files.pythonhosted.org/packages/d2/74/a70f68d888454640ea87f1aca9fe6d11d8824457006a1dfa94564cdc6fbf/cryptography-38.0.4-pp39-pypy39_pp73-macosx_10_10_x86_64.whl" + "hash": "ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9", + "url": "https://files.pythonhosted.org/packages/dd/39/6276cf5a395ffd39b77dadf0e2fcbfca8dbfe48c56ada250c40086055143/charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" }, { "algorithm": "sha256", - "hash": "0e70da4bdff7601b0ef48e6348339e490ebfb0cbe638e083c9c41fb49f00c8bd", - "url": "https://files.pythonhosted.org/packages/d9/55/aedec39dd8884d539941faa57c74952b9dccf76d2c9d48a65acc24877434/cryptography-38.0.4-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl" + "hash": "9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19", + "url": "https://files.pythonhosted.org/packages/e1/7c/398600268fc98b7e007f5a716bd60903fff1ecff75e45f5700212df5cd76/charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl" }, { "algorithm": "sha256", - "hash": "175c1a818b87c9ac80bb7377f5520b7f31b3ef2a0004e2420319beadedb67290", - "url": "https://files.pythonhosted.org/packages/e3/3f/41186b1f2fd86a542d399175f6b8e43f82cd4dfa51235a0b030a042b811a/cryptography-38.0.4.tar.gz" + "hash": "0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373", + "url": "https://files.pythonhosted.org/packages/e1/b4/53678b2a14e0496fc167fe9b9e726ad33d670cfd2011031aa5caeee6b784/charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac", + "url": "https://files.pythonhosted.org/packages/e5/aa/9d2d60d6a566423da96c15cd11cbb88a70f9aff9a4db096094ee19179cab/charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl" + }, + { + "algorithm": "sha256", + "hash": "e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531", + "url": "https://files.pythonhosted.org/packages/ea/38/d31c7906c4be13060c1a5034087966774ef33ab57ff2eee76d71265173c3/charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl" + }, + { + "algorithm": "sha256", + "hash": "fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab", + "url": "https://files.pythonhosted.org/packages/f2/b7/e21e16c98575616f4ce09dc766dbccdac0ca119c176b184d46105e971a84/charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1", + "url": "https://files.pythonhosted.org/packages/f2/d7/6ee92c11eda3f3c9cac1e059901092bfdf07388be7d2e60ac627527eee62/charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl" + }, + { + "algorithm": "sha256", + "hash": "22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a", + "url": "https://files.pythonhosted.org/packages/f4/0a/8c03913ed1eca9d831db0c28759edb6ce87af22bb55dbc005a52525a75b6/charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e", + "url": "https://files.pythonhosted.org/packages/f6/0f/de1c4030fd669e6719277043e3b0f152a83c118dd1020cf85b51d443d04a/charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b", + "url": "https://files.pythonhosted.org/packages/f8/ed/500609cb2457b002242b090c814549997424d72690ef3058cfdfca91f68b/charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" + }, + { + "algorithm": "sha256", + "hash": "04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6", + "url": "https://files.pythonhosted.org/packages/fa/8e/2e5c742c3082bce3eea2ddd5b331d08050cda458bc362d71c48e07a44719/charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl" + }, + { + "algorithm": "sha256", + "hash": "34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5", + "url": "https://files.pythonhosted.org/packages/ff/d7/8d757f8bd45be079d76309248845a04f09619a7b17d6dfc8c9ff6433cac2/charset-normalizer-3.1.0.tar.gz" + } + ], + "project_name": "charset-normalizer", + "requires_dists": [], + "requires_python": ">=3.7.0", + "version": "3.1.0" + }, + { + "artifacts": [ + { + "algorithm": "sha256", + "hash": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", + "url": "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl" + }, + { + "algorithm": "sha256", + "hash": "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", + "url": "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz" + } + ], + "project_name": "colorama", + "requires_dists": [], + "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7", + "version": "0.4.6" + }, + { + "artifacts": [ + { + "algorithm": "sha256", + "hash": "6f2bbd72f717ce33100e6467572abaedc61f1acb87b8d546001328d7f466b778", + "url": "https://files.pythonhosted.org/packages/0c/e1/4cd34c7eca5cf2420d0d2a050fae52dc47b36c3686943411a0f5e1958a27/cryptography-40.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "cf91e428c51ef692b82ce786583e214f58392399cf65c341bc7301d096fa3ba2", + "url": "https://files.pythonhosted.org/packages/10/2b/485100eb127268fcc72eaf3b0ee643523718b2a23f8ba3904ef027fdbbb2/cryptography-40.0.1-cp36-abi3-musllinux_1_1_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "2803f2f8b1e95f614419926c7e6f55d828afc614ca5ed61543877ae668cc3472", + "url": "https://files.pythonhosted.org/packages/15/d9/c679e9eda76bfc0d60c9d7a4084ca52d0631d9f24ef04f818012f6d1282e/cryptography-40.0.1.tar.gz" + }, + { + "algorithm": "sha256", + "hash": "7c872413353c70e0263a9368c4993710070e70ab3e5318d85510cc91cce77e7c", + "url": "https://files.pythonhosted.org/packages/3e/01/87993574bc3ee99770c34abdd03836b911729dd136b45abccd2e7351ac61/cryptography-40.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "d36bbeb99704aabefdca5aee4eba04455d7a27ceabd16f3b3ba9bdcc31da86c4", + "url": "https://files.pythonhosted.org/packages/6d/b9/5d1a8fc0a44f156bbf0f97adc56efe63222325b6e9b2a52522bb228e1954/cryptography-40.0.1-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "0a4e3406cfed6b1f6d6e87ed243363652b2586b2d917b0609ca4f97072994405", + "url": "https://files.pythonhosted.org/packages/92/65/bead02abece1e8b3f0dee942e216cb42df2630aa7efb41d2831d99a9bb68/cryptography-40.0.1-cp36-abi3-manylinux_2_28_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "cd033d74067d8928ef00a6b1327c8ea0452523967ca4463666eeba65ca350d4c", + "url": "https://files.pythonhosted.org/packages/94/20/d0881962d7e85157339f9ddba2fb07db5318cd19a5ffb64dab3a479826ef/cryptography-40.0.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "9618a87212cb5200500e304e43691111570e1f10ec3f35569fdfcd17e28fd797", + "url": "https://files.pythonhosted.org/packages/a1/e0/4fa9f4d0c15040ea0b0c19f8442c62a5cebc4846db4a745177a85b7a6d82/cryptography-40.0.1-cp36-abi3-macosx_10_12_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "28d63d75bf7ae4045b10de5413fb1d6338616e79015999ad9cf6fc538f772d41", + "url": "https://files.pythonhosted.org/packages/b5/58/3e048b70b16f3cd662c06f6f165494bdb400716f686d177871c18ea9406b/cryptography-40.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "d8aa3609d337ad85e4eb9bb0f8bcf6e4409bfb86e706efa9a027912169e89122", + "url": "https://files.pythonhosted.org/packages/b6/2e/16f5531d29034554aeca5b6fafb83a2afc75e29666269233f26f9372af05/cryptography-40.0.1-cp36-abi3-musllinux_1_1_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "1e0af458515d5e4028aad75f3bb3fe7a31e46ad920648cd59b64d3da842e4356", + "url": "https://files.pythonhosted.org/packages/c0/ea/76eb113bafc97f2e8d9872eda85eb59383892a3559ebbec7595753785fd2/cryptography-40.0.1-cp36-abi3-manylinux_2_28_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "918cb89086c7d98b1b86b9fdb70c712e5a9325ba6f7d7cfb509e784e0cfc6917", + "url": "https://files.pythonhosted.org/packages/c7/0c/5eeec6973710b2dacff598be034b13f3812ca8a563e8b324b129a93d0214/cryptography-40.0.1-cp36-abi3-macosx_10_12_universal2.whl" + }, + { + "algorithm": "sha256", + "hash": "32057d3d0ab7d4453778367ca43e99ddb711770477c4f072a51b3ca69602780a", + "url": "https://files.pythonhosted.org/packages/ca/0b/43b7383dafd5e2aae27fa85655b73d520c50dee349bbf31e018d275806ee/cryptography-40.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl" + }, + { + "algorithm": "sha256", + "hash": "3a4805a4ca729d65570a1b7cac84eac1e431085d40387b7d3bbaa47e39890b88", + "url": "https://files.pythonhosted.org/packages/e9/79/b258803f573bfb202e29f9f56cd73e2b2e2fee1fe2e9cdf03f388919d8cc/cryptography-40.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" + }, + { + "algorithm": "sha256", + "hash": "63dac2d25c47f12a7b8aa60e528bfb3c51c5a6c5a9f7c86987909c6c79765554", + "url": "https://files.pythonhosted.org/packages/ed/d0/f7470892f9f496f3d403fca9b141367b1d5350fcd953ef5761674afafaa7/cryptography-40.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" } ], "project_name": "cryptography", @@ -440,27 +707,28 @@ "bcrypt>=3.1.5; extra == \"ssh\"", "black; extra == \"pep8test\"", "cffi>=1.12", - "flake8-import-order; extra == \"pep8test\"", - "flake8; extra == \"pep8test\"", - "hypothesis!=3.79.2,>=1.11.4; extra == \"test\"", + "check-manifest; extra == \"pep8test\"", "iso8601; extra == \"test\"", - "pep8-naming; extra == \"pep8test\"", + "mypy; extra == \"pep8test\"", "pretend; extra == \"test\"", "pyenchant>=1.6.11; extra == \"docstest\"", "pytest-benchmark; extra == \"test\"", "pytest-cov; extra == \"test\"", + "pytest-randomly; extra == \"test-randomorder\"", + "pytest-shard>=0.1.2; extra == \"test\"", "pytest-subtests; extra == \"test\"", "pytest-xdist; extra == \"test\"", "pytest>=6.2.0; extra == \"test\"", - "pytz; extra == \"test\"", + "ruff; extra == \"pep8test\"", "setuptools-rust>=0.11.4; extra == \"sdist\"", - "sphinx!=1.8.0,!=3.1.0,!=3.1.1,>=1.6.5; extra == \"docs\"", - "sphinx-rtd-theme; extra == \"docs\"", + "sphinx-rtd-theme>=1.1.1; extra == \"docs\"", + "sphinx>=5.3.0; extra == \"docs\"", "sphinxcontrib-spelling>=4.0.1; extra == \"docstest\"", + "tox; extra == \"tox\"", "twine>=1.12.0; extra == \"docstest\"" ], "requires_python": ">=3.6", - "version": "38.0.4" + "version": "40.0.1" }, { "artifacts": [ @@ -502,13 +770,13 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "d84d17e21670ec07990e1044a99efe8d615d860fd176fc29ef5c306068fda313", - "url": "https://files.pythonhosted.org/packages/e1/16/1f59f5d87d256012e9cdf0e8af8810965fa253e835cfecce64f4b11d4f2d/importlib_metadata-5.1.0-py3-none-any.whl" + "hash": "ff80f3b5394912eb1b108fcfd444dc78b7f1f3e16b16188054bd01cb9cb86f09", + "url": "https://files.pythonhosted.org/packages/f8/7d/e3adad613703c86d62aa991b45d6f090cf59975078a8c8100b50a0c86948/importlib_metadata-6.1.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "d5059f9f1e8e41f80e9c56c2ee58811450c31984dfa625329ffd7c0dad88a73b", - "url": "https://files.pythonhosted.org/packages/32/5a/e0d75c8010295ae6746f379f5324bc726076dfc426548bfa6f0763fce870/importlib_metadata-5.1.0.tar.gz" + "hash": "43ce9281e097583d758c2c708c4376371261a02c34682491a8e98352365aad20", + "url": "https://files.pythonhosted.org/packages/e2/d8/3d431bade4598ad9e33be9da41d15e6607b878008e922d122659ab01b077/importlib_metadata-6.1.0.tar.gz" } ], "project_name": "importlib-metadata", @@ -531,12 +799,47 @@ "pytest-perf>=0.9.2; extra == \"testing\"", "pytest>=6; extra == \"testing\"", "rst.linker>=1.9; extra == \"docs\"", + "sphinx-lint; extra == \"docs\"", "sphinx>=3.5; extra == \"docs\"", "typing-extensions>=3.6.4; python_version < \"3.8\"", "zipp>=0.5" ], "requires_python": ">=3.7", - "version": "5.1" + "version": "6.1.0" + }, + { + "artifacts": [ + { + "algorithm": "sha256", + "hash": "7b1deeebbf351c7578e09bf2f63fa2ce8b5ffec296e0d349139d43cca061a81a", + "url": "https://files.pythonhosted.org/packages/38/71/c13ea695a4393639830bf96baea956538ba7a9d06fcce7cef10bfff20f72/importlib_resources-5.12.0-py3-none-any.whl" + }, + { + "algorithm": "sha256", + "hash": "4be82589bf5c1d7999aedf2a45159d10cb3ca4f19b2271f8792bc8e6da7b22f6", + "url": "https://files.pythonhosted.org/packages/4e/a2/3cab1de83f95dd15297c15bdc04d50902391d707247cada1f021bbfe2149/importlib_resources-5.12.0.tar.gz" + } + ], + "project_name": "importlib-resources", + "requires_dists": [ + "flake8<5; extra == \"testing\"", + "furo; extra == \"docs\"", + "jaraco.packaging>=9; extra == \"docs\"", + "jaraco.tidelift>=1.4; extra == \"docs\"", + "pytest-black>=0.3.7; platform_python_implementation != \"PyPy\" and extra == \"testing\"", + "pytest-checkdocs>=2.4; extra == \"testing\"", + "pytest-cov; extra == \"testing\"", + "pytest-enabler>=1.3; extra == \"testing\"", + "pytest-flake8; python_version < \"3.12\" and extra == \"testing\"", + "pytest-mypy>=0.9.1; platform_python_implementation != \"PyPy\" and extra == \"testing\"", + "pytest>=6; extra == \"testing\"", + "rst.linker>=1.9; extra == \"docs\"", + "sphinx-lint; extra == \"docs\"", + "sphinx>=3.5; extra == \"docs\"", + "zipp>=3.1.0; python_version < \"3.10\"" + ], + "requires_python": ">=3.7", + "version": "5.12.0" }, { "artifacts": [ @@ -595,19 +898,19 @@ "trio; extra == \"trio\"" ], "requires_python": ">=3.7", - "version": "0.8" + "version": "0.8.0" }, { "artifacts": [ { "algorithm": "sha256", - "hash": "3dd30011d555f1345dec2c262f0153f2f0ca6bca041fb1dc4588349bb4c0ac1e", - "url": "https://files.pythonhosted.org/packages/3a/12/3750c13e0301a65f90f29ed3d5c853d80cea0ef5ae387a5d6866c26685b6/keyring-23.11.0-py3-none-any.whl" + "hash": "771ed2a91909389ed6148631de678f82ddc73737d85a927f382a8a1b157898cd", + "url": "https://files.pythonhosted.org/packages/62/db/0e9a09b2b95986dcd73ac78be6ed2bd73ebe8bac65cba7add5b83eb9d899/keyring-23.13.1-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "ad192263e2cdd5f12875dedc2da13534359a7e760e77f8d04b50968a821c2361", - "url": "https://files.pythonhosted.org/packages/1c/35/c22960f14f5e17384296b2f09da259f8b5244fb3831eccec71cf948a49c6/keyring-23.11.0.tar.gz" + "hash": "ba2e15a9b35e21908d0aaf4e0a47acc52d6ae33444df0da2b49d41a46ef6d678", + "url": "https://files.pythonhosted.org/packages/55/fe/282f4c205add8e8bb3a1635cbbac59d6def2e0891b145aa553a0e40dd2d0/keyring-23.13.1.tar.gz" } ], "project_name": "keyring", @@ -616,6 +919,7 @@ "flake8<5; extra == \"testing\"", "furo; extra == \"docs\"", "importlib-metadata>=4.11.4; python_version < \"3.12\"", + "importlib-resources; python_version < \"3.9\"", "jaraco.classes", "jaraco.packaging>=9; extra == \"docs\"", "jaraco.tidelift>=1.4; extra == \"docs\"", @@ -624,45 +928,46 @@ "pytest-checkdocs>=2.4; extra == \"testing\"", "pytest-cov; extra == \"testing\"", "pytest-enabler>=1.3; extra == \"testing\"", - "pytest-flake8; extra == \"testing\"", + "pytest-flake8; python_version < \"3.12\" and extra == \"testing\"", "pytest-mypy>=0.9.1; platform_python_implementation != \"PyPy\" and extra == \"testing\"", "pytest>=6; extra == \"testing\"", - "pywin32-ctypes!=0.1.0,!=0.1.1; sys_platform == \"win32\"", + "pywin32-ctypes>=0.2.0; sys_platform == \"win32\"", "rst.linker>=1.9; extra == \"docs\"", + "shtab; extra == \"completion\"", "sphinx>=3.5; extra == \"docs\"" ], "requires_python": ">=3.7", - "version": "23.11" + "version": "23.13.1" }, { "artifacts": [ { "algorithm": "sha256", - "hash": "250e83d7e81d0c87ca6bd942e6aeab8cc9daa6096d12c5308f3f92fa5e5c1f41", - "url": "https://files.pythonhosted.org/packages/5d/87/1ec3fcc09d2c04b977eabf8a1083222f82eaa2f46d5a4f85f403bf8e7b30/more_itertools-9.0.0-py3-none-any.whl" + "hash": "d2bc7f02446e86a68911e58ded76d6561eea00cddfb2a91e7019bbb586c799f3", + "url": "https://files.pythonhosted.org/packages/85/01/e2678ee4e0d7eed4fd6be9e5b043fff9d22d245d06c8c91def8ced664189/more_itertools-9.1.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "5a6257e40878ef0520b1803990e3e22303a41b5714006c32a3fd8304b26ea1ab", - "url": "https://files.pythonhosted.org/packages/13/b3/397aa9668da8b1f0c307bc474608653d46122ae0563d1d32f60e24fa0cbd/more-itertools-9.0.0.tar.gz" + "hash": "cabaa341ad0389ea83c17a94566a53ae4c9d07349861ecb14dc6d0345cf9ac5d", + "url": "https://files.pythonhosted.org/packages/2e/d0/bea165535891bd1dcb5152263603e902c0ec1f4c9a2e152cc4adff6b3a38/more-itertools-9.1.0.tar.gz" } ], "project_name": "more-itertools", "requires_dists": [], "requires_python": ">=3.7", - "version": "9" + "version": "9.1.0" }, { "artifacts": [ { "algorithm": "sha256", - "hash": "d580059503f2f4549ad6e4c106d7437356dbd430e2c7df99ee1efe03d75f691e", - "url": "https://files.pythonhosted.org/packages/a8/c1/4237cf3bb3c8ba91d593d2196ffb8ac4c7122abf565d06678cfd48a71b5a/pkginfo-1.9.2-py3-none-any.whl" + "hash": "4b7a555a6d5a22169fcc9cf7bfd78d296b0361adad412a346c1226849af5e546", + "url": "https://files.pythonhosted.org/packages/b3/f2/6e95c86a23a30fa205ea6303a524b20cbae27fbee69216377e3d95266406/pkginfo-1.9.6-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "ac03e37e4d601aaee40f8087f63fc4a2a6c9814dda2c8fa6aab1b1829653bdfa", - "url": "https://files.pythonhosted.org/packages/12/d1/03b865975864a30d4a23f87fd5b9f816db2e4b2e8f4fe696a3238b749cc0/pkginfo-1.9.2.tar.gz" + "hash": "8fd5896e8718a4372f0ea9cc9d96f6417c9b986e23a4d116dda26b62cc29d046", + "url": "https://files.pythonhosted.org/packages/b4/1c/89b38e431c20d6b2389ed8b3926c2ab72f58944733ba029354c6d9f69129/pkginfo-1.9.6.tar.gz" } ], "project_name": "pkginfo", @@ -671,7 +976,7 @@ "pytest; extra == \"testing\"" ], "requires_python": ">=3.6", - "version": "1.9.2" + "version": "1.9.6" }, { "artifacts": [ @@ -695,13 +1000,13 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "f643f331ab57ba3c9d89212ee4a2dabc6e94f117cf4eefde99a0574720d14c42", - "url": "https://files.pythonhosted.org/packages/4f/82/672cd382e5b39ab1cd422a672382f08a1fb3d08d9e0c0f3707f33a52063b/Pygments-2.13.0-py3-none-any.whl" + "hash": "fa7bd7bd2771287c0de303af8bfdfc731f51bd2c6a47ab69d117138893b82717", + "url": "https://files.pythonhosted.org/packages/0b/42/d9d95cc461f098f204cd20c85642ae40fbff81f74c300341b8d0e0df14e0/Pygments-2.14.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "56a8508ae95f98e2b9bdf93a6be5ae3f7d8af858b43e02c5a2ff083726be40c1", - "url": "https://files.pythonhosted.org/packages/e0/ef/5905cd3642f2337d44143529c941cc3a02e5af16f0f65f81cbef7af452bb/Pygments-2.13.0.tar.gz" + "hash": "b3ed06a9e8ac9a9aae5a6f5dbe78a8a58655d17b43b93c078f094ddc476ae297", + "url": "https://files.pythonhosted.org/packages/da/6a/c427c06913204e24de28de5300d3f0e809933f376e0b7df95194b2bb3f71/Pygments-2.14.0.tar.gz" } ], "project_name": "pygments", @@ -709,7 +1014,7 @@ "importlib-metadata; python_version < \"3.8\" and extra == \"plugins\"" ], "requires_python": ">=3.6", - "version": "2.13" + "version": "2.14.0" }, { "artifacts": [ @@ -738,13 +1043,13 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349", - "url": "https://files.pythonhosted.org/packages/ca/91/6d9b8ccacd0412c08820f72cebaa4f0c0441b5cda699c90f618b6f8a1b42/requests-2.28.1-py3-none-any.whl" + "hash": "64299f4909223da747622c030b781c0d7811e359c37124b4bd368fb8c6518baa", + "url": "https://files.pythonhosted.org/packages/d2/f4/274d1dbe96b41cf4e0efb70cbced278ffd61b5c7bb70338b62af94ccb25b/requests-2.28.2-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983", - "url": "https://files.pythonhosted.org/packages/a5/61/a867851fd5ab77277495a8709ddda0861b28163c4613b011bc00228cc724/requests-2.28.1.tar.gz" + "hash": "98b1b2782e3c6c4904938b84c0eb932721069dfdb9134313beff7c83c2df24bf", + "url": "https://files.pythonhosted.org/packages/9d/ee/391076f5937f0a8cdf5e53b701ffc91753e87b07d66bae4a09aa671897bf/requests-2.28.2.tar.gz" } ], "project_name": "requests", @@ -752,12 +1057,12 @@ "PySocks!=1.5.7,>=1.5.6; extra == \"socks\"", "certifi>=2017.4.17", "chardet<6,>=3.0.2; extra == \"use_chardet_on_py3\"", - "charset-normalizer<3,>=2", + "charset-normalizer<4,>=2", "idna<4,>=2.5", "urllib3<1.27,>=1.21.1" ], "requires_python": "<4,>=3.7", - "version": "2.28.1" + "version": "2.28.2" }, { "artifacts": [ @@ -797,7 +1102,7 @@ "idna; extra == \"idna2008\"" ], "requires_python": ">=3.7", - "version": "2" + "version": "2.0.0" }, { "artifacts": [ @@ -836,25 +1141,24 @@ "project_name": "six", "requires_dists": [], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7", - "version": "1.16" + "version": "1.16.0" }, { "artifacts": [ { "algorithm": "sha256", - "hash": "6fee160d6ffcd1b1c68c65f14c829c22832bc401726335ce92c52d395944a6a1", - "url": "https://files.pythonhosted.org/packages/47/bb/849011636c4da2e44f1253cd927cfb20ada4374d8b3a4e425416e84900cc/tqdm-4.64.1-py2.py3-none-any.whl" + "hash": "c4f53a17fe37e132815abceec022631be8ffe1b9381c2e6e30aa70edc99e9671", + "url": "https://files.pythonhosted.org/packages/e6/02/a2cff6306177ae6bc73bc0665065de51dfb3b9db7373e122e2735faf0d97/tqdm-4.65.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "5f4f682a004951c1b450bc753c710e9280c5746ce6ffedee253ddbcbf54cf1e4", - "url": "https://files.pythonhosted.org/packages/c1/c2/d8a40e5363fb01806870e444fc1d066282743292ff32a9da54af51ce36a2/tqdm-4.64.1.tar.gz" + "hash": "1871fb68a86b8fb3b59ca4cdd3dcccbc7e6d613eeed31f4c332531977b89beb5", + "url": "https://files.pythonhosted.org/packages/3d/78/81191f56abb7d3d56963337dbdff6aa4f55805c8afd8bad64b0a34199e9b/tqdm-4.65.0.tar.gz" } ], "project_name": "tqdm", "requires_dists": [ "colorama; platform_system == \"Windows\"", - "importlib-resources; python_version < \"3.7\"", "ipywidgets>=6; extra == \"notebook\"", "py-make>=0.1.0; extra == \"dev\"", "requests; extra == \"telegram\"", @@ -862,8 +1166,8 @@ "twine; extra == \"dev\"", "wheel; extra == \"dev\"" ], - "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7", - "version": "4.64.1" + "requires_python": ">=3.7", + "version": "4.65.0" }, { "artifacts": [ @@ -897,31 +1201,31 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e", - "url": "https://files.pythonhosted.org/packages/0b/8e/f1a0a5a76cfef77e1eb6004cb49e5f8d72634da638420b9ea492ce8305e8/typing_extensions-4.4.0-py3-none-any.whl" + "hash": "fb33085c39dd998ac16d1431ebc293a8b3eedd00fd4a32de0ff79002c19511b4", + "url": "https://files.pythonhosted.org/packages/31/25/5abcd82372d3d4a3932e1fa8c3dbf9efac10cc7c0d16e78467460571b404/typing_extensions-4.5.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa", - "url": "https://files.pythonhosted.org/packages/e3/a7/8f4e456ef0adac43f452efc2d0e4b242ab831297f1bac60ac815d37eb9cf/typing_extensions-4.4.0.tar.gz" + "hash": "5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb", + "url": "https://files.pythonhosted.org/packages/d3/20/06270dac7316220643c32ae61694e451c98f8caf4c8eab3aa80a2bedf0df/typing_extensions-4.5.0.tar.gz" } ], "project_name": "typing-extensions", "requires_dists": [], "requires_python": ">=3.7", - "version": "4.4" + "version": "4.5.0" }, { "artifacts": [ { "algorithm": "sha256", - "hash": "47cc05d99aaa09c9e72ed5809b60e7ba354e64b59c9c173ac3018642d8bb41fc", - "url": "https://files.pythonhosted.org/packages/65/0c/cc6644eaa594585e5875f46f3c83ee8762b647b51fc5b0fb253a242df2dc/urllib3-1.26.13-py2.py3-none-any.whl" + "hash": "aa751d169e23c7479ce47a0cb0da579e3ede798f994f5816a74e4f4500dcea42", + "url": "https://files.pythonhosted.org/packages/7b/f5/890a0baca17a61c1f92f72b81d3c31523c99bec609e60c292ea55b387ae8/urllib3-1.26.15-py2.py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "c083dd0dce68dbfbe1129d5271cb90f9447dea7d52097c6e0126120c521ddea8", - "url": "https://files.pythonhosted.org/packages/c2/51/32da03cf19d17d46cce5c731967bf58de9bd71db3a379932f53b094deda4/urllib3-1.26.13.tar.gz" + "hash": "8a388717b9476f934a21484e8c8e61875ab60644d29b9b39e11e4b9dc1c6b305", + "url": "https://files.pythonhosted.org/packages/21/79/6372d8c0d0641b4072889f3ff84f279b738cd8595b64c8e0496d4e848122/urllib3-1.26.15.tar.gz" } ], "project_name": "urllib3", @@ -938,7 +1242,7 @@ "urllib3-secure-extra; extra == \"secure\"" ], "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7", - "version": "1.26.13" + "version": "1.26.15" }, { "artifacts": [ @@ -962,19 +1266,19 @@ "artifacts": [ { "algorithm": "sha256", - "hash": "83a28fcb75844b5c0cdaf5aa4003c2d728c77e05f5aeabe8e95e56727005fbaa", - "url": "https://files.pythonhosted.org/packages/d8/20/256eb3f3f437c575fb1a2efdce5e801a5ce3162ea8117da96c43e6ee97d8/zipp-3.11.0-py3-none-any.whl" + "hash": "48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556", + "url": "https://files.pythonhosted.org/packages/5b/fa/c9e82bbe1af6266adf08afb563905eb87cab83fde00a0a08963510621047/zipp-3.15.0-py3-none-any.whl" }, { "algorithm": "sha256", - "hash": "a7a22e05929290a67401440b39690ae6563279bced5f314609d9d03798f56766", - "url": "https://files.pythonhosted.org/packages/8e/b3/8b16a007184714f71157b1a71bbe632c5d66dd43bc8152b3c799b13881e1/zipp-3.11.0.tar.gz" + "hash": "112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b", + "url": "https://files.pythonhosted.org/packages/00/27/f0ac6b846684cecce1ee93d32450c45ab607f65c2e0255f0092032d91f07/zipp-3.15.0.tar.gz" } ], "project_name": "zipp", "requires_dists": [ + "big-O; extra == \"testing\"", "flake8<5; extra == \"testing\"", - "func-timeout; extra == \"testing\"", "furo; extra == \"docs\"", "jaraco.functools; extra == \"testing\"", "jaraco.itertools; extra == \"testing\"", @@ -989,17 +1293,18 @@ "pytest-mypy>=0.9.1; platform_python_implementation != \"PyPy\" and extra == \"testing\"", "pytest>=6; extra == \"testing\"", "rst.linker>=1.9; extra == \"docs\"", + "sphinx-lint; extra == \"docs\"", "sphinx>=3.5; extra == \"docs\"" ], "requires_python": ">=3.7", - "version": "3.11" + "version": "3.15.0" } ], "platform_tag": null } ], "path_mappings": {}, - "pex_version": "2.1.108", + "pex_version": "2.1.126", "pip_version": "20.3.4-patched", "prefer_older_binary": false, "requirements": [ From c75f621da85033927bcd6d7171dc8f8c0b591c4b Mon Sep 17 00:00:00 2001 From: Amanda McGuinness Date: Mon, 27 Mar 2023 16:09:09 +0000 Subject: [PATCH 5/7] Add changelog --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 748df0e577..a92e710cf2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -28,6 +28,9 @@ Added * Expose environment variable ST2_ACTION_DEBUG to all StackStorm actions. Contributed by @maxfactor1 +* Python 3.9 support. #5730 + Contributed by Amanda McGuinness (@amanda11 intive) + 3.8.0 - November 18, 2022 ------------------------- From ce898871b6e63991c174574b7f33e8cc20d0aca0 Mon Sep 17 00:00:00 2001 From: Jacob Floyd Date: Wed, 11 Oct 2023 15:55:49 -0500 Subject: [PATCH 6/7] Add support for py3.9 in pylint_plugins python3.9 removed the Slice type from the AST, so the property_name_node is not as deep as expected. --- pylint_plugins/api_models.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/pylint_plugins/api_models.py b/pylint_plugins/api_models.py index a5b3cf00bf..c4fef7e41e 100644 --- a/pylint_plugins/api_models.py +++ b/pylint_plugins/api_models.py @@ -147,11 +147,22 @@ def transform(cls: nodes.ClassDef): if ( isinstance(target, nodes.Subscript) and target.value.value.name == "schema" - and target.value.slice.value.value == "properties" ): - property_name_node = target.slice.value + if ( + isinstance(target.value.slice.value, nodes.Const) + and target.value.slice.value.value == "properties" + ): + property_name_node = target.slice.value + elif ( + isinstance(target.value.slice, nodes.Const) + and target.value.slice.value == "properties" + ): + property_name_node = target.slice + else: + # not schema["properties"] + continue else: - # not schema["properties"] + # not schema[...] continue except AttributeError: continue From a2cb99505a9292d93a6bdb479c545e3c13e53498 Mon Sep 17 00:00:00 2001 From: Jacob Floyd Date: Wed, 11 Oct 2023 16:07:33 -0500 Subject: [PATCH 7/7] Add support for py3.9 in pylint_plugins python3.9 removed the Slice type from the AST, so the property_name_node is not as deep as expected. --- pylint_plugins/api_models.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pylint_plugins/api_models.py b/pylint_plugins/api_models.py index c4fef7e41e..d2b7d7e9b3 100644 --- a/pylint_plugins/api_models.py +++ b/pylint_plugins/api_models.py @@ -152,11 +152,13 @@ def transform(cls: nodes.ClassDef): isinstance(target.value.slice.value, nodes.Const) and target.value.slice.value.value == "properties" ): + # python <3.9 property_name_node = target.slice.value elif ( isinstance(target.value.slice, nodes.Const) and target.value.slice.value == "properties" ): + # python 3.9+ property_name_node = target.slice else: # not schema["properties"] @@ -208,7 +210,12 @@ def transform(cls: nodes.ClassDef): # schema = {"properties": {"action": REQUIRED_ATTR_SCHEMAS["action"]}} if isinstance(property_data_node, nodes.Subscript): var_name = property_data_node.value.name - subscript = property_data_node.slice.value.value + if isinstance(property_data_node.slice.value, nodes.Const): # python <3.9 + subscript = property_data_node.slice.value.value + elif isinstance(property_data_node.slice, nodes.Const): # python 3.9+ + subscript = property_data_node.slice.value + else: + continue # lookup var by name (assume its at module level) var_node = next(cls.root().igetattr(var_name))