From bc176b306ddf553a8c671d1cfe8dcf2262215a96 Mon Sep 17 00:00:00 2001 From: Torsten Kilias Date: Tue, 16 May 2023 15:21:41 +0200 Subject: [PATCH 1/5] #792: Updated script-languages-container-tool to 0.17.0 and script-languages-container-ci to 1.1.0 (#799) * Updated poetry to 1.4.2 in GitHub workflows and extract the installation into an action * Fixed GitHub workflow publish-test-container --- .current_gitmodules | 2 +- .github/actions/prepare_poetry_env/action.yml | 20 + .github/workflows/check_package_diffs.yaml | 14 +- .github/workflows/check_version.yaml | 11 +- ...ase_droid_upload_github_release_assets.yml | 12 +- .github/workflows/test_release.yml | 12 +- doc/changes/changes_6.1.0.md | 4 +- poetry.lock | 1452 ++++++++--------- pyproject.toml | 4 +- script-languages | 2 +- 10 files changed, 761 insertions(+), 772 deletions(-) create mode 100644 .github/actions/prepare_poetry_env/action.yml diff --git a/.current_gitmodules b/.current_gitmodules index ea1f4934..da8afc4b 100644 --- a/.current_gitmodules +++ b/.current_gitmodules @@ -1 +1 @@ -160000 4cb6de499dd9c724b5a21db2450a31d36e19c732 0 script-languages +160000 bec91090bbcd320085b881fa03a527a659789312 0 script-languages diff --git a/.github/actions/prepare_poetry_env/action.yml b/.github/actions/prepare_poetry_env/action.yml new file mode 100644 index 00000000..01689b5c --- /dev/null +++ b/.github/actions/prepare_poetry_env/action.yml @@ -0,0 +1,20 @@ +name: 'Prepare Poetry environment' +description: 'This composite action installs Python, Poetry, and installs the project into the Poetry environment' +inputs: + python-version: + description: 'The Python version to use' + required: true + default: '3.8' +runs: + using: "composite" + steps: + - uses: actions/setup-python@v2 + with: + python-version: ${{ inputs.python-version }} + - uses: abatilo/actions-poetry@v2 + with: + poetry-version: 1.4.0 + - name: Poetry install + run: poetry install + shell: bash + diff --git a/.github/workflows/check_package_diffs.yaml b/.github/workflows/check_package_diffs.yaml index 5d9bd5fd..583df6c5 100644 --- a/.github/workflows/check_package_diffs.yaml +++ b/.github/workflows/check_package_diffs.yaml @@ -4,9 +4,6 @@ on: push: branches: - develop -# - master -# - main - pull_request: jobs: check_package_diff: @@ -14,18 +11,11 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Init submodules run: git submodule update --init --recursive - - name: Setup Python 3.8 - uses: actions/setup-python@v2 - with: - python-version: 3.8 - - - name: Install Poetry - uses: abatilo/actions-poetry@v2 - with: - poetry-version: 1.2.0 + - uses: ./.github/actions/prepare_poetry_env - name: Setup Poetry run: | diff --git a/.github/workflows/check_version.yaml b/.github/workflows/check_version.yaml index 840567f2..f5f75fa1 100644 --- a/.github/workflows/check_version.yaml +++ b/.github/workflows/check_version.yaml @@ -13,13 +13,8 @@ jobs: with: fetch-depth: 0 submodules: 'recursive' - - name: Setup Python 3.8 - uses: actions/setup-python@v2 - with: - python-version: 3.8 - - name: Install Poetry - uses: abatilo/actions-poetry@v2 - with: - poetry-version: 1.2.0 + + - uses: ./.github/actions/prepare_poetry_env + - name: Check Release run: ./scripts/check_release.sh "python3.8" diff --git a/.github/workflows/release_droid_upload_github_release_assets.yml b/.github/workflows/release_droid_upload_github_release_assets.yml index 1d380f90..bb021259 100644 --- a/.github/workflows/release_droid_upload_github_release_assets.yml +++ b/.github/workflows/release_droid_upload_github_release_assets.yml @@ -18,15 +18,7 @@ jobs: - name: Init submodules run: git submodule update --init --recursive - - name: Setup Python 3.8 for integration-test-docker-environment - uses: actions/setup-python@v2 - with: - python-version: 3.8 - - - name: Install Poetry - uses: abatilo/actions-poetry@v2 - with: - poetry-version: 1.2.0 + - uses: ./.github/actions/prepare_poetry_env - name: Setup poetry env run: bash scripts/setup_poetry_env.sh "python3.8" @@ -37,4 +29,4 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY_SECRET }} AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} - GITHUB_TOKEN: ${{ github.token }} \ No newline at end of file + GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/test_release.yml b/.github/workflows/test_release.yml index 3350441f..cb0d9680 100644 --- a/.github/workflows/test_release.yml +++ b/.github/workflows/test_release.yml @@ -18,15 +18,7 @@ jobs: - name: Init submodules run: git submodule update --init --recursive - - name: Setup Python 3.8 for integration-test-docker-environment - uses: actions/setup-python@v2 - with: - python-version: 3.8 - - - name: Install Poetry - uses: abatilo/actions-poetry@v2 - with: - poetry-version: 1.2.0 + - uses: ./.github/actions/prepare_poetry_env - name: Setup poetry env run: bash scripts/setup_poetry_env.sh "python3.8" @@ -37,4 +29,4 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY_SECRET }} AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} - GITHUB_TOKEN: ${{ github.token }} \ No newline at end of file + GITHUB_TOKEN: ${{ github.token }} diff --git a/doc/changes/changes_6.1.0.md b/doc/changes/changes_6.1.0.md index 3027894d..35b3b455 100644 --- a/doc/changes/changes_6.1.0.md +++ b/doc/changes/changes_6.1.0.md @@ -10,11 +10,11 @@ t.b.d. ## Script-Language-Container-Tool (Exaslct) -This release uses version 0.16.0 of the container tool. +This release uses version 0.17.0 of the container tool. ## Bug Fixes -n/a + - #792: Fixes Github workflow publish-test-container by updating script-languages-container-tool to 0.17.0 and script-languages-container-ci to 1.1.0 ## Features / Enhancements diff --git a/poetry.lock b/poetry.lock index 0511939d..fd1a5670 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,3 +1,5 @@ +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. + [[package]] name = "attrs" version = "23.1.0" @@ -5,6 +7,10 @@ description = "Classes Without Boilerplate" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] [package.extras] cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] @@ -15,14 +21,18 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte [[package]] name = "boto3" -version = "1.26.124" +version = "1.26.134" description = "The AWS SDK for Python" category = "main" optional = false python-versions = ">= 3.7" +files = [ + {file = "boto3-1.26.134-py3-none-any.whl", hash = "sha256:a49b47621c71adfa952127222809ae50867ae4fd249bb932eb1a98519baefa40"}, + {file = "boto3-1.26.134.tar.gz", hash = "sha256:2da4a4caa789312ae73d29be9d3e79ce3328e3aaf7e9de0da6f243455ad3aae6"}, +] [package.dependencies] -botocore = ">=1.29.124,<1.30.0" +botocore = ">=1.29.134,<1.30.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.6.0,<0.7.0" @@ -31,11 +41,15 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.29.124" +version = "1.29.134" description = "Low-level, data-driven core of boto 3." category = "main" optional = false python-versions = ">= 3.7" +files = [ + {file = "botocore-1.29.134-py3-none-any.whl", hash = "sha256:8a070ee14a430bd3c9cd16fd142e5c2900749060490698b2b981d6d9dadf5f1f"}, + {file = "botocore-1.29.134.tar.gz", hash = "sha256:0e907b0cab771ab7c9e25efd6b6bc0041ec1b17eb0bab316fd012ef2f8fd99ba"}, +] [package.dependencies] jmespath = ">=0.7.1,<2.0.0" @@ -47,11 +61,15 @@ crt = ["awscrt (==0.16.9)"] [[package]] name = "certifi" -version = "2022.12.7" +version = "2023.5.7" description = "Python package for providing Mozilla's CA Bundle." category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, + {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, +] [[package]] name = "cffi" @@ -60,6 +78,72 @@ description = "Foreign Function Interface for Python calling C code." category = "main" optional = false python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] [package.dependencies] pycparser = "*" @@ -71,6 +155,83 @@ description = "The Real First Universal Charset Detector. Open, modern and activ category = "main" optional = false python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] [[package]] name = "click" @@ -79,6 +240,10 @@ description = "Composable command line interface toolkit" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} @@ -90,6 +255,10 @@ description = "Cross-platform colored terminal text." category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] [[package]] name = "cryptography" @@ -98,6 +267,27 @@ description = "cryptography is a package which provides cryptographic recipes an category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "cryptography-40.0.2-cp36-abi3-macosx_10_12_universal2.whl", hash = "sha256:8f79b5ff5ad9d3218afb1e7e20ea74da5f76943ee5edb7f76e56ec5161ec782b"}, + {file = "cryptography-40.0.2-cp36-abi3-macosx_10_12_x86_64.whl", hash = "sha256:05dc219433b14046c476f6f09d7636b92a1c3e5808b9a6536adf4932b3b2c440"}, + {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4df2af28d7bedc84fe45bd49bc35d710aede676e2a4cb7fc6d103a2adc8afe4d"}, + {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dcca15d3a19a66e63662dc8d30f8036b07be851a8680eda92d079868f106288"}, + {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:a04386fb7bc85fab9cd51b6308633a3c271e3d0d3eae917eebab2fac6219b6d2"}, + {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:adc0d980fd2760c9e5de537c28935cc32b9353baaf28e0814df417619c6c8c3b"}, + {file = "cryptography-40.0.2-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d5a1bd0e9e2031465761dfa920c16b0065ad77321d8a8c1f5ee331021fda65e9"}, + {file = "cryptography-40.0.2-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:a95f4802d49faa6a674242e25bfeea6fc2acd915b5e5e29ac90a32b1139cae1c"}, + {file = "cryptography-40.0.2-cp36-abi3-win32.whl", hash = "sha256:aecbb1592b0188e030cb01f82d12556cf72e218280f621deed7d806afd2113f9"}, + {file = "cryptography-40.0.2-cp36-abi3-win_amd64.whl", hash = "sha256:b12794f01d4cacfbd3177b9042198f3af1c856eedd0a98f10f141385c809a14b"}, + {file = "cryptography-40.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:142bae539ef28a1c76794cca7f49729e7c54423f615cfd9b0b1fa90ebe53244b"}, + {file = "cryptography-40.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:956ba8701b4ffe91ba59665ed170a2ebbdc6fc0e40de5f6059195d9f2b33ca0e"}, + {file = "cryptography-40.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4f01c9863da784558165f5d4d916093737a75203a5c5286fde60e503e4276c7a"}, + {file = "cryptography-40.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:3daf9b114213f8ba460b829a02896789751626a2a4e7a43a28ee77c04b5e4958"}, + {file = "cryptography-40.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48f388d0d153350f378c7f7b41497a54ff1513c816bcbbcafe5b829e59b9ce5b"}, + {file = "cryptography-40.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c0764e72b36a3dc065c155e5b22f93df465da9c39af65516fe04ed3c68c92636"}, + {file = "cryptography-40.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:cbaba590180cba88cb99a5f76f90808a624f18b169b90a4abb40c1fd8c19420e"}, + {file = "cryptography-40.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7a38250f433cd41df7fcb763caa3ee9362777fdb4dc642b9a349721d2bf47404"}, + {file = "cryptography-40.0.2.tar.gz", hash = "sha256:c33c0d32b8594fa647d2e01dbccc303478e16fdd7cf98652d5b3ed11aa5e5c99"}, +] [package.dependencies] cffi = ">=1.12" @@ -113,12 +303,16 @@ test-randomorder = ["pytest-randomly"] tox = ["tox"] [[package]] -name = "Deprecated" +name = "deprecated" version = "1.2.13" description = "Python @deprecated decorator to deprecate old python classes, functions or methods." category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "Deprecated-1.2.13-py2.py3-none-any.whl", hash = "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d"}, + {file = "Deprecated-1.2.13.tar.gz", hash = "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d"}, +] [package.dependencies] wrapt = ">=1.10,<2" @@ -128,11 +322,15 @@ dev = ["PyTest", "PyTest (<5)", "PyTest-Cov", "PyTest-Cov (<2.6)", "bump2version [[package]] name = "docker" -version = "6.0.1" +version = "6.1.2" description = "A Python library for the Docker Engine API." category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "docker-6.1.2-py3-none-any.whl", hash = "sha256:134cd828f84543cbf8e594ff81ca90c38288df3c0a559794c12f2e4b634ea19e"}, + {file = "docker-6.1.2.tar.gz", hash = "sha256:dcc088adc2ec4e7cfc594e275d8bd2c9738c56c808de97476939ef67db5af8c2"}, +] [package.dependencies] packaging = ">=14.0" @@ -145,11 +343,15 @@ ssh = ["paramiko (>=2.4.3)"] [[package]] name = "docutils" -version = "0.19" +version = "0.20" description = "Docutils -- Python Documentation Utilities" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "docutils-0.20-py3-none-any.whl", hash = "sha256:a428f10de4de4774389734c986a01b4af2d802d26717108b0f1b9356862937c5"}, + {file = "docutils-0.20.tar.gz", hash = "sha256:f75a5a52fbcacd81b47e42888ad2b380748aaccfb3f13af0fe69deb759f01eb6"}, +] [[package]] name = "exasol-bucketfs" @@ -158,6 +360,10 @@ description = "BucketFS utilities for the Python programming language" category = "main" optional = false python-versions = ">=3.8,<4.0" +files = [ + {file = "exasol_bucketfs-0.8.0-py3-none-any.whl", hash = "sha256:3bdee82faded20f65b559ba154d2f17812c62af8d0642ff0dac8ab4d996ba0e0"}, + {file = "exasol_bucketfs-0.8.0.tar.gz", hash = "sha256:924a757bc6608fe29a9bbe6ddd4240583410669f8958f9859df874f7e57b4bc9"}, +] [package.dependencies] joblib = ">=1.0.1" @@ -171,14 +377,22 @@ description = "Exasol Python Error Reporting" category = "main" optional = false python-versions = ">=3.8,<4.0" +files = [ + {file = "exasol-error-reporting-python-0.3.0.tar.gz", hash = "sha256:5b417e21408743d3191cface1b3cadfd40d8db0b88a88ee58f753ffcedaa2e5a"}, + {file = "exasol_error_reporting_python-0.3.0-py3-none-any.whl", hash = "sha256:727c429118b80e07715530d3b9159e8e43502bef2da34cbbac3c79465c901ce8"}, +] [[package]] name = "exasol-integration-test-docker-environment" -version = "1.5.0" +version = "1.6.0" description = "Integration Test Docker Environment for Exasol" category = "main" optional = false python-versions = ">=3.8,<4" +files = [ + {file = "exasol_integration_test_docker_environment-1.6.0-py3-none-any.whl", hash = "sha256:81f9c10eb5f62c7fabf77adaf72582ff7b238a94aaf00df39c859f096b9e5297"}, + {file = "exasol_integration_test_docker_environment-1.6.0.tar.gz", hash = "sha256:aa0208bb6e753c3c359723d5b260e29816565b249cbed8bdc81581759594fb56"}, +] [package.dependencies] click = ">=7.0" @@ -201,16 +415,20 @@ simplejson = ">=3.16.0" [[package]] name = "exasol-script-languages-container-ci" -version = "1.0.0" +version = "1.1.0" description = "Implements CI builds for script-language-container." category = "main" optional = false python-versions = ">=3.8.0,<4.0" +files = [ + {file = "exasol_script_languages_container_ci-1.1.0-py3-none-any.whl", hash = "sha256:1034fc0d93accf18a04df002f50bdc6bf514a0dbdee746c5aaeedb176ca5bbd0"}, + {file = "exasol_script_languages_container_ci-1.1.0.tar.gz", hash = "sha256:7e970733273d6873318f74193e5a2e1e478081d3ed32a0af3f180b036e130106"}, +] [package.dependencies] click = ">=8.0.3,<9.0.0" exasol-integration-test-docker-environment = ">=1.4.0,<2.0.0" -exasol-script-languages-container-tool = "0.16.0" +exasol-script-languages-container-tool = ">=0.17.0,<0.18.0" GitPython = ">=3.1.0" PyGithub = ">=1.55.0,<2.0.0" setuptools = ">=67.6.0,<68.0.0" @@ -222,6 +440,10 @@ description = "Manages AWS cloud CI build infrastructure." category = "main" optional = false python-versions = ">=3.8.0,<4.0" +files = [ + {file = "exasol-script-languages-container-ci-setup-1.0.0.tar.gz", hash = "sha256:0145f5db346e129ac30f1a0490c4acda84a5ffbfff948bc36b6b72b5ac75295a"}, + {file = "exasol_script_languages_container_ci_setup-1.0.0-py3-none-any.whl", hash = "sha256:37e3595e30880257cfa22d841d89ecbf09447fd06240e58d8eb386d317a38c85"}, +] [package.dependencies] boto3 = ">=1.22.0,<2.0.0" @@ -234,14 +456,18 @@ PyGithub = ">=1.55.0,<2.0.0" [[package]] name = "exasol-script-languages-container-tool" -version = "0.16.0" +version = "0.17.0" description = "Script Languages Container Tool" category = "main" optional = false python-versions = ">=3.8,<4" +files = [ + {file = "exasol_script_languages_container_tool-0.17.0-py3-none-any.whl", hash = "sha256:53d6b1c93d256c9b2d0ce24895094db0a80891d2b649bc5acf4705727b670646"}, + {file = "exasol_script_languages_container_tool-0.17.0.tar.gz", hash = "sha256:bf04a2881e4baf4beb454c02e8a506698b0e52fa2cdd30a8f879d62ac28b716f"}, +] [package.dependencies] -exasol-integration-test-docker-environment = ">=1.4.0,<2.0.0" +exasol-integration-test-docker-environment = ">=1.6.0,<2.0.0" importlib_metadata = ">=4.6.0" importlib-resources = ">=5.4.0" networkx = "2.8.2" @@ -254,6 +480,10 @@ description = "Backport of PEP 654 (exception groups)" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"}, + {file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"}, +] [package.extras] test = ["pytest (>=6)"] @@ -265,17 +495,25 @@ description = "Git Object Database" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "gitdb-4.0.10-py3-none-any.whl", hash = "sha256:c286cf298426064079ed96a9e4a9d39e7f3e9bf15ba60701e95f5492f28415c7"}, + {file = "gitdb-4.0.10.tar.gz", hash = "sha256:6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a"}, +] [package.dependencies] smmap = ">=3.0.1,<6" [[package]] -name = "GitPython" +name = "gitpython" version = "3.1.31" description = "GitPython is a Python library used to interact with Git repositories" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "GitPython-3.1.31-py3-none-any.whl", hash = "sha256:f04893614f6aa713a60cbbe1e6a97403ef633103cdd0ef5eb6efe0deb98dbe8d"}, + {file = "GitPython-3.1.31.tar.gz", hash = "sha256:8ce3bcf69adfdf7c7d503e78fd3b1c492af782d58893b650adb2ac8912ddd573"}, +] [package.dependencies] gitdb = ">=4.0.1,<5" @@ -287,6 +525,10 @@ description = "Human friendly output for text interfaces using Python" category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477"}, + {file = "humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc"}, +] [package.dependencies] pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_version >= \"3.8\""} @@ -298,6 +540,10 @@ description = "Internationalized Domain Names in Applications (IDNA)" category = "main" optional = false python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] [[package]] name = "importlib-metadata" @@ -306,6 +552,10 @@ description = "Read metadata from Python packages" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "importlib_metadata-6.6.0-py3-none-any.whl", hash = "sha256:43dd286a2cd8995d5eaef7fee2066340423b818ed3fd70adf0bad5f1fac53fed"}, + {file = "importlib_metadata-6.6.0.tar.gz", hash = "sha256:92501cdf9cc66ebd3e612f1b4f0c0765dfa42f0fa38ffb319b6bd84dd675d705"}, +] [package.dependencies] zipp = ">=0.5" @@ -322,6 +572,10 @@ description = "Read resources from Python packages" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "importlib_resources-5.12.0-py3-none-any.whl", hash = "sha256:7b1deeebbf351c7578e09bf2f63fa2ce8b5ffec296e0d349139d43cca061a81a"}, + {file = "importlib_resources-5.12.0.tar.gz", hash = "sha256:4be82589bf5c1d7999aedf2a45159d10cb3ca4f19b2271f8792bc8e6da7b22f6"}, +] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} @@ -337,14 +591,22 @@ description = "brain-dead simple config-ini parsing" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, +] [[package]] -name = "Jinja2" +name = "jinja2" version = "3.1.2" description = "A very fast and expressive template engine." category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] [package.dependencies] MarkupSafe = ">=2.0" @@ -359,6 +621,10 @@ description = "JSON Matching Expressions" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, + {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, +] [[package]] name = "joblib" @@ -367,6 +633,10 @@ description = "Lightweight pipelining with Python functions" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "joblib-1.2.0-py3-none-any.whl", hash = "sha256:091138ed78f800342968c523bdde947e7a305b8594b910a0fea2ab83c3c6d385"}, + {file = "joblib-1.2.0.tar.gz", hash = "sha256:e1cee4a79e4af22881164f218d4311f60074197fb707e082e803b61f6d137018"}, +] [[package]] name = "jsonpickle" @@ -375,11 +645,15 @@ description = "Python library for serializing any arbitrary object graph into JS category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "jsonpickle-3.0.1-py2.py3-none-any.whl", hash = "sha256:130d8b293ea0add3845de311aaba55e6d706d0bb17bc123bd2c8baf8a39ac77c"}, + {file = "jsonpickle-3.0.1.tar.gz", hash = "sha256:032538804795e73b94ead410800ac387fdb6de98f8882ac957fcd247e3a85200"}, +] [package.extras] docs = ["jaraco.packaging (>=3.2)", "rst.linker (>=1.9)", "sphinx"] testing = ["ecdsa", "feedparser", "gmpy2", "numpy", "pandas", "pymongo", "pytest (>=3.5,!=3.7.3)", "pytest-black-multipy", "pytest-checkdocs (>=1.2.3)", "pytest-cov", "pytest-flake8 (>=1.1.1)", "scikit-learn", "sqlalchemy"] -"testing.libs" = ["simplejson", "ujson"] +testing-libs = ["simplejson", "ujson"] [[package]] name = "jsonschema" @@ -388,6 +662,10 @@ description = "An implementation of JSON Schema validation for Python" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, + {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, +] [package.dependencies] attrs = ">=17.4.0" @@ -406,14 +684,21 @@ description = "Platform-independent file locking module" category = "main" optional = false python-versions = "*" +files = [ + {file = "lockfile-0.12.2-py2.py3-none-any.whl", hash = "sha256:6c3cb24f344923d30b2785d5ad75182c8ea7ac1b6171b08657258ec7429d50fa"}, + {file = "lockfile-0.12.2.tar.gz", hash = "sha256:6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799"}, +] [[package]] name = "luigi" -version = "3.2.1" +version = "3.3.0" description = "Workflow mgmgt + task scheduling + dependency resolution." category = "main" optional = false python-versions = "*" +files = [ + {file = "luigi-3.3.0.tar.gz", hash = "sha256:cc8642deb6e22f0601ee8df8ad3de639a81521b7e663a7a5044919185ad2b357"}, +] [package.dependencies] python-daemon = "*" @@ -427,31 +712,91 @@ prometheus = ["prometheus-client (>=0.5,<0.15)"] toml = ["toml (<2.0.0)"] [[package]] -name = "MarkupSafe" +name = "markupsafe" version = "2.1.2" description = "Safely add untrusted strings to HTML/XML markup." category = "main" optional = false python-versions = ">=3.7" - -[[package]] -name = "netaddr" -version = "0.8.0" -description = "A network address manipulation library for Python" -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "networkx" -version = "2.8.2" -description = "Python package for creating and manipulating graphs and networks" -category = "main" -optional = false -python-versions = ">=3.8" - -[package.extras] -default = ["matplotlib (>=3.4)", "numpy (>=1.19)", "pandas (>=1.3)", "scipy (>=1.8)"] +files = [ + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:665a36ae6f8f20a4676b53224e33d456a6f5a72657d9c83c2aa00765072f31f7"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:340bea174e9761308703ae988e982005aedf427de816d1afe98147668cc03036"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22152d00bf4a9c7c83960521fc558f55a1adbc0631fbb00a9471e097b19d72e1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28057e985dace2f478e042eaa15606c7efccb700797660629da387eb289b9323"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca244fa73f50a800cf8c3ebf7fd93149ec37f5cb9596aa8873ae2c1d23498601"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9d971ec1e79906046aa3ca266de79eac42f1dbf3612a05dc9368125952bd1a1"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7e007132af78ea9df29495dbf7b5824cb71648d7133cf7848a2a5dd00d36f9ff"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7313ce6a199651c4ed9d7e4cfb4aa56fe923b1adf9af3b420ee14e6d9a73df65"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win32.whl", hash = "sha256:c4a549890a45f57f1ebf99c067a4ad0cb423a05544accaf2b065246827ed9603"}, + {file = "MarkupSafe-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:835fb5e38fd89328e9c81067fd642b3593c33e1e17e2fdbf77f5676abb14a156"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2ec4f2d48ae59bbb9d1f9d7efb9236ab81429a764dedca114f5fdabbc3788013"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608e7073dfa9e38a85d38474c082d4281f4ce276ac0010224eaba11e929dd53a"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65608c35bfb8a76763f37036547f7adfd09270fbdbf96608be2bead319728fcd"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2bfb563d0211ce16b63c7cb9395d2c682a23187f54c3d79bfec33e6705473c6"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da25303d91526aac3672ee6d49a2f3db2d9502a4a60b55519feb1a4c7714e07d"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9cad97ab29dfc3f0249b483412c85c8ef4766d96cdf9dcf5a1e3caa3f3661cf1"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1bea30e9bf331f3fef67e0a3877b2288593c98a21ccb2cf29b74c581a4eb3af0"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win32.whl", hash = "sha256:7df70907e00c970c60b9ef2938d894a9381f38e6b9db73c5be35e59d92e06625"}, + {file = "MarkupSafe-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:e55e40ff0cc8cc5c07996915ad367fa47da6b3fc091fdadca7f5403239c5fec3"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a6e40afa7f45939ca356f348c8e23048e02cb109ced1eb8420961b2f40fb373a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf877ab4ed6e302ec1d04952ca358b381a882fbd9d1b07cccbfd61783561f98a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63ba06c9941e46fa389d389644e2d8225e0e3e5ebcc4ff1ea8506dce646f8c8a"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1cd098434e83e656abf198f103a8207a8187c0fc110306691a2e94a78d0abb2"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:55f44b440d491028addb3b88f72207d71eeebfb7b5dbf0643f7c023ae1fba619"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a6f2fcca746e8d5910e18782f976489939d54a91f9411c32051b4aab2bd7c513"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b462104ba25f1ac006fdab8b6a01ebbfbce9ed37fd37fd4acd70c67c973e460"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win32.whl", hash = "sha256:7668b52e102d0ed87cb082380a7e2e1e78737ddecdde129acadb0eccc5423859"}, + {file = "MarkupSafe-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6d6607f98fcf17e534162f0709aaad3ab7a96032723d8ac8750ffe17ae5a0666"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a806db027852538d2ad7555b203300173dd1b77ba116de92da9afbc3a3be3eed"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a4abaec6ca3ad8660690236d11bfe28dfd707778e2442b45addd2f086d6ef094"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f03a532d7dee1bed20bc4884194a16160a2de9ffc6354b3878ec9682bb623c54"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cf06cdc1dda95223e9d2d3c58d3b178aa5dacb35ee7e3bbac10e4e1faacb419"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22731d79ed2eb25059ae3df1dfc9cb1546691cc41f4e3130fe6bfbc3ecbbecfa"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f8ffb705ffcf5ddd0e80b65ddf7bed7ee4f5a441ea7d3419e861a12eaf41af58"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8db032bf0ce9022a8e41a22598eefc802314e81b879ae093f36ce9ddf39ab1ba"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2298c859cfc5463f1b64bd55cb3e602528db6fa0f3cfd568d3605c50678f8f03"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win32.whl", hash = "sha256:50c42830a633fa0cf9e7d27664637532791bfc31c731a87b202d2d8ac40c3ea2"}, + {file = "MarkupSafe-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:bb06feb762bade6bf3c8b844462274db0c76acc95c52abe8dbed28ae3d44a147"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99625a92da8229df6d44335e6fcc558a5037dd0a760e11d84be2260e6f37002f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bca7e26c1dd751236cfb0c6c72d4ad61d986e9a41bbf76cb445f69488b2a2bd"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40627dcf047dadb22cd25ea7ecfe9cbf3bbbad0482ee5920b582f3809c97654f"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40dfd3fefbef579ee058f139733ac336312663c6706d1163b82b3003fb1925c4"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:090376d812fb6ac5f171e5938e82e7f2d7adc2b629101cec0db8b267815c85e2"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2e7821bffe00aa6bd07a23913b7f4e01328c3d5cc0b40b36c0bd81d362faeb65"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c0a33bc9f02c2b17c3ea382f91b4db0e6cde90b63b296422a939886a7a80de1c"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b8526c6d437855442cdd3d87eede9c425c4445ea011ca38d937db299382e6fa3"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win32.whl", hash = "sha256:137678c63c977754abe9086a3ec011e8fd985ab90631145dfb9294ad09c102a7"}, + {file = "MarkupSafe-2.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed"}, + {file = "MarkupSafe-2.1.2.tar.gz", hash = "sha256:abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d"}, +] + +[[package]] +name = "netaddr" +version = "0.8.0" +description = "A network address manipulation library for Python" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "netaddr-0.8.0-py2.py3-none-any.whl", hash = "sha256:9666d0232c32d2656e5e5f8d735f58fd6c7457ce52fc21c98d45f2af78f990ac"}, + {file = "netaddr-0.8.0.tar.gz", hash = "sha256:d6cc57c7a07b1d9d2e917aa8b36ae8ce61c35ba3fcd1b83ca31c5a0ee2b5a243"}, +] + +[[package]] +name = "networkx" +version = "2.8.2" +description = "Python package for creating and manipulating graphs and networks" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "networkx-2.8.2-py3-none-any.whl", hash = "sha256:51d6ae63c24dcd33901357688a2ad20d6bcd38f9a4c5307720048d3a8081059c"}, + {file = "networkx-2.8.2.tar.gz", hash = "sha256:ae99c9b0d35e5b4a62cf1cfea01e5b3633d8d02f4a0ead69685b6e7de5b85eab"}, +] + +[package.extras] +default = ["matplotlib (>=3.4)", "numpy (>=1.19)", "pandas (>=1.3)", "scipy (>=1.8)"] developer = ["mypy (>=0.942)", "pre-commit (>=2.18)"] doc = ["nb2plots (>=0.6)", "numpydoc (>=1.3)", "pillow (>=9.1)", "pydata-sphinx-theme (>=0.8.1)", "sphinx (>=4.5)", "sphinx-gallery (>=0.10)", "texext (>=0.6.6)"] extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.9)", "sympy (>=1.10)"] @@ -464,14 +809,22 @@ description = "Core utilities for Python packages" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] [[package]] -name = "pkgutil_resolve_name" +name = "pkgutil-resolve-name" version = "1.3.10" description = "Resolve a name to an object." category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl", hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e"}, + {file = "pkgutil_resolve_name-1.3.10.tar.gz", hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174"}, +] [[package]] name = "pluggy" @@ -480,6 +833,10 @@ description = "plugin and hook calling mechanisms for python" category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, +] [package.extras] dev = ["pre-commit", "tox"] @@ -492,6 +849,10 @@ description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, +] [[package]] name = "pycparser" @@ -500,6 +861,10 @@ description = "C parser in Python" category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] [[package]] name = "pydot" @@ -508,6 +873,10 @@ description = "Python interface to Graphviz's Dot" category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pydot-1.4.2-py2.py3-none-any.whl", hash = "sha256:66c98190c65b8d2e2382a441b4c0edfdb4f4c025ef9cb9874de478fb0793a451"}, + {file = "pydot-1.4.2.tar.gz", hash = "sha256:248081a39bcb56784deb018977e428605c1c758f10897a339fce1dd728ff007d"}, +] [package.dependencies] pyparsing = ">=2.1.4" @@ -519,6 +888,10 @@ description = "Exasol python driver with extra features" category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "pyexasol-0.25.2-py3-none-any.whl", hash = "sha256:54be5c75f0867a4838b84b5b5a37466c33fa9b1ca6bf51d9c3d821d367936e6e"}, + {file = "pyexasol-0.25.2.tar.gz", hash = "sha256:3b42cb2c32b7b2ffe7a78c82bf21c3a391043758f2a575c48460252a72386691"}, +] [package.dependencies] packaging = "*" @@ -534,12 +907,16 @@ rapidjson = ["python-rapidjson"] ujson = ["ujson"] [[package]] -name = "PyGithub" -version = "1.58.1" +name = "pygithub" +version = "1.58.2" description = "Use the full Github API v3" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "PyGithub-1.58.2-py3-none-any.whl", hash = "sha256:f435884af617c6debaa76cbc355372d1027445a56fbc39972a3b9ed4968badc8"}, + {file = "PyGithub-1.58.2.tar.gz", hash = "sha256:1e6b1b7afe31f75151fb81f7ab6b984a7188a852bdb123dbb9ae90023c3ce60f"}, +] [package.dependencies] deprecated = "*" @@ -548,12 +925,16 @@ pynacl = ">=1.4.0" requests = ">=2.14.0" [[package]] -name = "PyJWT" -version = "2.6.0" +name = "pyjwt" +version = "2.7.0" description = "JSON Web Token implementation in Python" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "PyJWT-2.7.0-py3-none-any.whl", hash = "sha256:ba2b425b15ad5ef12f200dc67dd56af4e26de2331f965c5439994dad075876e1"}, + {file = "PyJWT-2.7.0.tar.gz", hash = "sha256:bd6ca4a3c4285c1a2d4349e5a035fdf8fb94e04ccd0fcbe6ba289dae9cc3e074"}, +] [package.dependencies] cryptography = {version = ">=3.4.0", optional = true, markers = "extra == \"crypto\""} @@ -565,27 +946,43 @@ docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] -name = "PyNaCl" +name = "pynacl" version = "1.5.0" description = "Python binding to the Networking and Cryptography (NaCl) library" category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858"}, + {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b"}, + {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff"}, + {file = "PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543"}, + {file = "PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93"}, + {file = "PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba"}, +] [package.dependencies] cffi = ">=1.4.1" [package.extras] -docs = ["sphinx (>=1.6.5)", "sphinx_rtd_theme"] +docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"] tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] [[package]] -name = "pyOpenSSL" +name = "pyopenssl" version = "23.1.1" description = "Python wrapper module around the OpenSSL library" category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "pyOpenSSL-23.1.1-py3-none-any.whl", hash = "sha256:9e0c526404a210df9d2b18cd33364beadb0dc858a739b885677bc65e105d4a4c"}, + {file = "pyOpenSSL-23.1.1.tar.gz", hash = "sha256:841498b9bec61623b1b6c47ebbc02367c07d60e0e195f19790817f10cc8db0b7"}, +] [package.dependencies] cryptography = ">=38.0.0,<41" @@ -601,6 +998,10 @@ description = "pyparsing module - Classes and methods to define and execute pars category = "main" optional = false python-versions = ">=3.6.8" +files = [ + {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, + {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, +] [package.extras] diagrams = ["jinja2", "railroad-diagrams"] @@ -612,6 +1013,10 @@ description = "A python implementation of GNU readline." category = "main" optional = false python-versions = "*" +files = [ + {file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"}, + {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, +] [[package]] name = "pyrsistent" @@ -620,6 +1025,35 @@ description = "Persistent/Functional/Immutable data structures" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, + {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, + {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, + {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, + {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, + {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, +] [[package]] name = "pytest" @@ -628,6 +1062,10 @@ description = "pytest: simple powerful testing with Python" category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pytest-7.3.1-py3-none-any.whl", hash = "sha256:3799fa815351fea3a5e96ac7e503a96fa51cc9942c3753cda7651b93c1cfa362"}, + {file = "pytest-7.3.1.tar.gz", hash = "sha256:434afafd78b1d78ed0addf160ad2b77a30d35d4bdf8af234fe621919d9ed15e3"}, +] [package.dependencies] colorama = {version = "*", markers = "sys_platform == \"win32\""} @@ -647,6 +1085,10 @@ description = "Library to implement a well-behaved Unix daemon process." category = "main" optional = false python-versions = ">=3" +files = [ + {file = "python-daemon-3.0.1.tar.gz", hash = "sha256:6c57452372f7eaff40934a1c03ad1826bf5e793558e87fef49131e6464b4dae5"}, + {file = "python_daemon-3.0.1-py3-none-any.whl", hash = "sha256:42bb848a3260a027fa71ad47ecd959e471327cb34da5965962edd5926229f341"}, +] [package.dependencies] docutils = "*" @@ -664,27 +1106,35 @@ description = "Extensions to the standard Python datetime module" category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] [package.dependencies] six = ">=1.5" [[package]] name = "requests" -version = "2.29.0" +version = "2.30.0" description = "Python HTTP for Humans." category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "requests-2.30.0-py3-none-any.whl", hash = "sha256:10e94cc4f3121ee6da529d358cdaeaff2f1c409cd377dbc72b825852f2f7e294"}, + {file = "requests-2.30.0.tar.gz", hash = "sha256:239d7d4458afcb28a692cdd298d87542235f4ca8d36d03a15bfc128a6559a2f4"}, +] [package.dependencies] certifi = ">=2017.4.17" charset-normalizer = ">=2,<4" idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<1.27" +urllib3 = ">=1.21.1,<3" [package.extras] socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "rsa" @@ -693,17 +1143,25 @@ description = "Pure-Python RSA implementation" category = "main" optional = false python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] [package.dependencies] pyasn1 = ">=0.1.3" [[package]] name = "s3transfer" -version = "0.6.0" +version = "0.6.1" description = "An Amazon S3 Transfer Manager" category = "main" optional = false python-versions = ">= 3.7" +files = [ + {file = "s3transfer-0.6.1-py3-none-any.whl", hash = "sha256:3c0da2d074bf35d6870ef157158641178a4204a6e689e82546083e31e0311346"}, + {file = "s3transfer-0.6.1.tar.gz", hash = "sha256:640bb492711f4c0c0905e1f62b6aaeb771881935ad27884852411f8e9cacbca9"}, +] [package.dependencies] botocore = ">=1.12.36,<2.0a.0" @@ -718,6 +1176,10 @@ description = "Easily download, build, install, upgrade, and uninstall Python pa category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "setuptools-67.7.2-py3-none-any.whl", hash = "sha256:23aaf86b85ca52ceb801d32703f12d77517b2556af839621c641fca11287952b"}, + {file = "setuptools-67.7.2.tar.gz", hash = "sha256:f104fa03692a2602fa0fec6c6a9e63b6c8a968de13e17c026957dd1f53d80990"}, +] [package.extras] docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] @@ -731,6 +1193,93 @@ description = "Simple, fast, extensible JSON encoder/decoder for Python" category = "main" optional = false python-versions = ">=2.5, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "simplejson-3.19.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:412e58997a30c5deb8cab5858b8e2e5b40ca007079f7010ee74565cc13d19665"}, + {file = "simplejson-3.19.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e765b1f47293dedf77946f0427e03ee45def2862edacd8868c6cf9ab97c8afbd"}, + {file = "simplejson-3.19.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:3231100edee292da78948fa0a77dee4e5a94a0a60bcba9ed7a9dc77f4d4bb11e"}, + {file = "simplejson-3.19.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:081ea6305b3b5e84ae7417e7f45956db5ea3872ec497a584ec86c3260cda049e"}, + {file = "simplejson-3.19.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:f253edf694ce836631b350d758d00a8c4011243d58318fbfbe0dd54a6a839ab4"}, + {file = "simplejson-3.19.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:5db86bb82034e055257c8e45228ca3dbce85e38d7bfa84fa7b2838e032a3219c"}, + {file = "simplejson-3.19.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:69a8b10a4f81548bc1e06ded0c4a6c9042c0be0d947c53c1ed89703f7e613950"}, + {file = "simplejson-3.19.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:58ee5e24d6863b22194020eb62673cf8cc69945fcad6b283919490f6e359f7c5"}, + {file = "simplejson-3.19.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:73d0904c2471f317386d4ae5c665b16b5c50ab4f3ee7fd3d3b7651e564ad74b1"}, + {file = "simplejson-3.19.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:66d780047c31ff316ee305c3f7550f352d87257c756413632303fc59fef19eac"}, + {file = "simplejson-3.19.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cd4d50a27b065447c9c399f0bf0a993bd0e6308db8bbbfbc3ea03b41c145775a"}, + {file = "simplejson-3.19.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0c16ec6a67a5f66ab004190829eeede01c633936375edcad7cbf06d3241e5865"}, + {file = "simplejson-3.19.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17a963e8dd4d81061cc05b627677c1f6a12e81345111fbdc5708c9f088d752c9"}, + {file = "simplejson-3.19.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7e78d79b10aa92f40f54178ada2b635c960d24fc6141856b926d82f67e56d169"}, + {file = "simplejson-3.19.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad071cd84a636195f35fa71de2186d717db775f94f985232775794d09f8d9061"}, + {file = "simplejson-3.19.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e7c70f19405e5f99168077b785fe15fcb5f9b3c0b70b0b5c2757ce294922c8c"}, + {file = "simplejson-3.19.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:54fca2b26bcd1c403146fd9461d1da76199442297160721b1d63def2a1b17799"}, + {file = "simplejson-3.19.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:48600a6e0032bed17c20319d91775f1797d39953ccfd68c27f83c8d7fc3b32cb"}, + {file = "simplejson-3.19.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:93f5ac30607157a0b2579af59a065bcfaa7fadeb4875bf927a8f8b6739c8d910"}, + {file = "simplejson-3.19.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b79642a599740603ca86cf9df54f57a2013c47e1dd4dd2ae4769af0a6816900"}, + {file = "simplejson-3.19.1-cp310-cp310-win32.whl", hash = "sha256:d9f2c27f18a0b94107d57294aab3d06d6046ea843ed4a45cae8bd45756749f3a"}, + {file = "simplejson-3.19.1-cp310-cp310-win_amd64.whl", hash = "sha256:5673d27806085d2a413b3be5f85fad6fca4b7ffd31cfe510bbe65eea52fff571"}, + {file = "simplejson-3.19.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:79c748aa61fd8098d0472e776743de20fae2686edb80a24f0f6593a77f74fe86"}, + {file = "simplejson-3.19.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:390f4a8ca61d90bcf806c3ad644e05fa5890f5b9a72abdd4ca8430cdc1e386fa"}, + {file = "simplejson-3.19.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d61482b5d18181e6bb4810b4a6a24c63a490c3a20e9fbd7876639653e2b30a1a"}, + {file = "simplejson-3.19.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2541fdb7467ef9bfad1f55b6c52e8ea52b3ce4a0027d37aff094190a955daa9d"}, + {file = "simplejson-3.19.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46133bc7dd45c9953e6ee4852e3de3d5a9a4a03b068bd238935a5c72f0a1ce34"}, + {file = "simplejson-3.19.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f96def94576f857abf58e031ce881b5a3fc25cbec64b2bc4824824a8a4367af9"}, + {file = "simplejson-3.19.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f14ecca970d825df0d29d5c6736ff27999ee7bdf5510e807f7ad8845f7760ce"}, + {file = "simplejson-3.19.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:66389b6b6ee46a94a493a933a26008a1bae0cfadeca176933e7ff6556c0ce998"}, + {file = "simplejson-3.19.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:22b867205cd258050c2625325fdd9a65f917a5aff22a23387e245ecae4098e78"}, + {file = "simplejson-3.19.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:c39fa911e4302eb79c804b221ddec775c3da08833c0a9120041dd322789824de"}, + {file = "simplejson-3.19.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:65dafe413b15e8895ad42e49210b74a955c9ae65564952b0243a18fb35b986cc"}, + {file = "simplejson-3.19.1-cp311-cp311-win32.whl", hash = "sha256:f05d05d99fce5537d8f7a0af6417a9afa9af3a6c4bb1ba7359c53b6257625fcb"}, + {file = "simplejson-3.19.1-cp311-cp311-win_amd64.whl", hash = "sha256:b46aaf0332a8a9c965310058cf3487d705bf672641d2c43a835625b326689cf4"}, + {file = "simplejson-3.19.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b438e5eaa474365f4faaeeef1ec3e8d5b4e7030706e3e3d6b5bee6049732e0e6"}, + {file = "simplejson-3.19.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa9d614a612ad02492f704fbac636f666fa89295a5d22b4facf2d665fc3b5ea9"}, + {file = "simplejson-3.19.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46e89f58e4bed107626edce1cf098da3664a336d01fc78fddcfb1f397f553d44"}, + {file = "simplejson-3.19.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96ade243fb6f3b57e7bd3b71e90c190cd0f93ec5dce6bf38734a73a2e5fa274f"}, + {file = "simplejson-3.19.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed18728b90758d171f0c66c475c24a443ede815cf3f1a91e907b0db0ebc6e508"}, + {file = "simplejson-3.19.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:6a561320485017ddfc21bd2ed5de2d70184f754f1c9b1947c55f8e2b0163a268"}, + {file = "simplejson-3.19.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:2098811cd241429c08b7fc5c9e41fcc3f59f27c2e8d1da2ccdcf6c8e340ab507"}, + {file = "simplejson-3.19.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:8f8d179393e6f0cf6c7c950576892ea6acbcea0a320838c61968ac7046f59228"}, + {file = "simplejson-3.19.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:eff87c68058374e45225089e4538c26329a13499bc0104b52b77f8428eed36b2"}, + {file = "simplejson-3.19.1-cp36-cp36m-win32.whl", hash = "sha256:d300773b93eed82f6da138fd1d081dc96fbe53d96000a85e41460fe07c8d8b33"}, + {file = "simplejson-3.19.1-cp36-cp36m-win_amd64.whl", hash = "sha256:37724c634f93e5caaca04458f267836eb9505d897ab3947b52f33b191bf344f3"}, + {file = "simplejson-3.19.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:74bf802debe68627227ddb665c067eb8c73aa68b2476369237adf55c1161b728"}, + {file = "simplejson-3.19.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70128fb92932524c89f373e17221cf9535d7d0c63794955cc3cd5868e19f5d38"}, + {file = "simplejson-3.19.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8090e75653ea7db75bc21fa5f7bcf5f7bdf64ea258cbbac45c7065f6324f1b50"}, + {file = "simplejson-3.19.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a755f7bfc8adcb94887710dc70cc12a69a454120c6adcc6f251c3f7b46ee6aac"}, + {file = "simplejson-3.19.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ccb2c1877bc9b25bc4f4687169caa925ffda605d7569c40e8e95186e9a5e58b"}, + {file = "simplejson-3.19.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:919bc5aa4d8094cf8f1371ea9119e5d952f741dc4162810ab714aec948a23fe5"}, + {file = "simplejson-3.19.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e333c5b62e93949f5ac27e6758ba53ef6ee4f93e36cc977fe2e3df85c02f6dc4"}, + {file = "simplejson-3.19.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3a4480e348000d89cf501b5606415f4d328484bbb431146c2971123d49fd8430"}, + {file = "simplejson-3.19.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:cb502cde018e93e75dc8fc7bb2d93477ce4f3ac10369f48866c61b5e031db1fd"}, + {file = "simplejson-3.19.1-cp37-cp37m-win32.whl", hash = "sha256:f41915a4e1f059dfad614b187bc06021fefb5fc5255bfe63abf8247d2f7a646a"}, + {file = "simplejson-3.19.1-cp37-cp37m-win_amd64.whl", hash = "sha256:3844305bc33d52c4975da07f75b480e17af3558c0d13085eaa6cc2f32882ccf7"}, + {file = "simplejson-3.19.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:1cb19eacb77adc5a9720244d8d0b5507421d117c7ed4f2f9461424a1829e0ceb"}, + {file = "simplejson-3.19.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:926957b278de22797bfc2f004b15297013843b595b3cd7ecd9e37ccb5fad0b72"}, + {file = "simplejson-3.19.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b0e9a5e66969f7a47dc500e3dba8edc3b45d4eb31efb855c8647700a3493dd8a"}, + {file = "simplejson-3.19.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79d46e7e33c3a4ef853a1307b2032cfb7220e1a079d0c65488fbd7118f44935a"}, + {file = "simplejson-3.19.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:344a5093b71c1b370968d0fbd14d55c9413cb6f0355fdefeb4a322d602d21776"}, + {file = "simplejson-3.19.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23fbb7b46d44ed7cbcda689295862851105c7594ae5875dce2a70eeaa498ff86"}, + {file = "simplejson-3.19.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d3025e7e9ddb48813aec2974e1a7e68e63eac911dd5e0a9568775de107ac79a"}, + {file = "simplejson-3.19.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:87b190e6ceec286219bd6b6f13547ca433f977d4600b4e81739e9ac23b5b9ba9"}, + {file = "simplejson-3.19.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dc935d8322ba9bc7b84f99f40f111809b0473df167bf5b93b89fb719d2c4892b"}, + {file = "simplejson-3.19.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:3b652579c21af73879d99c8072c31476788c8c26b5565687fd9db154070d852a"}, + {file = "simplejson-3.19.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6aa7ca03f25b23b01629b1c7f78e1cd826a66bfb8809f8977a3635be2ec48f1a"}, + {file = "simplejson-3.19.1-cp38-cp38-win32.whl", hash = "sha256:08be5a241fdf67a8e05ac7edbd49b07b638ebe4846b560673e196b2a25c94b92"}, + {file = "simplejson-3.19.1-cp38-cp38-win_amd64.whl", hash = "sha256:ca56a6c8c8236d6fe19abb67ef08d76f3c3f46712c49a3b6a5352b6e43e8855f"}, + {file = "simplejson-3.19.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6424d8229ba62e5dbbc377908cfee9b2edf25abd63b855c21f12ac596cd18e41"}, + {file = "simplejson-3.19.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:547ea86ca408a6735335c881a2e6208851027f5bfd678d8f2c92a0f02c7e7330"}, + {file = "simplejson-3.19.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:889328873c35cb0b2b4c83cbb83ec52efee5a05e75002e2c0c46c4e42790e83c"}, + {file = "simplejson-3.19.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44cdb4e544134f305b033ad79ae5c6b9a32e7c58b46d9f55a64e2a883fbbba01"}, + {file = "simplejson-3.19.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc2b3f06430cbd4fac0dae5b2974d2bf14f71b415fb6de017f498950da8159b1"}, + {file = "simplejson-3.19.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d125e754d26c0298715bdc3f8a03a0658ecbe72330be247f4b328d229d8cf67f"}, + {file = "simplejson-3.19.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:476c8033abed7b1fd8db62a7600bf18501ce701c1a71179e4ce04ac92c1c5c3c"}, + {file = "simplejson-3.19.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:199a0bcd792811c252d71e3eabb3d4a132b3e85e43ebd93bfd053d5b59a7e78b"}, + {file = "simplejson-3.19.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a79b439a6a77649bb8e2f2644e6c9cc0adb720fc55bed63546edea86e1d5c6c8"}, + {file = "simplejson-3.19.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:203412745fed916fc04566ecef3f2b6c872b52f1e7fb3a6a84451b800fb508c1"}, + {file = "simplejson-3.19.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5ca922c61d87b4c38f37aa706520328ffe22d7ac1553ef1cadc73f053a673553"}, + {file = "simplejson-3.19.1-cp39-cp39-win32.whl", hash = "sha256:3e0902c278243d6f7223ba3e6c5738614c971fd9a887fff8feaa8dcf7249c8d4"}, + {file = "simplejson-3.19.1-cp39-cp39-win_amd64.whl", hash = "sha256:d396b610e77b0c438846607cd56418bfc194973b9886550a98fd6724e8c6cfec"}, + {file = "simplejson-3.19.1-py3-none-any.whl", hash = "sha256:4710806eb75e87919b858af0cba4ffedc01b463edc3982ded7b55143f39e41e1"}, + {file = "simplejson-3.19.1.tar.gz", hash = "sha256:6277f60848a7d8319d27d2be767a7546bc965535b28070e310b3a9af90604a4c"}, +] [[package]] name = "six" @@ -739,6 +1288,10 @@ description = "Python 2 and 3 compatibility utilities" category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] [[package]] name = "smmap" @@ -747,711 +1300,141 @@ description = "A pure Python implementation of a sliding window memory map manag category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "smmap-5.0.0-py3-none-any.whl", hash = "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94"}, + {file = "smmap-5.0.0.tar.gz", hash = "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936"}, +] [[package]] -name = "stopwatch.py" +name = "stopwatch-py" version = "2.0.1" description = "A simple stopwatch for python" category = "main" optional = false python-versions = ">=3.5" - -[[package]] -name = "tenacity" -version = "8.2.2" -description = "Retry code until it succeeds" -category = "main" -optional = false -python-versions = ">=3.6" - -[package.extras] -doc = ["reno", "sphinx", "tornado (>=4.5)"] - -[[package]] -name = "toml" -version = "0.10.2" -description = "Python Library for Tom's Obvious, Minimal Language" -category = "dev" -optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" - -[[package]] -name = "tomli" -version = "2.0.1" -description = "A lil' TOML parser" -category = "main" -optional = false -python-versions = ">=3.7" - -[[package]] -name = "tornado" -version = "6.3.1" -description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -category = "main" -optional = false -python-versions = ">= 3.8" - -[[package]] -name = "typeguard" -version = "2.13.3" -description = "Run-time type checker for Python" -category = "main" -optional = false -python-versions = ">=3.5.3" - -[package.extras] -doc = ["sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["mypy", "pytest", "typing-extensions"] - -[[package]] -name = "urllib3" -version = "1.26.15" -description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] -secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] -socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] - -[[package]] -name = "websocket-client" -version = "1.5.1" -description = "WebSocket client for Python with low level API options" -category = "main" -optional = false -python-versions = ">=3.7" - -[package.extras] -docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] -optional = ["python-socks", "wsaccel"] -test = ["websockets"] - -[[package]] -name = "wrapt" -version = "1.15.0" -description = "Module for decorators, wrappers and monkey patching." -category = "main" -optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" - -[[package]] -name = "zipp" -version = "3.15.0" -description = "Backport of pathlib-compatible object wrapper for zip files" -category = "main" -optional = false -python-versions = ">=3.7" - -[package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] - -[metadata] -lock-version = "1.1" -python-versions = ">=3.8,<4" -content-hash = "1ec7db440e0568d4f174ed2c87cfb72188ef254312a38f10f7b14d2441e18174" - -[metadata.files] -attrs = [ - {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, - {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, -] -boto3 = [ - {file = "boto3-1.26.124-py3-none-any.whl", hash = "sha256:ec53175eaf818dfe1eec33f7e165eca957744c1d8a82047a9efbcce9547e5cc9"}, - {file = "boto3-1.26.124.tar.gz", hash = "sha256:4847855cfa4ff272eb66cf1fc9542068ada6d4816d56573cc9cafde51962d0ef"}, -] -botocore = [ - {file = "botocore-1.29.124-py3-none-any.whl", hash = "sha256:cbcbd5b084952d332d7b8170577f10509e3e7b3b6abbc2920b1c27e93ad2ab25"}, - {file = "botocore-1.29.124.tar.gz", hash = "sha256:ebe8a83dd1db18180774ce45b1911959c60bb1843ea0db610231495527a3518a"}, -] -certifi = [ - {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, - {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, -] -cffi = [ - {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, - {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, - {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, - {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, - {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, - {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, - {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, - {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, - {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, - {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, - {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, - {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, - {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, - {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, - {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, - {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, - {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, - {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, - {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, -] -charset-normalizer = [ - {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, - {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, - {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, - {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, - {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, - {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, - {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, -] -click = [ - {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, - {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, -] -colorama = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] -cryptography = [ - {file = "cryptography-40.0.2-cp36-abi3-macosx_10_12_universal2.whl", hash = "sha256:8f79b5ff5ad9d3218afb1e7e20ea74da5f76943ee5edb7f76e56ec5161ec782b"}, - {file = "cryptography-40.0.2-cp36-abi3-macosx_10_12_x86_64.whl", hash = "sha256:05dc219433b14046c476f6f09d7636b92a1c3e5808b9a6536adf4932b3b2c440"}, - {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4df2af28d7bedc84fe45bd49bc35d710aede676e2a4cb7fc6d103a2adc8afe4d"}, - {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dcca15d3a19a66e63662dc8d30f8036b07be851a8680eda92d079868f106288"}, - {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:a04386fb7bc85fab9cd51b6308633a3c271e3d0d3eae917eebab2fac6219b6d2"}, - {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:adc0d980fd2760c9e5de537c28935cc32b9353baaf28e0814df417619c6c8c3b"}, - {file = "cryptography-40.0.2-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d5a1bd0e9e2031465761dfa920c16b0065ad77321d8a8c1f5ee331021fda65e9"}, - {file = "cryptography-40.0.2-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:a95f4802d49faa6a674242e25bfeea6fc2acd915b5e5e29ac90a32b1139cae1c"}, - {file = "cryptography-40.0.2-cp36-abi3-win32.whl", hash = "sha256:aecbb1592b0188e030cb01f82d12556cf72e218280f621deed7d806afd2113f9"}, - {file = "cryptography-40.0.2-cp36-abi3-win_amd64.whl", hash = "sha256:b12794f01d4cacfbd3177b9042198f3af1c856eedd0a98f10f141385c809a14b"}, - {file = "cryptography-40.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:142bae539ef28a1c76794cca7f49729e7c54423f615cfd9b0b1fa90ebe53244b"}, - {file = "cryptography-40.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:956ba8701b4ffe91ba59665ed170a2ebbdc6fc0e40de5f6059195d9f2b33ca0e"}, - {file = "cryptography-40.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4f01c9863da784558165f5d4d916093737a75203a5c5286fde60e503e4276c7a"}, - {file = "cryptography-40.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:3daf9b114213f8ba460b829a02896789751626a2a4e7a43a28ee77c04b5e4958"}, - {file = "cryptography-40.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48f388d0d153350f378c7f7b41497a54ff1513c816bcbbcafe5b829e59b9ce5b"}, - {file = "cryptography-40.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c0764e72b36a3dc065c155e5b22f93df465da9c39af65516fe04ed3c68c92636"}, - {file = "cryptography-40.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:cbaba590180cba88cb99a5f76f90808a624f18b169b90a4abb40c1fd8c19420e"}, - {file = "cryptography-40.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7a38250f433cd41df7fcb763caa3ee9362777fdb4dc642b9a349721d2bf47404"}, - {file = "cryptography-40.0.2.tar.gz", hash = "sha256:c33c0d32b8594fa647d2e01dbccc303478e16fdd7cf98652d5b3ed11aa5e5c99"}, -] -Deprecated = [ - {file = "Deprecated-1.2.13-py2.py3-none-any.whl", hash = "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d"}, - {file = "Deprecated-1.2.13.tar.gz", hash = "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d"}, -] -docker = [ - {file = "docker-6.0.1-py3-none-any.whl", hash = "sha256:dbcb3bd2fa80dca0788ed908218bf43972772009b881ed1e20dfc29a65e49782"}, - {file = "docker-6.0.1.tar.gz", hash = "sha256:896c4282e5c7af5c45e8b683b0b0c33932974fe6e50fc6906a0a83616ab3da97"}, -] -docutils = [ - {file = "docutils-0.19-py3-none-any.whl", hash = "sha256:5e1de4d849fee02c63b040a4a3fd567f4ab104defd8a5511fbbc24a8a017efbc"}, - {file = "docutils-0.19.tar.gz", hash = "sha256:33995a6753c30b7f577febfc2c50411fec6aac7f7ffeb7c4cfe5991072dcf9e6"}, -] -exasol-bucketfs = [ - {file = "exasol_bucketfs-0.8.0-py3-none-any.whl", hash = "sha256:3bdee82faded20f65b559ba154d2f17812c62af8d0642ff0dac8ab4d996ba0e0"}, - {file = "exasol_bucketfs-0.8.0.tar.gz", hash = "sha256:924a757bc6608fe29a9bbe6ddd4240583410669f8958f9859df874f7e57b4bc9"}, -] -exasol-error-reporting-python = [ - {file = "exasol-error-reporting-python-0.3.0.tar.gz", hash = "sha256:5b417e21408743d3191cface1b3cadfd40d8db0b88a88ee58f753ffcedaa2e5a"}, - {file = "exasol_error_reporting_python-0.3.0-py3-none-any.whl", hash = "sha256:727c429118b80e07715530d3b9159e8e43502bef2da34cbbac3c79465c901ce8"}, -] -exasol-integration-test-docker-environment = [ - {file = "exasol-integration-test-docker-environment-1.5.0.tar.gz", hash = "sha256:9dca1f6e4211deef0b5542612778a500e4a3d0ab13da435fc5460754222c6a7a"}, - {file = "exasol_integration_test_docker_environment-1.5.0-py3-none-any.whl", hash = "sha256:28f3d5119d6cb8485b4c19b9d57a34f182ddc02ac0caad18bf07da73558afeb4"}, -] -exasol-script-languages-container-ci = [ - {file = "exasol-script-languages-container-ci-1.0.0.tar.gz", hash = "sha256:9ce3e9f83b495a9473e1c55cdd411e46bb16b3e81d39e3346476269f5cd978e7"}, - {file = "exasol_script_languages_container_ci-1.0.0-py3-none-any.whl", hash = "sha256:6ba5db6b812cfa11fbec4bd661c1186d49238957de21a8f7d0bc244c42b53c69"}, -] -exasol-script-languages-container-ci-setup = [ - {file = "exasol-script-languages-container-ci-setup-1.0.0.tar.gz", hash = "sha256:0145f5db346e129ac30f1a0490c4acda84a5ffbfff948bc36b6b72b5ac75295a"}, - {file = "exasol_script_languages_container_ci_setup-1.0.0-py3-none-any.whl", hash = "sha256:37e3595e30880257cfa22d841d89ecbf09447fd06240e58d8eb386d317a38c85"}, -] -exasol-script-languages-container-tool = [ - {file = "exasol-script-languages-container-tool-0.16.0.tar.gz", hash = "sha256:a7a8cc8c7fbcaa16526a8c66f05a9e178912780d3bf1d680b629f5343745b1fd"}, - {file = "exasol_script_languages_container_tool-0.16.0-py3-none-any.whl", hash = "sha256:903e9a03be96291d269b9bf520b9bbe7781ddfc1902c102c8456e23becfd7ffc"}, -] -exceptiongroup = [ - {file = "exceptiongroup-1.1.1-py3-none-any.whl", hash = "sha256:232c37c63e4f682982c8b6459f33a8981039e5fb8756b2074364e5055c498c9e"}, - {file = "exceptiongroup-1.1.1.tar.gz", hash = "sha256:d484c3090ba2889ae2928419117447a14daf3c1231d5e30d0aae34f354f01785"}, -] -gitdb = [ - {file = "gitdb-4.0.10-py3-none-any.whl", hash = "sha256:c286cf298426064079ed96a9e4a9d39e7f3e9bf15ba60701e95f5492f28415c7"}, - {file = "gitdb-4.0.10.tar.gz", hash = "sha256:6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a"}, -] -GitPython = [ - {file = "GitPython-3.1.31-py3-none-any.whl", hash = "sha256:f04893614f6aa713a60cbbe1e6a97403ef633103cdd0ef5eb6efe0deb98dbe8d"}, - {file = "GitPython-3.1.31.tar.gz", hash = "sha256:8ce3bcf69adfdf7c7d503e78fd3b1c492af782d58893b650adb2ac8912ddd573"}, -] -humanfriendly = [ - {file = "humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477"}, - {file = "humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc"}, -] -idna = [ - {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, - {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, -] -importlib-metadata = [ - {file = "importlib_metadata-6.6.0-py3-none-any.whl", hash = "sha256:43dd286a2cd8995d5eaef7fee2066340423b818ed3fd70adf0bad5f1fac53fed"}, - {file = "importlib_metadata-6.6.0.tar.gz", hash = "sha256:92501cdf9cc66ebd3e612f1b4f0c0765dfa42f0fa38ffb319b6bd84dd675d705"}, -] -importlib-resources = [ - {file = "importlib_resources-5.12.0-py3-none-any.whl", hash = "sha256:7b1deeebbf351c7578e09bf2f63fa2ce8b5ffec296e0d349139d43cca061a81a"}, - {file = "importlib_resources-5.12.0.tar.gz", hash = "sha256:4be82589bf5c1d7999aedf2a45159d10cb3ca4f19b2271f8792bc8e6da7b22f6"}, -] -iniconfig = [ - {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, - {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, -] -Jinja2 = [ - {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, - {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, -] -jmespath = [ - {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, - {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, -] -joblib = [ - {file = "joblib-1.2.0-py3-none-any.whl", hash = "sha256:091138ed78f800342968c523bdde947e7a305b8594b910a0fea2ab83c3c6d385"}, - {file = "joblib-1.2.0.tar.gz", hash = "sha256:e1cee4a79e4af22881164f218d4311f60074197fb707e082e803b61f6d137018"}, -] -jsonpickle = [ - {file = "jsonpickle-3.0.1-py2.py3-none-any.whl", hash = "sha256:130d8b293ea0add3845de311aaba55e6d706d0bb17bc123bd2c8baf8a39ac77c"}, - {file = "jsonpickle-3.0.1.tar.gz", hash = "sha256:032538804795e73b94ead410800ac387fdb6de98f8882ac957fcd247e3a85200"}, -] -jsonschema = [ - {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, - {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, -] -lockfile = [ - {file = "lockfile-0.12.2-py2.py3-none-any.whl", hash = "sha256:6c3cb24f344923d30b2785d5ad75182c8ea7ac1b6171b08657258ec7429d50fa"}, - {file = "lockfile-0.12.2.tar.gz", hash = "sha256:6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799"}, -] -luigi = [ - {file = "luigi-3.2.1.tar.gz", hash = "sha256:54a2932d0682c15d93695473ba115157a40f503f54e5c5714997e4b68a5e625c"}, -] -MarkupSafe = [ - {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:665a36ae6f8f20a4676b53224e33d456a6f5a72657d9c83c2aa00765072f31f7"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:340bea174e9761308703ae988e982005aedf427de816d1afe98147668cc03036"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22152d00bf4a9c7c83960521fc558f55a1adbc0631fbb00a9471e097b19d72e1"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28057e985dace2f478e042eaa15606c7efccb700797660629da387eb289b9323"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca244fa73f50a800cf8c3ebf7fd93149ec37f5cb9596aa8873ae2c1d23498601"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9d971ec1e79906046aa3ca266de79eac42f1dbf3612a05dc9368125952bd1a1"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7e007132af78ea9df29495dbf7b5824cb71648d7133cf7848a2a5dd00d36f9ff"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7313ce6a199651c4ed9d7e4cfb4aa56fe923b1adf9af3b420ee14e6d9a73df65"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-win32.whl", hash = "sha256:c4a549890a45f57f1ebf99c067a4ad0cb423a05544accaf2b065246827ed9603"}, - {file = "MarkupSafe-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:835fb5e38fd89328e9c81067fd642b3593c33e1e17e2fdbf77f5676abb14a156"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2ec4f2d48ae59bbb9d1f9d7efb9236ab81429a764dedca114f5fdabbc3788013"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608e7073dfa9e38a85d38474c082d4281f4ce276ac0010224eaba11e929dd53a"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65608c35bfb8a76763f37036547f7adfd09270fbdbf96608be2bead319728fcd"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2bfb563d0211ce16b63c7cb9395d2c682a23187f54c3d79bfec33e6705473c6"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da25303d91526aac3672ee6d49a2f3db2d9502a4a60b55519feb1a4c7714e07d"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9cad97ab29dfc3f0249b483412c85c8ef4766d96cdf9dcf5a1e3caa3f3661cf1"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1bea30e9bf331f3fef67e0a3877b2288593c98a21ccb2cf29b74c581a4eb3af0"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-win32.whl", hash = "sha256:7df70907e00c970c60b9ef2938d894a9381f38e6b9db73c5be35e59d92e06625"}, - {file = "MarkupSafe-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:e55e40ff0cc8cc5c07996915ad367fa47da6b3fc091fdadca7f5403239c5fec3"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a6e40afa7f45939ca356f348c8e23048e02cb109ced1eb8420961b2f40fb373a"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf877ab4ed6e302ec1d04952ca358b381a882fbd9d1b07cccbfd61783561f98a"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63ba06c9941e46fa389d389644e2d8225e0e3e5ebcc4ff1ea8506dce646f8c8a"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f1cd098434e83e656abf198f103a8207a8187c0fc110306691a2e94a78d0abb2"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:55f44b440d491028addb3b88f72207d71eeebfb7b5dbf0643f7c023ae1fba619"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a6f2fcca746e8d5910e18782f976489939d54a91f9411c32051b4aab2bd7c513"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b462104ba25f1ac006fdab8b6a01ebbfbce9ed37fd37fd4acd70c67c973e460"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-win32.whl", hash = "sha256:7668b52e102d0ed87cb082380a7e2e1e78737ddecdde129acadb0eccc5423859"}, - {file = "MarkupSafe-2.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6d6607f98fcf17e534162f0709aaad3ab7a96032723d8ac8750ffe17ae5a0666"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a806db027852538d2ad7555b203300173dd1b77ba116de92da9afbc3a3be3eed"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a4abaec6ca3ad8660690236d11bfe28dfd707778e2442b45addd2f086d6ef094"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f03a532d7dee1bed20bc4884194a16160a2de9ffc6354b3878ec9682bb623c54"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cf06cdc1dda95223e9d2d3c58d3b178aa5dacb35ee7e3bbac10e4e1faacb419"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22731d79ed2eb25059ae3df1dfc9cb1546691cc41f4e3130fe6bfbc3ecbbecfa"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f8ffb705ffcf5ddd0e80b65ddf7bed7ee4f5a441ea7d3419e861a12eaf41af58"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8db032bf0ce9022a8e41a22598eefc802314e81b879ae093f36ce9ddf39ab1ba"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2298c859cfc5463f1b64bd55cb3e602528db6fa0f3cfd568d3605c50678f8f03"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-win32.whl", hash = "sha256:50c42830a633fa0cf9e7d27664637532791bfc31c731a87b202d2d8ac40c3ea2"}, - {file = "MarkupSafe-2.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:bb06feb762bade6bf3c8b844462274db0c76acc95c52abe8dbed28ae3d44a147"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99625a92da8229df6d44335e6fcc558a5037dd0a760e11d84be2260e6f37002f"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bca7e26c1dd751236cfb0c6c72d4ad61d986e9a41bbf76cb445f69488b2a2bd"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40627dcf047dadb22cd25ea7ecfe9cbf3bbbad0482ee5920b582f3809c97654f"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40dfd3fefbef579ee058f139733ac336312663c6706d1163b82b3003fb1925c4"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:090376d812fb6ac5f171e5938e82e7f2d7adc2b629101cec0db8b267815c85e2"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2e7821bffe00aa6bd07a23913b7f4e01328c3d5cc0b40b36c0bd81d362faeb65"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c0a33bc9f02c2b17c3ea382f91b4db0e6cde90b63b296422a939886a7a80de1c"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b8526c6d437855442cdd3d87eede9c425c4445ea011ca38d937db299382e6fa3"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-win32.whl", hash = "sha256:137678c63c977754abe9086a3ec011e8fd985ab90631145dfb9294ad09c102a7"}, - {file = "MarkupSafe-2.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed"}, - {file = "MarkupSafe-2.1.2.tar.gz", hash = "sha256:abcabc8c2b26036d62d4c746381a6f7cf60aafcc653198ad678306986b09450d"}, -] -netaddr = [ - {file = "netaddr-0.8.0-py2.py3-none-any.whl", hash = "sha256:9666d0232c32d2656e5e5f8d735f58fd6c7457ce52fc21c98d45f2af78f990ac"}, - {file = "netaddr-0.8.0.tar.gz", hash = "sha256:d6cc57c7a07b1d9d2e917aa8b36ae8ce61c35ba3fcd1b83ca31c5a0ee2b5a243"}, -] -networkx = [ - {file = "networkx-2.8.2-py3-none-any.whl", hash = "sha256:51d6ae63c24dcd33901357688a2ad20d6bcd38f9a4c5307720048d3a8081059c"}, - {file = "networkx-2.8.2.tar.gz", hash = "sha256:ae99c9b0d35e5b4a62cf1cfea01e5b3633d8d02f4a0ead69685b6e7de5b85eab"}, -] -packaging = [ - {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, - {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, -] -pkgutil_resolve_name = [ - {file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl", hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e"}, - {file = "pkgutil_resolve_name-1.3.10.tar.gz", hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174"}, -] -pluggy = [ - {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, - {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, -] -pyasn1 = [ - {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, - {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, -] -pycparser = [ - {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, - {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, -] -pydot = [ - {file = "pydot-1.4.2-py2.py3-none-any.whl", hash = "sha256:66c98190c65b8d2e2382a441b4c0edfdb4f4c025ef9cb9874de478fb0793a451"}, - {file = "pydot-1.4.2.tar.gz", hash = "sha256:248081a39bcb56784deb018977e428605c1c758f10897a339fce1dd728ff007d"}, -] -pyexasol = [ - {file = "pyexasol-0.25.2-py3-none-any.whl", hash = "sha256:54be5c75f0867a4838b84b5b5a37466c33fa9b1ca6bf51d9c3d821d367936e6e"}, - {file = "pyexasol-0.25.2.tar.gz", hash = "sha256:3b42cb2c32b7b2ffe7a78c82bf21c3a391043758f2a575c48460252a72386691"}, -] -PyGithub = [ - {file = "PyGithub-1.58.1-py3-none-any.whl", hash = "sha256:4e7fe9c3ec30d5fde5b4fbb97f18821c9dbf372bf6df337fe66f6689a65e0a83"}, - {file = "PyGithub-1.58.1.tar.gz", hash = "sha256:7d528b4ad92bc13122129fafd444ce3d04c47d2d801f6446b6e6ee2d410235b3"}, -] -PyJWT = [ - {file = "PyJWT-2.6.0-py3-none-any.whl", hash = "sha256:d83c3d892a77bbb74d3e1a2cfa90afaadb60945205d1095d9221f04466f64c14"}, - {file = "PyJWT-2.6.0.tar.gz", hash = "sha256:69285c7e31fc44f68a1feb309e948e0df53259d579295e6cfe2b1792329f05fd"}, -] -PyNaCl = [ - {file = "PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1"}, - {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92"}, - {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394"}, - {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d"}, - {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858"}, - {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b"}, - {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff"}, - {file = "PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543"}, - {file = "PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93"}, - {file = "PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba"}, -] -pyOpenSSL = [ - {file = "pyOpenSSL-23.1.1-py3-none-any.whl", hash = "sha256:9e0c526404a210df9d2b18cd33364beadb0dc858a739b885677bc65e105d4a4c"}, - {file = "pyOpenSSL-23.1.1.tar.gz", hash = "sha256:841498b9bec61623b1b6c47ebbc02367c07d60e0e195f19790817f10cc8db0b7"}, -] -pyparsing = [ - {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, - {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, -] -pyreadline3 = [ - {file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"}, - {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, -] -pyrsistent = [ - {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, - {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, - {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, - {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, - {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, - {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, - {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, - {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, - {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, - {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, - {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, - {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, - {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, - {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, -] -pytest = [ - {file = "pytest-7.3.1-py3-none-any.whl", hash = "sha256:3799fa815351fea3a5e96ac7e503a96fa51cc9942c3753cda7651b93c1cfa362"}, - {file = "pytest-7.3.1.tar.gz", hash = "sha256:434afafd78b1d78ed0addf160ad2b77a30d35d4bdf8af234fe621919d9ed15e3"}, -] -python-daemon = [ - {file = "python-daemon-3.0.1.tar.gz", hash = "sha256:6c57452372f7eaff40934a1c03ad1826bf5e793558e87fef49131e6464b4dae5"}, - {file = "python_daemon-3.0.1-py3-none-any.whl", hash = "sha256:42bb848a3260a027fa71ad47ecd959e471327cb34da5965962edd5926229f341"}, -] -python-dateutil = [ - {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, - {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, -] -requests = [ - {file = "requests-2.29.0-py3-none-any.whl", hash = "sha256:e8f3c9be120d3333921d213eef078af392fba3933ab7ed2d1cba3b56f2568c3b"}, - {file = "requests-2.29.0.tar.gz", hash = "sha256:f2e34a75f4749019bb0e3effb66683630e4ffeaf75819fb51bebef1bf5aef059"}, -] -rsa = [ - {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, - {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, -] -s3transfer = [ - {file = "s3transfer-0.6.0-py3-none-any.whl", hash = "sha256:06176b74f3a15f61f1b4f25a1fc29a4429040b7647133a463da8fa5bd28d5ecd"}, - {file = "s3transfer-0.6.0.tar.gz", hash = "sha256:2ed07d3866f523cc561bf4a00fc5535827981b117dd7876f036b0c1aca42c947"}, -] -setuptools = [ - {file = "setuptools-67.7.2-py3-none-any.whl", hash = "sha256:23aaf86b85ca52ceb801d32703f12d77517b2556af839621c641fca11287952b"}, - {file = "setuptools-67.7.2.tar.gz", hash = "sha256:f104fa03692a2602fa0fec6c6a9e63b6c8a968de13e17c026957dd1f53d80990"}, -] -simplejson = [ - {file = "simplejson-3.19.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:412e58997a30c5deb8cab5858b8e2e5b40ca007079f7010ee74565cc13d19665"}, - {file = "simplejson-3.19.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e765b1f47293dedf77946f0427e03ee45def2862edacd8868c6cf9ab97c8afbd"}, - {file = "simplejson-3.19.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:3231100edee292da78948fa0a77dee4e5a94a0a60bcba9ed7a9dc77f4d4bb11e"}, - {file = "simplejson-3.19.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:081ea6305b3b5e84ae7417e7f45956db5ea3872ec497a584ec86c3260cda049e"}, - {file = "simplejson-3.19.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:f253edf694ce836631b350d758d00a8c4011243d58318fbfbe0dd54a6a839ab4"}, - {file = "simplejson-3.19.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:5db86bb82034e055257c8e45228ca3dbce85e38d7bfa84fa7b2838e032a3219c"}, - {file = "simplejson-3.19.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:69a8b10a4f81548bc1e06ded0c4a6c9042c0be0d947c53c1ed89703f7e613950"}, - {file = "simplejson-3.19.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:58ee5e24d6863b22194020eb62673cf8cc69945fcad6b283919490f6e359f7c5"}, - {file = "simplejson-3.19.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:73d0904c2471f317386d4ae5c665b16b5c50ab4f3ee7fd3d3b7651e564ad74b1"}, - {file = "simplejson-3.19.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:66d780047c31ff316ee305c3f7550f352d87257c756413632303fc59fef19eac"}, - {file = "simplejson-3.19.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cd4d50a27b065447c9c399f0bf0a993bd0e6308db8bbbfbc3ea03b41c145775a"}, - {file = "simplejson-3.19.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0c16ec6a67a5f66ab004190829eeede01c633936375edcad7cbf06d3241e5865"}, - {file = "simplejson-3.19.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17a963e8dd4d81061cc05b627677c1f6a12e81345111fbdc5708c9f088d752c9"}, - {file = "simplejson-3.19.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7e78d79b10aa92f40f54178ada2b635c960d24fc6141856b926d82f67e56d169"}, - {file = "simplejson-3.19.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad071cd84a636195f35fa71de2186d717db775f94f985232775794d09f8d9061"}, - {file = "simplejson-3.19.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e7c70f19405e5f99168077b785fe15fcb5f9b3c0b70b0b5c2757ce294922c8c"}, - {file = "simplejson-3.19.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:54fca2b26bcd1c403146fd9461d1da76199442297160721b1d63def2a1b17799"}, - {file = "simplejson-3.19.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:48600a6e0032bed17c20319d91775f1797d39953ccfd68c27f83c8d7fc3b32cb"}, - {file = "simplejson-3.19.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:93f5ac30607157a0b2579af59a065bcfaa7fadeb4875bf927a8f8b6739c8d910"}, - {file = "simplejson-3.19.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b79642a599740603ca86cf9df54f57a2013c47e1dd4dd2ae4769af0a6816900"}, - {file = "simplejson-3.19.1-cp310-cp310-win32.whl", hash = "sha256:d9f2c27f18a0b94107d57294aab3d06d6046ea843ed4a45cae8bd45756749f3a"}, - {file = "simplejson-3.19.1-cp310-cp310-win_amd64.whl", hash = "sha256:5673d27806085d2a413b3be5f85fad6fca4b7ffd31cfe510bbe65eea52fff571"}, - {file = "simplejson-3.19.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:79c748aa61fd8098d0472e776743de20fae2686edb80a24f0f6593a77f74fe86"}, - {file = "simplejson-3.19.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:390f4a8ca61d90bcf806c3ad644e05fa5890f5b9a72abdd4ca8430cdc1e386fa"}, - {file = "simplejson-3.19.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d61482b5d18181e6bb4810b4a6a24c63a490c3a20e9fbd7876639653e2b30a1a"}, - {file = "simplejson-3.19.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2541fdb7467ef9bfad1f55b6c52e8ea52b3ce4a0027d37aff094190a955daa9d"}, - {file = "simplejson-3.19.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46133bc7dd45c9953e6ee4852e3de3d5a9a4a03b068bd238935a5c72f0a1ce34"}, - {file = "simplejson-3.19.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f96def94576f857abf58e031ce881b5a3fc25cbec64b2bc4824824a8a4367af9"}, - {file = "simplejson-3.19.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f14ecca970d825df0d29d5c6736ff27999ee7bdf5510e807f7ad8845f7760ce"}, - {file = "simplejson-3.19.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:66389b6b6ee46a94a493a933a26008a1bae0cfadeca176933e7ff6556c0ce998"}, - {file = "simplejson-3.19.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:22b867205cd258050c2625325fdd9a65f917a5aff22a23387e245ecae4098e78"}, - {file = "simplejson-3.19.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:c39fa911e4302eb79c804b221ddec775c3da08833c0a9120041dd322789824de"}, - {file = "simplejson-3.19.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:65dafe413b15e8895ad42e49210b74a955c9ae65564952b0243a18fb35b986cc"}, - {file = "simplejson-3.19.1-cp311-cp311-win32.whl", hash = "sha256:f05d05d99fce5537d8f7a0af6417a9afa9af3a6c4bb1ba7359c53b6257625fcb"}, - {file = "simplejson-3.19.1-cp311-cp311-win_amd64.whl", hash = "sha256:b46aaf0332a8a9c965310058cf3487d705bf672641d2c43a835625b326689cf4"}, - {file = "simplejson-3.19.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b438e5eaa474365f4faaeeef1ec3e8d5b4e7030706e3e3d6b5bee6049732e0e6"}, - {file = "simplejson-3.19.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa9d614a612ad02492f704fbac636f666fa89295a5d22b4facf2d665fc3b5ea9"}, - {file = "simplejson-3.19.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46e89f58e4bed107626edce1cf098da3664a336d01fc78fddcfb1f397f553d44"}, - {file = "simplejson-3.19.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96ade243fb6f3b57e7bd3b71e90c190cd0f93ec5dce6bf38734a73a2e5fa274f"}, - {file = "simplejson-3.19.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed18728b90758d171f0c66c475c24a443ede815cf3f1a91e907b0db0ebc6e508"}, - {file = "simplejson-3.19.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:6a561320485017ddfc21bd2ed5de2d70184f754f1c9b1947c55f8e2b0163a268"}, - {file = "simplejson-3.19.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:2098811cd241429c08b7fc5c9e41fcc3f59f27c2e8d1da2ccdcf6c8e340ab507"}, - {file = "simplejson-3.19.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:8f8d179393e6f0cf6c7c950576892ea6acbcea0a320838c61968ac7046f59228"}, - {file = "simplejson-3.19.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:eff87c68058374e45225089e4538c26329a13499bc0104b52b77f8428eed36b2"}, - {file = "simplejson-3.19.1-cp36-cp36m-win32.whl", hash = "sha256:d300773b93eed82f6da138fd1d081dc96fbe53d96000a85e41460fe07c8d8b33"}, - {file = "simplejson-3.19.1-cp36-cp36m-win_amd64.whl", hash = "sha256:37724c634f93e5caaca04458f267836eb9505d897ab3947b52f33b191bf344f3"}, - {file = "simplejson-3.19.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:74bf802debe68627227ddb665c067eb8c73aa68b2476369237adf55c1161b728"}, - {file = "simplejson-3.19.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70128fb92932524c89f373e17221cf9535d7d0c63794955cc3cd5868e19f5d38"}, - {file = "simplejson-3.19.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8090e75653ea7db75bc21fa5f7bcf5f7bdf64ea258cbbac45c7065f6324f1b50"}, - {file = "simplejson-3.19.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a755f7bfc8adcb94887710dc70cc12a69a454120c6adcc6f251c3f7b46ee6aac"}, - {file = "simplejson-3.19.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ccb2c1877bc9b25bc4f4687169caa925ffda605d7569c40e8e95186e9a5e58b"}, - {file = "simplejson-3.19.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:919bc5aa4d8094cf8f1371ea9119e5d952f741dc4162810ab714aec948a23fe5"}, - {file = "simplejson-3.19.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e333c5b62e93949f5ac27e6758ba53ef6ee4f93e36cc977fe2e3df85c02f6dc4"}, - {file = "simplejson-3.19.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3a4480e348000d89cf501b5606415f4d328484bbb431146c2971123d49fd8430"}, - {file = "simplejson-3.19.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:cb502cde018e93e75dc8fc7bb2d93477ce4f3ac10369f48866c61b5e031db1fd"}, - {file = "simplejson-3.19.1-cp37-cp37m-win32.whl", hash = "sha256:f41915a4e1f059dfad614b187bc06021fefb5fc5255bfe63abf8247d2f7a646a"}, - {file = "simplejson-3.19.1-cp37-cp37m-win_amd64.whl", hash = "sha256:3844305bc33d52c4975da07f75b480e17af3558c0d13085eaa6cc2f32882ccf7"}, - {file = "simplejson-3.19.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:1cb19eacb77adc5a9720244d8d0b5507421d117c7ed4f2f9461424a1829e0ceb"}, - {file = "simplejson-3.19.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:926957b278de22797bfc2f004b15297013843b595b3cd7ecd9e37ccb5fad0b72"}, - {file = "simplejson-3.19.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b0e9a5e66969f7a47dc500e3dba8edc3b45d4eb31efb855c8647700a3493dd8a"}, - {file = "simplejson-3.19.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79d46e7e33c3a4ef853a1307b2032cfb7220e1a079d0c65488fbd7118f44935a"}, - {file = "simplejson-3.19.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:344a5093b71c1b370968d0fbd14d55c9413cb6f0355fdefeb4a322d602d21776"}, - {file = "simplejson-3.19.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23fbb7b46d44ed7cbcda689295862851105c7594ae5875dce2a70eeaa498ff86"}, - {file = "simplejson-3.19.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d3025e7e9ddb48813aec2974e1a7e68e63eac911dd5e0a9568775de107ac79a"}, - {file = "simplejson-3.19.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:87b190e6ceec286219bd6b6f13547ca433f977d4600b4e81739e9ac23b5b9ba9"}, - {file = "simplejson-3.19.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dc935d8322ba9bc7b84f99f40f111809b0473df167bf5b93b89fb719d2c4892b"}, - {file = "simplejson-3.19.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:3b652579c21af73879d99c8072c31476788c8c26b5565687fd9db154070d852a"}, - {file = "simplejson-3.19.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6aa7ca03f25b23b01629b1c7f78e1cd826a66bfb8809f8977a3635be2ec48f1a"}, - {file = "simplejson-3.19.1-cp38-cp38-win32.whl", hash = "sha256:08be5a241fdf67a8e05ac7edbd49b07b638ebe4846b560673e196b2a25c94b92"}, - {file = "simplejson-3.19.1-cp38-cp38-win_amd64.whl", hash = "sha256:ca56a6c8c8236d6fe19abb67ef08d76f3c3f46712c49a3b6a5352b6e43e8855f"}, - {file = "simplejson-3.19.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6424d8229ba62e5dbbc377908cfee9b2edf25abd63b855c21f12ac596cd18e41"}, - {file = "simplejson-3.19.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:547ea86ca408a6735335c881a2e6208851027f5bfd678d8f2c92a0f02c7e7330"}, - {file = "simplejson-3.19.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:889328873c35cb0b2b4c83cbb83ec52efee5a05e75002e2c0c46c4e42790e83c"}, - {file = "simplejson-3.19.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44cdb4e544134f305b033ad79ae5c6b9a32e7c58b46d9f55a64e2a883fbbba01"}, - {file = "simplejson-3.19.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dc2b3f06430cbd4fac0dae5b2974d2bf14f71b415fb6de017f498950da8159b1"}, - {file = "simplejson-3.19.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d125e754d26c0298715bdc3f8a03a0658ecbe72330be247f4b328d229d8cf67f"}, - {file = "simplejson-3.19.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:476c8033abed7b1fd8db62a7600bf18501ce701c1a71179e4ce04ac92c1c5c3c"}, - {file = "simplejson-3.19.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:199a0bcd792811c252d71e3eabb3d4a132b3e85e43ebd93bfd053d5b59a7e78b"}, - {file = "simplejson-3.19.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a79b439a6a77649bb8e2f2644e6c9cc0adb720fc55bed63546edea86e1d5c6c8"}, - {file = "simplejson-3.19.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:203412745fed916fc04566ecef3f2b6c872b52f1e7fb3a6a84451b800fb508c1"}, - {file = "simplejson-3.19.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5ca922c61d87b4c38f37aa706520328ffe22d7ac1553ef1cadc73f053a673553"}, - {file = "simplejson-3.19.1-cp39-cp39-win32.whl", hash = "sha256:3e0902c278243d6f7223ba3e6c5738614c971fd9a887fff8feaa8dcf7249c8d4"}, - {file = "simplejson-3.19.1-cp39-cp39-win_amd64.whl", hash = "sha256:d396b610e77b0c438846607cd56418bfc194973b9886550a98fd6724e8c6cfec"}, - {file = "simplejson-3.19.1-py3-none-any.whl", hash = "sha256:4710806eb75e87919b858af0cba4ffedc01b463edc3982ded7b55143f39e41e1"}, - {file = "simplejson-3.19.1.tar.gz", hash = "sha256:6277f60848a7d8319d27d2be767a7546bc965535b28070e310b3a9af90604a4c"}, -] -six = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] -smmap = [ - {file = "smmap-5.0.0-py3-none-any.whl", hash = "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94"}, - {file = "smmap-5.0.0.tar.gz", hash = "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936"}, -] -"stopwatch.py" = [ +files = [ {file = "stopwatch.py-2.0.1-py3-none-any.whl", hash = "sha256:5802a0178d766120c11dd5df8ae838e9beccb8c88329dbd5f0f7ac4b7fed9107"}, {file = "stopwatch.py-2.0.1.tar.gz", hash = "sha256:8cc94ba0f6469d434eabd8b227166e595fd42350e7f66dbf1a1a80697f60cc79"}, ] -tenacity = [ + +[[package]] +name = "tenacity" +version = "8.2.2" +description = "Retry code until it succeeds" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ {file = "tenacity-8.2.2-py3-none-any.whl", hash = "sha256:2f277afb21b851637e8f52e6a613ff08734c347dc19ade928e519d7d2d8569b0"}, {file = "tenacity-8.2.2.tar.gz", hash = "sha256:43af037822bd0029025877f3b2d97cc4d7bb0c2991000a3d59d71517c5c969e0"}, ] -toml = [ + +[package.extras] +doc = ["reno", "sphinx", "tornado (>=4.5)"] + +[[package]] +name = "toml" +version = "0.10.2" +description = "Python Library for Tom's Obvious, Minimal Language" +category = "dev" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, ] -tomli = [ + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, ] -tornado = [ - {file = "tornado-6.3.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:db181eb3df8738613ff0a26f49e1b394aade05034b01200a63e9662f347d4415"}, - {file = "tornado-6.3.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:b4e7b956f9b5e6f9feb643ea04f07e7c6b49301e03e0023eedb01fa8cf52f579"}, - {file = "tornado-6.3.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9661aa8bc0e9d83d757cd95b6f6d1ece8ca9fd1ccdd34db2de381e25bf818233"}, - {file = "tornado-6.3.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81c17e0cc396908a5e25dc8e9c5e4936e6dfd544c9290be48bd054c79bcad51e"}, - {file = "tornado-6.3.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a27a1cfa9997923f80bdd962b3aab048ac486ad8cfb2f237964f8ab7f7eb824b"}, - {file = "tornado-6.3.1-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d7117f3c7ba5d05813b17a1f04efc8e108a1b811ccfddd9134cc68553c414864"}, - {file = "tornado-6.3.1-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:ffdce65a281fd708da5a9def3bfb8f364766847fa7ed806821a69094c9629e8a"}, - {file = "tornado-6.3.1-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:90f569a35a8ec19bde53aa596952071f445da678ec8596af763b9b9ce07605e6"}, - {file = "tornado-6.3.1-cp38-abi3-win32.whl", hash = "sha256:3455133b9ff262fd0a75630af0a8ee13564f25fb4fd3d9ce239b8a7d3d027bf8"}, - {file = "tornado-6.3.1-cp38-abi3-win_amd64.whl", hash = "sha256:1285f0691143f7ab97150831455d4db17a267b59649f7bd9700282cba3d5e771"}, - {file = "tornado-6.3.1.tar.gz", hash = "sha256:5e2f49ad371595957c50e42dd7e5c14d64a6843a3cf27352b69c706d1b5918af"}, -] -typeguard = [ + +[[package]] +name = "tornado" +version = "6.3.2" +description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +category = "main" +optional = false +python-versions = ">= 3.8" +files = [ + {file = "tornado-6.3.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:c367ab6c0393d71171123ca5515c61ff62fe09024fa6bf299cd1339dc9456829"}, + {file = "tornado-6.3.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:b46a6ab20f5c7c1cb949c72c1994a4585d2eaa0be4853f50a03b5031e964fc7c"}, + {file = "tornado-6.3.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c2de14066c4a38b4ecbbcd55c5cc4b5340eb04f1c5e81da7451ef555859c833f"}, + {file = "tornado-6.3.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:05615096845cf50a895026f749195bf0b10b8909f9be672f50b0fe69cba368e4"}, + {file = "tornado-6.3.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b17b1cf5f8354efa3d37c6e28fdfd9c1c1e5122f2cb56dac121ac61baa47cbe"}, + {file = "tornado-6.3.2-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:29e71c847a35f6e10ca3b5c2990a52ce38b233019d8e858b755ea6ce4dcdd19d"}, + {file = "tornado-6.3.2-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:834ae7540ad3a83199a8da8f9f2d383e3c3d5130a328889e4cc991acc81e87a0"}, + {file = "tornado-6.3.2-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:6a0848f1aea0d196a7c4f6772197cbe2abc4266f836b0aac76947872cd29b411"}, + {file = "tornado-6.3.2-cp38-abi3-win32.whl", hash = "sha256:7efcbcc30b7c654eb6a8c9c9da787a851c18f8ccd4a5a3a95b05c7accfa068d2"}, + {file = "tornado-6.3.2-cp38-abi3-win_amd64.whl", hash = "sha256:0c325e66c8123c606eea33084976c832aa4e766b7dff8aedd7587ea44a604cdf"}, + {file = "tornado-6.3.2.tar.gz", hash = "sha256:4b927c4f19b71e627b13f3db2324e4ae660527143f9e1f2e2fb404f3a187e2ba"}, +] + +[[package]] +name = "typeguard" +version = "2.13.3" +description = "Run-time type checker for Python" +category = "main" +optional = false +python-versions = ">=3.5.3" +files = [ {file = "typeguard-2.13.3-py3-none-any.whl", hash = "sha256:5e3e3be01e887e7eafae5af63d1f36c849aaa94e3a0112097312aabfa16284f1"}, {file = "typeguard-2.13.3.tar.gz", hash = "sha256:00edaa8da3a133674796cf5ea87d9f4b4c367d77476e185e80251cc13dfbb8c4"}, ] -urllib3 = [ + +[package.extras] +doc = ["sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["mypy", "pytest", "typing-extensions"] + +[[package]] +name = "urllib3" +version = "1.26.15" +description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ {file = "urllib3-1.26.15-py2.py3-none-any.whl", hash = "sha256:aa751d169e23c7479ce47a0cb0da579e3ede798f994f5816a74e4f4500dcea42"}, {file = "urllib3-1.26.15.tar.gz", hash = "sha256:8a388717b9476f934a21484e8c8e61875ab60644d29b9b39e11e4b9dc1c6b305"}, ] -websocket-client = [ + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "websocket-client" +version = "1.5.1" +description = "WebSocket client for Python with low level API options" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ {file = "websocket-client-1.5.1.tar.gz", hash = "sha256:3f09e6d8230892547132177f575a4e3e73cfdf06526e20cc02aa1c3b47184d40"}, {file = "websocket_client-1.5.1-py3-none-any.whl", hash = "sha256:cdf5877568b7e83aa7cf2244ab56a3213de587bbe0ce9d8b9600fc77b455d89e"}, ] -wrapt = [ + +[package.extras] +docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] +optional = ["python-socks", "wsaccel"] +test = ["websockets"] + +[[package]] +name = "wrapt" +version = "1.15.0" +description = "Module for decorators, wrappers and monkey patching." +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ {file = "wrapt-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ca1cccf838cd28d5a0883b342474c630ac48cac5df0ee6eacc9c7290f76b11c1"}, {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e826aadda3cae59295b95343db8f3d965fb31059da7de01ee8d1c40a60398b29"}, {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5fc8e02f5984a55d2c653f5fea93531e9836abbd84342c1d1e17abc4a15084c2"}, @@ -1528,7 +1511,24 @@ wrapt = [ {file = "wrapt-1.15.0-py3-none-any.whl", hash = "sha256:64b1df0f83706b4ef4cfb4fb0e4c2669100fd7ecacfb59e091fad300d4e04640"}, {file = "wrapt-1.15.0.tar.gz", hash = "sha256:d06730c6aed78cee4126234cf2d071e01b44b915e725a6cb439a879ec9754a3a"}, ] -zipp = [ + +[[package]] +name = "zipp" +version = "3.15.0" +description = "Backport of pathlib-compatible object wrapper for zip files" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ {file = "zipp-3.15.0-py3-none-any.whl", hash = "sha256:48904fc76a60e542af151aded95726c1a5c34ed43ab4134b597665c86d7ad556"}, {file = "zipp-3.15.0.tar.gz", hash = "sha256:112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b"}, ] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] + +[metadata] +lock-version = "2.0" +python-versions = ">=3.8,<4" +content-hash = "bd041a2e78cdf27f5fe1543e8f6c9a7d08df15a0472fbfc37395e0cac185fea1" diff --git a/pyproject.toml b/pyproject.toml index 965b0061..af6ec244 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,8 +19,8 @@ keywords = ['exasol', 'udf', 'script-languages'] [tool.poetry.dependencies] python = ">=3.8,<4" -exasol_script_languages_container_tool = "^0.16.0" -exasol-script-languages-container-ci = "^1.0.0" +exasol-script-languages-container-tool = "^0.17.0" +exasol-script-languages-container-ci = "^1.1.0" exasol-script-languages-container-ci-setup = "^1.0.0" [tool.poetry.dev-dependencies] diff --git a/script-languages b/script-languages index 4cb6de49..bec91090 160000 --- a/script-languages +++ b/script-languages @@ -1 +1 @@ -Subproject commit 4cb6de499dd9c724b5a21db2450a31d36e19c732 +Subproject commit bec91090bbcd320085b881fa03a527a659789312 From 9d6b7d3bfdcb06ab5c3a2bb352aad04d5bc688d8 Mon Sep 17 00:00:00 2001 From: Torsten Kilias Date: Wed, 17 May 2023 15:50:37 +0200 Subject: [PATCH 2/5] #800: Updated Ubuntu packages (#801) --- .current_gitmodules | 2 +- doc/changes/changes_6.1.0.md | 1 + .../build_deps/apt_get_packages_diff.md | 22 +++++++++---------- .../build_deps/apt_get_packages_diff.md | 22 +++++++++---------- .../build_deps/apt_get_packages_diff.md | 22 +++++++++---------- .../build_deps/apt_get_packages_diff.md | 22 +++++++++---------- .../language_deps/apt_get_packages_diff.md | 12 +++++----- .../build_deps/apt_get_packages_diff.md | 22 +++++++++---------- .../language_deps/apt_get_packages_diff.md | 12 +++++----- .../build_deps/apt_get_packages_diff.md | 22 +++++++++---------- .../language_deps/apt_get_packages_diff.md | 14 ++++++------ .../build_deps/packages/apt_get_packages | 4 ++-- .../build_deps/packages/apt_get_packages | 8 +++---- .../language_deps/packages/apt_get_packages | 2 +- .../build_deps/packages/apt_get_packages | 8 +++---- .../language_deps/packages/apt_get_packages | 2 +- .../build_deps/packages/apt_get_packages | 8 +++---- .../language_deps/packages/apt_get_packages | 2 +- script-languages | 2 +- 19 files changed, 105 insertions(+), 104 deletions(-) diff --git a/.current_gitmodules b/.current_gitmodules index da8afc4b..1dfee250 100644 --- a/.current_gitmodules +++ b/.current_gitmodules @@ -1 +1 @@ -160000 bec91090bbcd320085b881fa03a527a659789312 0 script-languages +160000 f33e58d0c29c6a8e3d6ab54264306cba6565ac7b 0 script-languages diff --git a/doc/changes/changes_6.1.0.md b/doc/changes/changes_6.1.0.md index 35b3b455..79f38f38 100644 --- a/doc/changes/changes_6.1.0.md +++ b/doc/changes/changes_6.1.0.md @@ -33,3 +33,4 @@ n/a - #785: Updated Ubuntu packages - #789: Update Ubuntu packages - #777: Update redis-py to fix CVE-2023-28859 + - #800: Updated Ubuntu packages diff --git a/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md index e89d6b55..6d464ca8 100644 --- a/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md @@ -1,13 +1,13 @@ -| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | -|---:|:------------------|:-------------------------|:-------------------------|:---------| -| 0 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | -| 1 | chrpath | 0.16-2 | 0.16-2 | | -| 2 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | -| 3 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | -| 4 | libpcre3-dev | 2:8.39-9 | 2:8.39-9 | | -| 5 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | -| 6 | openjdk-11-jdk | 11.0.11+9-0ubuntu2~18.04 | 11.0.11+9-0ubuntu2~18.04 | | -| 7 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1 | | -| 8 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.2 | | \ No newline at end of file +| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | +|---:|:------------------|:-------------------------|:-------------------------------|:---------| +| 0 | libpcre3-dev | 2:8.39-9 | 2:8.39-9ubuntu0.1 | UPDATED | +| 1 | openjdk-11-jdk | 11.0.11+9-0ubuntu2~18.04 | 11.0.19+7~us1-0ubuntu1~18.04.1 | UPDATED | +| 2 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1.1 | UPDATED | +| 3 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.4 | UPDATED | +| 4 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | +| 5 | chrpath | 0.16-2 | 0.16-2 | | +| 6 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | +| 7 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | +| 8 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md index 195235f6..88768394 100644 --- a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md @@ -1,13 +1,13 @@ -| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | -|---:|:------------------|:-------------------------|:-------------------------|:---------| -| 0 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | -| 1 | chrpath | 0.16-2 | 0.16-2 | | -| 2 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | -| 3 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | -| 4 | libpcre3-dev | 2:8.39-9 | 2:8.39-9 | | -| 5 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | -| 6 | openjdk-11-jdk | 11.0.11+9-0ubuntu2~18.04 | 11.0.11+9-0ubuntu2~18.04 | | -| 7 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1 | | -| 8 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.2 | | \ No newline at end of file +| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | +|---:|:------------------|:-------------------------|:-------------------------------|:---------| +| 0 | libpcre3-dev | 2:8.39-9 | 2:8.39-9ubuntu0.1 | UPDATED | +| 1 | openjdk-11-jdk | 11.0.11+9-0ubuntu2~18.04 | 11.0.19+7~us1-0ubuntu1~20.04.1 | UPDATED | +| 2 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1.1 | UPDATED | +| 3 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.4 | UPDATED | +| 4 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | +| 5 | chrpath | 0.16-2 | 0.16-2 | | +| 6 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | +| 7 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | +| 8 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md index e89d6b55..df0e30f1 100644 --- a/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/build_deps/apt_get_packages_diff.md @@ -1,13 +1,13 @@ -| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | -|---:|:------------------|:-------------------------|:-------------------------|:---------| -| 0 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | -| 1 | chrpath | 0.16-2 | 0.16-2 | | -| 2 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | -| 3 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | -| 4 | libpcre3-dev | 2:8.39-9 | 2:8.39-9 | | -| 5 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | -| 6 | openjdk-11-jdk | 11.0.11+9-0ubuntu2~18.04 | 11.0.11+9-0ubuntu2~18.04 | | -| 7 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1 | | -| 8 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.2 | | \ No newline at end of file +| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | +|---:|:------------------|:-------------------------|:-------------------------------|:---------| +| 0 | openjdk-11-jdk | 11.0.11+9-0ubuntu2~18.04 | 11.0.19+7~us1-0ubuntu1~18.04.1 | UPDATED | +| 1 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.4 | UPDATED | +| 2 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | +| 3 | chrpath | 0.16-2 | 0.16-2 | | +| 4 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | +| 5 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | +| 6 | libpcre3-dev | 2:8.39-9 | 2:8.39-9 | | +| 7 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | +| 8 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/build_deps/apt_get_packages_diff.md index 0e8a0933..643d3011 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/build_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/build_deps/apt_get_packages_diff.md @@ -1,13 +1,13 @@ -| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | -|---:|:------------------|:-------------------------|:-------------------------|:---------| -| 0 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | -| 1 | chrpath | 0.16-2 | 0.16-2 | | -| 2 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | -| 3 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | -| 4 | libpcre3-dev | 2:8.39-9 | 2:8.39-9 | | -| 5 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | -| 6 | openjdk-11-jdk | 11.0.17+8-1ubuntu2~18.04 | 11.0.17+8-1ubuntu2~18.04 | | -| 7 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1 | | -| 8 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.2 | | \ No newline at end of file +| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | +|---:|:------------------|:-------------------------|:-------------------------------|:---------| +| 0 | libpcre3-dev | 2:8.39-9 | 2:8.39-9ubuntu0.1 | UPDATED | +| 1 | openjdk-11-jdk | 11.0.17+8-1ubuntu2~18.04 | 11.0.19+7~us1-0ubuntu1~18.04.1 | UPDATED | +| 2 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1.1 | UPDATED | +| 3 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.4 | UPDATED | +| 4 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | +| 5 | chrpath | 0.16-2 | 0.16-2 | | +| 6 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | +| 7 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | +| 8 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/language_deps/apt_get_packages_diff.md index c87725be..6ca498d6 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/language_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/language_deps/apt_get_packages_diff.md @@ -3,12 +3,12 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:------------------------|:------------------------------------|:------------------------------------|:---------| | 0 | git | 1:2.17.1-1ubuntu0.17 | 1:2.17.1-1ubuntu0.18 | UPDATED | -| 1 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | -| 2 | libexpat1 | 2.2.5-3ubuntu0.9 | 2.2.5-3ubuntu0.9 | | -| 3 | libexpat1-dev | 2.2.5-3ubuntu0.9 | 2.2.5-3ubuntu0.9 | | -| 4 | libsasl2-2 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | | -| 5 | libsasl2-modules-db | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | | -| 6 | openjdk-11-jdk-headless | 11.0.18+10-0ubuntu1~18.04.1 | 11.0.18+10-0ubuntu1~18.04.1 | | +| 1 | openjdk-11-jdk-headless | 11.0.18+10-0ubuntu1~18.04.1 | 11.0.19+7~us1-0ubuntu1~18.04.1 | UPDATED | +| 2 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | +| 3 | libexpat1 | 2.2.5-3ubuntu0.9 | 2.2.5-3ubuntu0.9 | | +| 4 | libexpat1-dev | 2.2.5-3ubuntu0.9 | 2.2.5-3ubuntu0.9 | | +| 5 | libsasl2-2 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | | +| 6 | libsasl2-modules-db | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | | | 7 | python3-distutils | 3.6.9-1~18.04 | 3.6.9-1~18.04 | | | 8 | python3.7 | 3.7.5-2ubuntu1~18.04.2 | 3.7.5-2ubuntu1~18.04.2 | | | 9 | python3.7-dev | 3.7.5-2ubuntu1~18.04.2 | 3.7.5-2ubuntu1~18.04.2 | | diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/build_deps/apt_get_packages_diff.md index 0e8a0933..643d3011 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/build_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/build_deps/apt_get_packages_diff.md @@ -1,13 +1,13 @@ -| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | -|---:|:------------------|:-------------------------|:-------------------------|:---------| -| 0 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | -| 1 | chrpath | 0.16-2 | 0.16-2 | | -| 2 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | -| 3 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | -| 4 | libpcre3-dev | 2:8.39-9 | 2:8.39-9 | | -| 5 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | -| 6 | openjdk-11-jdk | 11.0.17+8-1ubuntu2~18.04 | 11.0.17+8-1ubuntu2~18.04 | | -| 7 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1 | | -| 8 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.2 | | \ No newline at end of file +| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | +|---:|:------------------|:-------------------------|:-------------------------------|:---------| +| 0 | libpcre3-dev | 2:8.39-9 | 2:8.39-9ubuntu0.1 | UPDATED | +| 1 | openjdk-11-jdk | 11.0.17+8-1ubuntu2~18.04 | 11.0.19+7~us1-0ubuntu1~18.04.1 | UPDATED | +| 2 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1.1 | UPDATED | +| 3 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.4 | UPDATED | +| 4 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | +| 5 | chrpath | 0.16-2 | 0.16-2 | | +| 6 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | +| 7 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | +| 8 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/language_deps/apt_get_packages_diff.md index c87725be..6ca498d6 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/language_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/language_deps/apt_get_packages_diff.md @@ -3,12 +3,12 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:------------------------|:------------------------------------|:------------------------------------|:---------| | 0 | git | 1:2.17.1-1ubuntu0.17 | 1:2.17.1-1ubuntu0.18 | UPDATED | -| 1 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | -| 2 | libexpat1 | 2.2.5-3ubuntu0.9 | 2.2.5-3ubuntu0.9 | | -| 3 | libexpat1-dev | 2.2.5-3ubuntu0.9 | 2.2.5-3ubuntu0.9 | | -| 4 | libsasl2-2 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | | -| 5 | libsasl2-modules-db | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | | -| 6 | openjdk-11-jdk-headless | 11.0.18+10-0ubuntu1~18.04.1 | 11.0.18+10-0ubuntu1~18.04.1 | | +| 1 | openjdk-11-jdk-headless | 11.0.18+10-0ubuntu1~18.04.1 | 11.0.19+7~us1-0ubuntu1~18.04.1 | UPDATED | +| 2 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | +| 3 | libexpat1 | 2.2.5-3ubuntu0.9 | 2.2.5-3ubuntu0.9 | | +| 4 | libexpat1-dev | 2.2.5-3ubuntu0.9 | 2.2.5-3ubuntu0.9 | | +| 5 | libsasl2-2 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | | +| 6 | libsasl2-modules-db | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | 2.1.27~101-g0780600+dfsg-3ubuntu2.4 | | | 7 | python3-distutils | 3.6.9-1~18.04 | 3.6.9-1~18.04 | | | 8 | python3.7 | 3.7.5-2ubuntu1~18.04.2 | 3.7.5-2ubuntu1~18.04.2 | | | 9 | python3.7-dev | 3.7.5-2ubuntu1~18.04.2 | 3.7.5-2ubuntu1~18.04.2 | | diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/build_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/build_deps/apt_get_packages_diff.md index c1aac7e7..911f4316 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/build_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/build_deps/apt_get_packages_diff.md @@ -1,13 +1,13 @@ -| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | -|---:|:------------------|:-------------------------|:-------------------------|:---------| -| 0 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | -| 1 | chrpath | 0.16-2 | 0.16-2 | | -| 2 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | -| 3 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | -| 4 | libpcre3-dev | 2:8.39-9 | 2:8.39-9 | | -| 5 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | -| 6 | openjdk-11-jdk | 11.0.17+8-1ubuntu2~20.04 | 11.0.17+8-1ubuntu2~20.04 | | -| 7 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1 | | -| 8 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.2 | | \ No newline at end of file +| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | +|---:|:------------------|:-------------------------|:-------------------------------|:---------| +| 0 | libpcre3-dev | 2:8.39-9 | 2:8.39-9ubuntu0.1 | UPDATED | +| 1 | openjdk-11-jdk | 11.0.17+8-1ubuntu2~20.04 | 11.0.19+7~us1-0ubuntu1~20.04.1 | UPDATED | +| 2 | protobuf-compiler | 3.0.0-9.1ubuntu1 | 3.0.0-9.1ubuntu1.1 | UPDATED | +| 3 | tar | 1.29b-2ubuntu0.2 | 1.29b-2ubuntu0.4 | UPDATED | +| 4 | build-essential | 12.4ubuntu1 | 12.4ubuntu1 | | +| 5 | chrpath | 0.16-2 | 0.16-2 | | +| 6 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | +| 7 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | +| 8 | locales | 2.27-3ubuntu1.6 | 2.27-3ubuntu1.6 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/apt_get_packages_diff.md index 38978917..1f1dd641 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/apt_get_packages_diff.md @@ -1,9 +1,9 @@ -| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | -|---:|:------------------------|:----------------------------|:----------------------------|:---------| -| 0 | ca-certificates | 20211016ubuntu0.20.04.1 | 20211016ubuntu0.20.04.1 | | -| 1 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | -| 2 | openjdk-11-jdk-headless | 11.0.18+10-0ubuntu1~20.04.1 | 11.0.18+10-0ubuntu1~20.04.1 | | -| 3 | python3-distutils | 3.8.10-0ubuntu1~20.04 | 3.8.10-0ubuntu1~20.04 | | -| 4 | python3.8-dev | 3.8.10-0ubuntu1~20.04.7 | 3.8.10-0ubuntu1~20.04.7 | | \ No newline at end of file +| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | +|---:|:------------------------|:----------------------------|:-------------------------------|:---------| +| 0 | openjdk-11-jdk-headless | 11.0.18+10-0ubuntu1~20.04.1 | 11.0.19+7~us1-0ubuntu1~20.04.1 | UPDATED | +| 1 | ca-certificates | 20211016ubuntu0.20.04.1 | 20211016ubuntu0.20.04.1 | | +| 2 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | +| 3 | python3-distutils | 3.8.10-0ubuntu1~20.04 | 3.8.10-0ubuntu1~20.04 | | +| 4 | python3.8-dev | 3.8.10-0ubuntu1~20.04.7 | 3.8.10-0ubuntu1~20.04.7 | | \ No newline at end of file diff --git a/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/build_deps/packages/apt_get_packages b/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/build_deps/packages/apt_get_packages index f4f21ef2..fa60e07f 100644 --- a/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/build_deps/packages/apt_get_packages +++ b/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/build_deps/packages/apt_get_packages @@ -1,8 +1,8 @@ coreutils|8.28-1ubuntu1 locales|2.27-3ubuntu1.6 -tar|1.29b-2ubuntu0.2 +tar|1.29b-2ubuntu0.4 curl|7.58.0-2ubuntu3.24 -openjdk-11-jdk|11.0.11+9-0ubuntu2~18.04 +openjdk-11-jdk|11.0.19+7~us1-0ubuntu1~18.04.1 build-essential|12.4ubuntu1 libpcre3-dev|2:8.39-9 protobuf-compiler|3.0.0-9.1ubuntu1 diff --git a/flavors/standard-EXASOL-7.0.0/flavor_base/build_deps/packages/apt_get_packages b/flavors/standard-EXASOL-7.0.0/flavor_base/build_deps/packages/apt_get_packages index 885c15c5..6d352eac 100644 --- a/flavors/standard-EXASOL-7.0.0/flavor_base/build_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-7.0.0/flavor_base/build_deps/packages/apt_get_packages @@ -1,9 +1,9 @@ coreutils|8.28-1ubuntu1 locales|2.27-3ubuntu1.6 -tar|1.29b-2ubuntu0.2 +tar|1.29b-2ubuntu0.4 curl|7.58.0-2ubuntu3.24 -openjdk-11-jdk|11.0.17+8-1ubuntu2~18.04 +openjdk-11-jdk|11.0.19+7~us1-0ubuntu1~18.04.1 build-essential|12.4ubuntu1 -libpcre3-dev|2:8.39-9 -protobuf-compiler|3.0.0-9.1ubuntu1 +libpcre3-dev|2:8.39-9ubuntu0.1 +protobuf-compiler|3.0.0-9.1ubuntu1.1 chrpath|0.16-2 diff --git a/flavors/standard-EXASOL-7.0.0/flavor_base/language_deps/packages/apt_get_packages b/flavors/standard-EXASOL-7.0.0/flavor_base/language_deps/packages/apt_get_packages index d96aa978..2875e062 100644 --- a/flavors/standard-EXASOL-7.0.0/flavor_base/language_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-7.0.0/flavor_base/language_deps/packages/apt_get_packages @@ -1,5 +1,5 @@ git|1:2.17.1-1ubuntu0.18 -openjdk-11-jdk-headless|11.0.18+10-0ubuntu1~18.04.1 +openjdk-11-jdk-headless|11.0.19+7~us1-0ubuntu1~18.04.1 python3.7-dev|3.7.5-2ubuntu1~18.04.2 python3.7|3.7.5-2ubuntu1~18.04.2 python3-distutils|3.6.9-1~18.04 # Note: required by install_python3.7_pip.sh diff --git a/flavors/standard-EXASOL-7.1.0/flavor_base/build_deps/packages/apt_get_packages b/flavors/standard-EXASOL-7.1.0/flavor_base/build_deps/packages/apt_get_packages index 885c15c5..6d352eac 100644 --- a/flavors/standard-EXASOL-7.1.0/flavor_base/build_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-7.1.0/flavor_base/build_deps/packages/apt_get_packages @@ -1,9 +1,9 @@ coreutils|8.28-1ubuntu1 locales|2.27-3ubuntu1.6 -tar|1.29b-2ubuntu0.2 +tar|1.29b-2ubuntu0.4 curl|7.58.0-2ubuntu3.24 -openjdk-11-jdk|11.0.17+8-1ubuntu2~18.04 +openjdk-11-jdk|11.0.19+7~us1-0ubuntu1~18.04.1 build-essential|12.4ubuntu1 -libpcre3-dev|2:8.39-9 -protobuf-compiler|3.0.0-9.1ubuntu1 +libpcre3-dev|2:8.39-9ubuntu0.1 +protobuf-compiler|3.0.0-9.1ubuntu1.1 chrpath|0.16-2 diff --git a/flavors/standard-EXASOL-7.1.0/flavor_base/language_deps/packages/apt_get_packages b/flavors/standard-EXASOL-7.1.0/flavor_base/language_deps/packages/apt_get_packages index d96aa978..2875e062 100644 --- a/flavors/standard-EXASOL-7.1.0/flavor_base/language_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-7.1.0/flavor_base/language_deps/packages/apt_get_packages @@ -1,5 +1,5 @@ git|1:2.17.1-1ubuntu0.18 -openjdk-11-jdk-headless|11.0.18+10-0ubuntu1~18.04.1 +openjdk-11-jdk-headless|11.0.19+7~us1-0ubuntu1~18.04.1 python3.7-dev|3.7.5-2ubuntu1~18.04.2 python3.7|3.7.5-2ubuntu1~18.04.2 python3-distutils|3.6.9-1~18.04 # Note: required by install_python3.7_pip.sh diff --git a/flavors/standard-EXASOL-8.0.0/flavor_base/build_deps/packages/apt_get_packages b/flavors/standard-EXASOL-8.0.0/flavor_base/build_deps/packages/apt_get_packages index 666d782f..a227f36d 100644 --- a/flavors/standard-EXASOL-8.0.0/flavor_base/build_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-8.0.0/flavor_base/build_deps/packages/apt_get_packages @@ -1,9 +1,9 @@ coreutils|8.28-1ubuntu1 locales|2.27-3ubuntu1.6 -tar|1.29b-2ubuntu0.2 +tar|1.29b-2ubuntu0.4 curl|7.68.0-1ubuntu2.18 -openjdk-11-jdk|11.0.17+8-1ubuntu2~20.04 +openjdk-11-jdk|11.0.19+7~us1-0ubuntu1~20.04.1 build-essential|12.4ubuntu1 -libpcre3-dev|2:8.39-9 -protobuf-compiler|3.0.0-9.1ubuntu1 +libpcre3-dev|2:8.39-9ubuntu0.1 +protobuf-compiler|3.0.0-9.1ubuntu1.1 chrpath|0.16-2 diff --git a/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/apt_get_packages b/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/apt_get_packages index d5ff7cee..b46c9316 100644 --- a/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/apt_get_packages @@ -2,4 +2,4 @@ ca-certificates|20211016ubuntu0.20.04.1 python3.8-dev|3.8.10-0ubuntu1~20.04.7 python3-distutils|3.8.10-0ubuntu1~20.04 curl|7.68.0-1ubuntu2.18 -openjdk-11-jdk-headless|11.0.18+10-0ubuntu1~20.04.1 +openjdk-11-jdk-headless|11.0.19+7~us1-0ubuntu1~20.04.1 diff --git a/script-languages b/script-languages index bec91090..f33e58d0 160000 --- a/script-languages +++ b/script-languages @@ -1 +1 @@ -Subproject commit bec91090bbcd320085b881fa03a527a659789312 +Subproject commit f33e58d0c29c6a8e3d6ab54264306cba6565ac7b From 63a134a53e930a8686084ed1d463f7878f7ad199 Mon Sep 17 00:00:00 2001 From: Torsten Kilias Date: Thu, 25 May 2023 17:00:29 +0200 Subject: [PATCH 3/5] #803: Updated Ubuntu packages (#804) * Updated binutils * Updated ca-certificates --- .current_gitmodules | 2 +- doc/changes/changes_6.1.0.md | 5 +++-- .../base_test_deps/apt_get_packages_diff.md | 2 +- .../language_deps/apt_get_packages_diff.md | 2 +- .../base_test_deps/apt_get_packages_diff.md | 2 +- .../language_deps/apt_get_packages_diff.md | 2 +- .../base_test_deps/apt_get_packages_diff.md | 2 +- .../language_deps/apt_get_packages_diff.md | 2 +- .../base_test_deps/apt_get_packages_diff.md | 2 +- .../base_test_deps/apt_get_packages_diff.md | 2 +- .../base_test_deps/apt_get_packages_diff.md | 2 +- .../language_deps/apt_get_packages_diff.md | 4 ++-- .../conda_deps/apt_get_packages_diff.md | 2 +- .../nvidia_driver_deps/apt_get_packages_diff.md | 2 +- .../flavor_base/base_test_deps/packages/apt_get_packages | 2 +- .../flavor_base/language_deps/packages/apt_get_packages | 2 +- .../flavor_base/base_test_deps/packages/apt_get_packages | 2 +- .../flavor_base/base_test_deps/packages/apt_get_packages | 4 ++-- .../flavor_base/base_test_deps/packages/apt_get_packages | 2 +- .../flavor_base/language_deps/packages/apt_get_packages | 2 +- script-languages | 2 +- 21 files changed, 25 insertions(+), 24 deletions(-) diff --git a/.current_gitmodules b/.current_gitmodules index 1dfee250..30671b1e 100644 --- a/.current_gitmodules +++ b/.current_gitmodules @@ -1 +1 @@ -160000 f33e58d0c29c6a8e3d6ab54264306cba6565ac7b 0 script-languages +160000 f53827511f0af7d3c4b0955c05a311ca29b88877 0 script-languages diff --git a/doc/changes/changes_6.1.0.md b/doc/changes/changes_6.1.0.md index 79f38f38..385a0e5b 100644 --- a/doc/changes/changes_6.1.0.md +++ b/doc/changes/changes_6.1.0.md @@ -31,6 +31,7 @@ n/a ## Security - #785: Updated Ubuntu packages - - #789: Update Ubuntu packages - - #777: Update redis-py to fix CVE-2023-28859 + - #789: Updated Ubuntu packages + - #777: Updated redis-py to fix CVE-2023-28859 - #800: Updated Ubuntu packages + - #803: Updated Ubuntu packages diff --git a/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md index 3936fb10..6d16c61f 100644 --- a/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------|:-----------------------|:-----------------------|:---------| -| 0 | binutils | 2.30-21ubuntu1~18.04.8 | 2.30-21ubuntu1~18.04.8 | | +| 0 | binutils | 2.30-21ubuntu1~18.04.8 | 2.30-21ubuntu1~18.04.9 | UPDATED | | 1 | chrpath | 0.16-2 | 0.16-2 | | | 2 | gdb | 8.1.1-0ubuntu1 | 8.1.1-0ubuntu1 | | | 3 | gdbserver | 8.1.1-0ubuntu1 | 8.1.1-0ubuntu1 | | diff --git a/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md index 9da86030..f3313018 100644 --- a/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md @@ -2,5 +2,5 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:------------------------|:------------------------|:---------| -| 0 | ca-certificates | 20211016ubuntu0.18.04.1 | 20211016ubuntu0.18.04.1 | | +| 0 | ca-certificates | 20211016ubuntu0.18.04.1 | 20230311ubuntu0.18.04.1 | UPDATED | | 1 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md index e4d0ac4b..240ca7fe 100644 --- a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------|:---------------------|:---------------------|:---------| -| 0 | binutils | 2.34-6ubuntu1.4 | 2.34-6ubuntu1.4 | | +| 0 | binutils | 2.34-6ubuntu1.4 | 2.34-6ubuntu1.5 | UPDATED | | 1 | gdb | 9.2-0ubuntu1~20.04.1 | 9.2-0ubuntu1~20.04.1 | | | 2 | gdbserver | 9.2-0ubuntu1~20.04.1 | 9.2-0ubuntu1~20.04.1 | | | 3 | patchelf | 0.10-2build1 | 0.10-2build1 | | diff --git a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md index 114b5202..9d0f4c42 100644 --- a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:------------------|:------------------------|:------------------------|:---------| -| 0 | ca-certificates | 20211016ubuntu0.20.04.1 | 20211016ubuntu0.20.04.1 | | +| 0 | ca-certificates | 20211016ubuntu0.20.04.1 | 20230311ubuntu0.20.04.1 | UPDATED | | 1 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | | 2 | python3-distutils | 3.8.10-0ubuntu1~20.04 | 3.8.10-0ubuntu1~20.04 | | | 3 | python3.8-dev | 3.8.10-0ubuntu1~20.04.7 | 3.8.10-0ubuntu1~20.04.7 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md index 3936fb10..6d16c61f 100644 --- a/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/base_test_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------|:-----------------------|:-----------------------|:---------| -| 0 | binutils | 2.30-21ubuntu1~18.04.8 | 2.30-21ubuntu1~18.04.8 | | +| 0 | binutils | 2.30-21ubuntu1~18.04.8 | 2.30-21ubuntu1~18.04.9 | UPDATED | | 1 | chrpath | 0.16-2 | 0.16-2 | | | 2 | gdb | 8.1.1-0ubuntu1 | 8.1.1-0ubuntu1 | | | 3 | gdbserver | 8.1.1-0ubuntu1 | 8.1.1-0ubuntu1 | | diff --git a/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md index 9da86030..f3313018 100644 --- a/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/language_deps/apt_get_packages_diff.md @@ -2,5 +2,5 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:------------------------|:------------------------|:---------| -| 0 | ca-certificates | 20211016ubuntu0.18.04.1 | 20211016ubuntu0.18.04.1 | | +| 0 | ca-certificates | 20211016ubuntu0.18.04.1 | 20230311ubuntu0.18.04.1 | UPDATED | | 1 | curl | 7.58.0-2ubuntu3.24 | 7.58.0-2ubuntu3.24 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/base_test_deps/apt_get_packages_diff.md index 3936fb10..6d16c61f 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/base_test_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------|:-----------------------|:-----------------------|:---------| -| 0 | binutils | 2.30-21ubuntu1~18.04.8 | 2.30-21ubuntu1~18.04.8 | | +| 0 | binutils | 2.30-21ubuntu1~18.04.8 | 2.30-21ubuntu1~18.04.9 | UPDATED | | 1 | chrpath | 0.16-2 | 0.16-2 | | | 2 | gdb | 8.1.1-0ubuntu1 | 8.1.1-0ubuntu1 | | | 3 | gdbserver | 8.1.1-0ubuntu1 | 8.1.1-0ubuntu1 | | diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/base_test_deps/apt_get_packages_diff.md index 3936fb10..6d16c61f 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/base_test_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------|:-----------------------|:-----------------------|:---------| -| 0 | binutils | 2.30-21ubuntu1~18.04.8 | 2.30-21ubuntu1~18.04.8 | | +| 0 | binutils | 2.30-21ubuntu1~18.04.8 | 2.30-21ubuntu1~18.04.9 | UPDATED | | 1 | chrpath | 0.16-2 | 0.16-2 | | | 2 | gdb | 8.1.1-0ubuntu1 | 8.1.1-0ubuntu1 | | | 3 | gdbserver | 8.1.1-0ubuntu1 | 8.1.1-0ubuntu1 | | diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/base_test_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/base_test_deps/apt_get_packages_diff.md index e4d0ac4b..240ca7fe 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/base_test_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/base_test_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------|:---------------------|:---------------------|:---------| -| 0 | binutils | 2.34-6ubuntu1.4 | 2.34-6ubuntu1.4 | | +| 0 | binutils | 2.34-6ubuntu1.4 | 2.34-6ubuntu1.5 | UPDATED | | 1 | gdb | 9.2-0ubuntu1~20.04.1 | 9.2-0ubuntu1~20.04.1 | | | 2 | gdbserver | 9.2-0ubuntu1~20.04.1 | 9.2-0ubuntu1~20.04.1 | | | 3 | patchelf | 0.10-2build1 | 0.10-2build1 | | diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/apt_get_packages_diff.md index 1f1dd641..61930c0c 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/apt_get_packages_diff.md @@ -2,8 +2,8 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:------------------------|:----------------------------|:-------------------------------|:---------| -| 0 | openjdk-11-jdk-headless | 11.0.18+10-0ubuntu1~20.04.1 | 11.0.19+7~us1-0ubuntu1~20.04.1 | UPDATED | -| 1 | ca-certificates | 20211016ubuntu0.20.04.1 | 20211016ubuntu0.20.04.1 | | +| 0 | ca-certificates | 20211016ubuntu0.20.04.1 | 20230311ubuntu0.20.04.1 | UPDATED | +| 1 | openjdk-11-jdk-headless | 11.0.18+10-0ubuntu1~20.04.1 | 11.0.19+7~us1-0ubuntu1~20.04.1 | UPDATED | | 2 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | | 3 | python3-distutils | 3.8.10-0ubuntu1~20.04 | 3.8.10-0ubuntu1~20.04 | | | 4 | python3.8-dev | 3.8.10-0ubuntu1~20.04.7 | 3.8.10-0ubuntu1~20.04.7 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/conda_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/conda_deps/apt_get_packages_diff.md index f56c818c..c44a3d81 100644 --- a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/conda_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/conda_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:------------------------|:------------------------|:---------| -| 0 | ca-certificates | 20211016ubuntu0.20.04.1 | 20211016ubuntu0.20.04.1 | | +| 0 | ca-certificates | 20211016ubuntu0.20.04.1 | 20230311ubuntu0.20.04.1 | UPDATED | | 1 | coreutils | 8.30-3ubuntu2 | 8.30-3ubuntu2 | | | 2 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | | 3 | locales | 2.31-0ubuntu9.9 | 2.31-0ubuntu9.9 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/nvidia_driver_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/nvidia_driver_deps/apt_get_packages_diff.md index f56c818c..c44a3d81 100644 --- a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/nvidia_driver_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/nvidia_driver_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:------------------------|:------------------------|:---------| -| 0 | ca-certificates | 20211016ubuntu0.20.04.1 | 20211016ubuntu0.20.04.1 | | +| 0 | ca-certificates | 20211016ubuntu0.20.04.1 | 20230311ubuntu0.20.04.1 | UPDATED | | 1 | coreutils | 8.30-3ubuntu2 | 8.30-3ubuntu2 | | | 2 | curl | 7.68.0-1ubuntu2.18 | 7.68.0-1ubuntu2.18 | | | 3 | locales | 2.31-0ubuntu9.9 | 2.31-0ubuntu9.9 | | \ No newline at end of file diff --git a/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/base_test_deps/packages/apt_get_packages b/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/base_test_deps/packages/apt_get_packages index 18b029c1..7e8730d5 100644 --- a/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/base_test_deps/packages/apt_get_packages +++ b/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/base_test_deps/packages/apt_get_packages @@ -1,7 +1,7 @@ gdb|8.1.1-0ubuntu1 valgrind|1:3.13.0-2ubuntu2.3 gdbserver|8.1.1-0ubuntu1 -binutils|2.30-21ubuntu1~18.04.8 +binutils|2.30-21ubuntu1~18.04.9 patchelf|0.9-1 chrpath|0.16-2 strace|4.21-1ubuntu1 diff --git a/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/language_deps/packages/apt_get_packages b/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/language_deps/packages/apt_get_packages index 49cdbdb1..8dae0120 100644 --- a/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/language_deps/packages/apt_get_packages +++ b/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/language_deps/packages/apt_get_packages @@ -1,2 +1,2 @@ -ca-certificates|20211016ubuntu0.18.04.1 +ca-certificates|20230311ubuntu0.18.04.1 curl|7.58.0-2ubuntu3.24 diff --git a/flavors/standard-EXASOL-7.0.0/flavor_base/base_test_deps/packages/apt_get_packages b/flavors/standard-EXASOL-7.0.0/flavor_base/base_test_deps/packages/apt_get_packages index 18b029c1..7e8730d5 100644 --- a/flavors/standard-EXASOL-7.0.0/flavor_base/base_test_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-7.0.0/flavor_base/base_test_deps/packages/apt_get_packages @@ -1,7 +1,7 @@ gdb|8.1.1-0ubuntu1 valgrind|1:3.13.0-2ubuntu2.3 gdbserver|8.1.1-0ubuntu1 -binutils|2.30-21ubuntu1~18.04.8 +binutils|2.30-21ubuntu1~18.04.9 patchelf|0.9-1 chrpath|0.16-2 strace|4.21-1ubuntu1 diff --git a/flavors/standard-EXASOL-7.1.0/flavor_base/base_test_deps/packages/apt_get_packages b/flavors/standard-EXASOL-7.1.0/flavor_base/base_test_deps/packages/apt_get_packages index c61f91fd..7e8730d5 100644 --- a/flavors/standard-EXASOL-7.1.0/flavor_base/base_test_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-7.1.0/flavor_base/base_test_deps/packages/apt_get_packages @@ -1,7 +1,7 @@ gdb|8.1.1-0ubuntu1 valgrind|1:3.13.0-2ubuntu2.3 gdbserver|8.1.1-0ubuntu1 -binutils|2.30-21ubuntu1~18.04.8 +binutils|2.30-21ubuntu1~18.04.9 patchelf|0.9-1 chrpath|0.16-2 -strace|4.21-1ubuntu1 \ No newline at end of file +strace|4.21-1ubuntu1 diff --git a/flavors/standard-EXASOL-8.0.0/flavor_base/base_test_deps/packages/apt_get_packages b/flavors/standard-EXASOL-8.0.0/flavor_base/base_test_deps/packages/apt_get_packages index bce29326..37ad21f9 100644 --- a/flavors/standard-EXASOL-8.0.0/flavor_base/base_test_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-8.0.0/flavor_base/base_test_deps/packages/apt_get_packages @@ -1,6 +1,6 @@ gdb|9.2-0ubuntu1~20.04.1 valgrind|1:3.15.0-1ubuntu9.1 gdbserver|9.2-0ubuntu1~20.04.1 -binutils|2.34-6ubuntu1.4 +binutils|2.34-6ubuntu1.5 patchelf|0.10-2build1 strace|5.5-3ubuntu1 diff --git a/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/apt_get_packages b/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/apt_get_packages index b46c9316..d6060f61 100644 --- a/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/apt_get_packages @@ -1,4 +1,4 @@ -ca-certificates|20211016ubuntu0.20.04.1 +ca-certificates|20230311ubuntu0.20.04.1 python3.8-dev|3.8.10-0ubuntu1~20.04.7 python3-distutils|3.8.10-0ubuntu1~20.04 curl|7.68.0-1ubuntu2.18 diff --git a/script-languages b/script-languages index f33e58d0..f5382751 160000 --- a/script-languages +++ b/script-languages @@ -1 +1 @@ -Subproject commit f33e58d0c29c6a8e3d6ab54264306cba6565ac7b +Subproject commit f53827511f0af7d3c4b0955c05a311ca29b88877 From cf8e0731fc1e0ba0c22bbb73e74fbc5581590e42 Mon Sep 17 00:00:00 2001 From: Torsten Kilias Date: Thu, 1 Jun 2023 09:13:44 +0200 Subject: [PATCH 4/5] #814: Updated packages (#815) * Updated libssl * Updated poetry.lock * Updated openssl --- .current_gitmodules | 2 +- doc/changes/changes_6.1.0.md | 1 + .../udfclient_deps/apt_get_packages_diff.md | 2 +- .../udfclient_deps/apt_get_packages_diff.md | 2 +- .../udfclient_deps/apt_get_packages_diff.md | 2 +- .../udfclient_deps/apt_get_packages_diff.md | 2 +- .../udfclient_deps/apt_get_packages_diff.md | 2 +- .../apt_get_packages_diff.md | 2 +- .../udfclient_deps/apt_get_packages_diff.md | 2 +- .../udfclient_deps/packages/apt_get_packages | 2 +- .../udfclient_deps/packages/apt_get_packages | 2 +- .../udfclient_deps/packages/apt_get_packages | 2 +- .../packages/apt_get_packages | 2 +- .../udfclient_deps/packages/apt_get_packages | 2 +- poetry.lock | 112 +++++++++--------- script-languages | 2 +- 16 files changed, 71 insertions(+), 70 deletions(-) diff --git a/.current_gitmodules b/.current_gitmodules index 30671b1e..89eddd70 100644 --- a/.current_gitmodules +++ b/.current_gitmodules @@ -1 +1 @@ -160000 f53827511f0af7d3c4b0955c05a311ca29b88877 0 script-languages +160000 9e31ee46b46ff681418ab10f7c922d759431b6d9 0 script-languages diff --git a/doc/changes/changes_6.1.0.md b/doc/changes/changes_6.1.0.md index 385a0e5b..62d51225 100644 --- a/doc/changes/changes_6.1.0.md +++ b/doc/changes/changes_6.1.0.md @@ -35,3 +35,4 @@ n/a - #777: Updated redis-py to fix CVE-2023-28859 - #800: Updated Ubuntu packages - #803: Updated Ubuntu packages + - #815: Updated Ubuntu packages and poetry.lock diff --git a/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md index 68f6d6b6..f53a2173 100644 --- a/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/python-3.7-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:--------------------------|:--------------------------|:---------| -| 0 | libssl-dev | 1.1.1-1ubuntu2.1~18.04.21 | 1.1.1-1ubuntu2.1~18.04.22 | UPDATED | +| 0 | libssl-dev | 1.1.1-1ubuntu2.1~18.04.21 | 1.1.1-1ubuntu2.1~18.04.23 | UPDATED | | 1 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | | 2 | libnss-db | 2.2.3pre1-6build2 | 2.2.3pre1-6build2 | | | 3 | libprotobuf-dev | 3.0.0-9.1ubuntu1.1 | 3.0.0-9.1ubuntu1.1 | | diff --git a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md index 446faa9d..6e5ab2d5 100644 --- a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:-------------------|:-------------------|:---------| -| 0 | libssl-dev | 1.1.1f-1ubuntu2.17 | 1.1.1f-1ubuntu2.18 | UPDATED | +| 0 | libssl-dev | 1.1.1f-1ubuntu2.17 | 1.1.1f-1ubuntu2.19 | UPDATED | | 1 | coreutils | 8.30-3ubuntu2 | 8.30-3ubuntu2 | | | 2 | libnss-db | 2.2.3pre1-6build6 | 2.2.3pre1-6build6 | | | 3 | libprotobuf-dev | 3.6.1.3-2ubuntu5.2 | 3.6.1.3-2ubuntu5.2 | | diff --git a/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md index 68f6d6b6..f53a2173 100644 --- a/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/r-4-minimal-EXASOL-6.2.0/udfclient_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:--------------------------|:--------------------------|:---------| -| 0 | libssl-dev | 1.1.1-1ubuntu2.1~18.04.21 | 1.1.1-1ubuntu2.1~18.04.22 | UPDATED | +| 0 | libssl-dev | 1.1.1-1ubuntu2.1~18.04.21 | 1.1.1-1ubuntu2.1~18.04.23 | UPDATED | | 1 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | | 2 | libnss-db | 2.2.3pre1-6build2 | 2.2.3pre1-6build2 | | | 3 | libprotobuf-dev | 3.0.0-9.1ubuntu1.1 | 3.0.0-9.1ubuntu1.1 | | diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/udfclient_deps/apt_get_packages_diff.md index 68f6d6b6..f53a2173 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.0.0/udfclient_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:--------------------------|:--------------------------|:---------| -| 0 | libssl-dev | 1.1.1-1ubuntu2.1~18.04.21 | 1.1.1-1ubuntu2.1~18.04.22 | UPDATED | +| 0 | libssl-dev | 1.1.1-1ubuntu2.1~18.04.21 | 1.1.1-1ubuntu2.1~18.04.23 | UPDATED | | 1 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | | 2 | libnss-db | 2.2.3pre1-6build2 | 2.2.3pre1-6build2 | | | 3 | libprotobuf-dev | 3.0.0-9.1ubuntu1.1 | 3.0.0-9.1ubuntu1.1 | | diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/udfclient_deps/apt_get_packages_diff.md index 68f6d6b6..f53a2173 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-7.1.0/udfclient_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:--------------------------|:--------------------------|:---------| -| 0 | libssl-dev | 1.1.1-1ubuntu2.1~18.04.21 | 1.1.1-1ubuntu2.1~18.04.22 | UPDATED | +| 0 | libssl-dev | 1.1.1-1ubuntu2.1~18.04.21 | 1.1.1-1ubuntu2.1~18.04.23 | UPDATED | | 1 | coreutils | 8.28-1ubuntu1 | 8.28-1ubuntu1 | | | 2 | libnss-db | 2.2.3pre1-6build2 | 2.2.3pre1-6build2 | | | 3 | libprotobuf-dev | 3.0.0-9.1ubuntu1.1 | 3.0.0-9.1ubuntu1.1 | | diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/flavor_base_deps_apt/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/flavor_base_deps_apt/apt_get_packages_diff.md index 4a304931..bfc4a938 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/flavor_base_deps_apt/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/flavor_base_deps_apt/apt_get_packages_diff.md @@ -7,7 +7,7 @@ | 2 | libsmbclient | 2:4.15.13+dfsg-0ubuntu0.20.04.1 | 2:4.15.13+dfsg-0ubuntu0.20.04.2 | UPDATED | | 3 | libsmbclient-dev | 2:4.15.13+dfsg-0ubuntu0.20.04.1 | 2:4.15.13+dfsg-0ubuntu0.20.04.2 | UPDATED | | 4 | libxml2-dev | 2.9.10+dfsg-5ubuntu0.20.04.5 | 2.9.10+dfsg-5ubuntu0.20.04.6 | UPDATED | -| 5 | openssl | 1.1.1f-1ubuntu2.17 | 1.1.1f-1ubuntu2.18 | UPDATED | +| 5 | openssl | 1.1.1f-1ubuntu2.17 | 1.1.1f-1ubuntu2.19 | UPDATED | | 6 | smbclient | 2:4.15.13+dfsg-0ubuntu0.20.04.1 | 2:4.15.13+dfsg-0ubuntu0.20.04.2 | UPDATED | | 7 | apt-transport-https | 2.0.9 | 2.0.9 | | | 8 | build-essential | 12.8ubuntu1.1 | 12.8ubuntu1.1 | | diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/udfclient_deps/apt_get_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/udfclient_deps/apt_get_packages_diff.md index 446faa9d..6e5ab2d5 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/udfclient_deps/apt_get_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/udfclient_deps/apt_get_packages_diff.md @@ -2,7 +2,7 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------------|:-------------------|:-------------------|:---------| -| 0 | libssl-dev | 1.1.1f-1ubuntu2.17 | 1.1.1f-1ubuntu2.18 | UPDATED | +| 0 | libssl-dev | 1.1.1f-1ubuntu2.17 | 1.1.1f-1ubuntu2.19 | UPDATED | | 1 | coreutils | 8.30-3ubuntu2 | 8.30-3ubuntu2 | | | 2 | libnss-db | 2.2.3pre1-6build6 | 2.2.3pre1-6build6 | | | 3 | libprotobuf-dev | 3.6.1.3-2ubuntu5.2 | 3.6.1.3-2ubuntu5.2 | | diff --git a/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/udfclient_deps/packages/apt_get_packages b/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/udfclient_deps/packages/apt_get_packages index bb76288c..9b688970 100644 --- a/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/udfclient_deps/packages/apt_get_packages +++ b/flavors/r-4-minimal-EXASOL-6.2.0/flavor_base/udfclient_deps/packages/apt_get_packages @@ -3,4 +3,4 @@ locales|2.27-3ubuntu1.6 libnss-db|2.2.3pre1-6build2 libzmq3-dev|4.2.5-1ubuntu0.2 libprotobuf-dev|3.0.0-9.1ubuntu1.1 -libssl-dev|1.1.1-1ubuntu2.1~18.04.22 +libssl-dev|1.1.1-1ubuntu2.1~18.04.23 diff --git a/flavors/standard-EXASOL-7.0.0/flavor_base/udfclient_deps/packages/apt_get_packages b/flavors/standard-EXASOL-7.0.0/flavor_base/udfclient_deps/packages/apt_get_packages index bb76288c..9b688970 100644 --- a/flavors/standard-EXASOL-7.0.0/flavor_base/udfclient_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-7.0.0/flavor_base/udfclient_deps/packages/apt_get_packages @@ -3,4 +3,4 @@ locales|2.27-3ubuntu1.6 libnss-db|2.2.3pre1-6build2 libzmq3-dev|4.2.5-1ubuntu0.2 libprotobuf-dev|3.0.0-9.1ubuntu1.1 -libssl-dev|1.1.1-1ubuntu2.1~18.04.22 +libssl-dev|1.1.1-1ubuntu2.1~18.04.23 diff --git a/flavors/standard-EXASOL-7.1.0/flavor_base/udfclient_deps/packages/apt_get_packages b/flavors/standard-EXASOL-7.1.0/flavor_base/udfclient_deps/packages/apt_get_packages index bb76288c..9b688970 100644 --- a/flavors/standard-EXASOL-7.1.0/flavor_base/udfclient_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-7.1.0/flavor_base/udfclient_deps/packages/apt_get_packages @@ -3,4 +3,4 @@ locales|2.27-3ubuntu1.6 libnss-db|2.2.3pre1-6build2 libzmq3-dev|4.2.5-1ubuntu0.2 libprotobuf-dev|3.0.0-9.1ubuntu1.1 -libssl-dev|1.1.1-1ubuntu2.1~18.04.22 +libssl-dev|1.1.1-1ubuntu2.1~18.04.23 diff --git a/flavors/standard-EXASOL-8.0.0/flavor_base/flavor_base_deps_apt/packages/apt_get_packages b/flavors/standard-EXASOL-8.0.0/flavor_base/flavor_base_deps_apt/packages/apt_get_packages index c97ccf86..d9aa5327 100644 --- a/flavors/standard-EXASOL-8.0.0/flavor_base/flavor_base_deps_apt/packages/apt_get_packages +++ b/flavors/standard-EXASOL-8.0.0/flavor_base/flavor_base_deps_apt/packages/apt_get_packages @@ -6,7 +6,7 @@ wget|1.20.3-1ubuntu2 maven|3.6.3-1 libldb2|2:2.4.4-0ubuntu0.20.04.2 libleveldb1d|1.22-3ubuntu2 -openssl|1.1.1f-1ubuntu2.18 +openssl|1.1.1f-1ubuntu2.19 libldap2-dev|2.4.49+dfsg-2ubuntu1.9 # Needed by python-ldap libsasl2-dev|2.1.27+dfsg-2ubuntu0.1 # Needed by python-ldap slapd|2.4.49+dfsg-2ubuntu1.9 # Needed by python-ldap diff --git a/flavors/standard-EXASOL-8.0.0/flavor_base/udfclient_deps/packages/apt_get_packages b/flavors/standard-EXASOL-8.0.0/flavor_base/udfclient_deps/packages/apt_get_packages index 766942fe..61453132 100644 --- a/flavors/standard-EXASOL-8.0.0/flavor_base/udfclient_deps/packages/apt_get_packages +++ b/flavors/standard-EXASOL-8.0.0/flavor_base/udfclient_deps/packages/apt_get_packages @@ -3,4 +3,4 @@ locales|2.31-0ubuntu9.9 libnss-db|2.2.3pre1-6build6 libzmq3-dev|4.3.2-2ubuntu1 libprotobuf-dev|3.6.1.3-2ubuntu5.2 -libssl-dev|1.1.1f-1ubuntu2.18 +libssl-dev|1.1.1f-1ubuntu2.19 diff --git a/poetry.lock b/poetry.lock index fd1a5670..1ec9a436 100644 --- a/poetry.lock +++ b/poetry.lock @@ -21,18 +21,18 @@ tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pyte [[package]] name = "boto3" -version = "1.26.134" +version = "1.26.143" description = "The AWS SDK for Python" category = "main" optional = false python-versions = ">= 3.7" files = [ - {file = "boto3-1.26.134-py3-none-any.whl", hash = "sha256:a49b47621c71adfa952127222809ae50867ae4fd249bb932eb1a98519baefa40"}, - {file = "boto3-1.26.134.tar.gz", hash = "sha256:2da4a4caa789312ae73d29be9d3e79ce3328e3aaf7e9de0da6f243455ad3aae6"}, + {file = "boto3-1.26.143-py3-none-any.whl", hash = "sha256:65e91de5c0ee2e4786ab3b144410312344827154aa5bfb4e7b455e5e107cdbf8"}, + {file = "boto3-1.26.143.tar.gz", hash = "sha256:d973751c5ea2db7743f80ee8552043cace8f18a2472cae1ab93ffbfb6889b825"}, ] [package.dependencies] -botocore = ">=1.29.134,<1.30.0" +botocore = ">=1.29.143,<1.30.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.6.0,<0.7.0" @@ -41,14 +41,14 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.29.134" +version = "1.29.143" description = "Low-level, data-driven core of boto 3." category = "main" optional = false python-versions = ">= 3.7" files = [ - {file = "botocore-1.29.134-py3-none-any.whl", hash = "sha256:8a070ee14a430bd3c9cd16fd142e5c2900749060490698b2b981d6d9dadf5f1f"}, - {file = "botocore-1.29.134.tar.gz", hash = "sha256:0e907b0cab771ab7c9e25efd6b6bc0041ec1b17eb0bab316fd012ef2f8fd99ba"}, + {file = "botocore-1.29.143-py3-none-any.whl", hash = "sha256:fcb424c750a78a9f86b5ee8319bfa20de8528a80aadcdd171910bcb8d45c3055"}, + {file = "botocore-1.29.143.tar.gz", hash = "sha256:e5b8dd2fa750f0476667753dc018c2b14a542fec7e20edd3a7613b6d2df2c32a"}, ] [package.dependencies] @@ -262,31 +262,31 @@ files = [ [[package]] name = "cryptography" -version = "40.0.2" +version = "41.0.0" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "cryptography-40.0.2-cp36-abi3-macosx_10_12_universal2.whl", hash = "sha256:8f79b5ff5ad9d3218afb1e7e20ea74da5f76943ee5edb7f76e56ec5161ec782b"}, - {file = "cryptography-40.0.2-cp36-abi3-macosx_10_12_x86_64.whl", hash = "sha256:05dc219433b14046c476f6f09d7636b92a1c3e5808b9a6536adf4932b3b2c440"}, - {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4df2af28d7bedc84fe45bd49bc35d710aede676e2a4cb7fc6d103a2adc8afe4d"}, - {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dcca15d3a19a66e63662dc8d30f8036b07be851a8680eda92d079868f106288"}, - {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:a04386fb7bc85fab9cd51b6308633a3c271e3d0d3eae917eebab2fac6219b6d2"}, - {file = "cryptography-40.0.2-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:adc0d980fd2760c9e5de537c28935cc32b9353baaf28e0814df417619c6c8c3b"}, - {file = "cryptography-40.0.2-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d5a1bd0e9e2031465761dfa920c16b0065ad77321d8a8c1f5ee331021fda65e9"}, - {file = "cryptography-40.0.2-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:a95f4802d49faa6a674242e25bfeea6fc2acd915b5e5e29ac90a32b1139cae1c"}, - {file = "cryptography-40.0.2-cp36-abi3-win32.whl", hash = "sha256:aecbb1592b0188e030cb01f82d12556cf72e218280f621deed7d806afd2113f9"}, - {file = "cryptography-40.0.2-cp36-abi3-win_amd64.whl", hash = "sha256:b12794f01d4cacfbd3177b9042198f3af1c856eedd0a98f10f141385c809a14b"}, - {file = "cryptography-40.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:142bae539ef28a1c76794cca7f49729e7c54423f615cfd9b0b1fa90ebe53244b"}, - {file = "cryptography-40.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:956ba8701b4ffe91ba59665ed170a2ebbdc6fc0e40de5f6059195d9f2b33ca0e"}, - {file = "cryptography-40.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4f01c9863da784558165f5d4d916093737a75203a5c5286fde60e503e4276c7a"}, - {file = "cryptography-40.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:3daf9b114213f8ba460b829a02896789751626a2a4e7a43a28ee77c04b5e4958"}, - {file = "cryptography-40.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48f388d0d153350f378c7f7b41497a54ff1513c816bcbbcafe5b829e59b9ce5b"}, - {file = "cryptography-40.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c0764e72b36a3dc065c155e5b22f93df465da9c39af65516fe04ed3c68c92636"}, - {file = "cryptography-40.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:cbaba590180cba88cb99a5f76f90808a624f18b169b90a4abb40c1fd8c19420e"}, - {file = "cryptography-40.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7a38250f433cd41df7fcb763caa3ee9362777fdb4dc642b9a349721d2bf47404"}, - {file = "cryptography-40.0.2.tar.gz", hash = "sha256:c33c0d32b8594fa647d2e01dbccc303478e16fdd7cf98652d5b3ed11aa5e5c99"}, + {file = "cryptography-41.0.0-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:3c5ef25d060c80d6d9f7f9892e1d41bb1c79b78ce74805b8cb4aa373cb7d5ec8"}, + {file = "cryptography-41.0.0-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:8362565b3835ceacf4dc8f3b56471a2289cf51ac80946f9087e66dc283a810e0"}, + {file = "cryptography-41.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3680248309d340fda9611498a5319b0193a8dbdb73586a1acf8109d06f25b92d"}, + {file = "cryptography-41.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84a165379cb9d411d58ed739e4af3396e544eac190805a54ba2e0322feb55c46"}, + {file = "cryptography-41.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:4ab14d567f7bbe7f1cdff1c53d5324ed4d3fc8bd17c481b395db224fb405c237"}, + {file = "cryptography-41.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9f65e842cb02550fac96536edb1d17f24c0a338fd84eaf582be25926e993dde4"}, + {file = "cryptography-41.0.0-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:b7f2f5c525a642cecad24ee8670443ba27ac1fab81bba4cc24c7b6b41f2d0c75"}, + {file = "cryptography-41.0.0-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:7d92f0248d38faa411d17f4107fc0bce0c42cae0b0ba5415505df72d751bf62d"}, + {file = "cryptography-41.0.0-cp37-abi3-win32.whl", hash = "sha256:34d405ea69a8b34566ba3dfb0521379b210ea5d560fafedf9f800a9a94a41928"}, + {file = "cryptography-41.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:344c6de9f8bda3c425b3a41b319522ba3208551b70c2ae00099c205f0d9fd3be"}, + {file = "cryptography-41.0.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:88ff107f211ea696455ea8d911389f6d2b276aabf3231bf72c8853d22db755c5"}, + {file = "cryptography-41.0.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:b846d59a8d5a9ba87e2c3d757ca019fa576793e8758174d3868aecb88d6fc8eb"}, + {file = "cryptography-41.0.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f5d0bf9b252f30a31664b6f64432b4730bb7038339bd18b1fafe129cfc2be9be"}, + {file = "cryptography-41.0.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5c1f7293c31ebc72163a9a0df246f890d65f66b4a40d9ec80081969ba8c78cc9"}, + {file = "cryptography-41.0.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bf8fc66012ca857d62f6a347007e166ed59c0bc150cefa49f28376ebe7d992a2"}, + {file = "cryptography-41.0.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:a4fc68d1c5b951cfb72dfd54702afdbbf0fb7acdc9b7dc4301bbf2225a27714d"}, + {file = "cryptography-41.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:14754bcdae909d66ff24b7b5f166d69340ccc6cb15731670435efd5719294895"}, + {file = "cryptography-41.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0ddaee209d1cf1f180f1efa338a68c4621154de0afaef92b89486f5f96047c55"}, + {file = "cryptography-41.0.0.tar.gz", hash = "sha256:6b71f64beeea341c9b4f963b48ee3b62d62d57ba93eb120e1196b31dc1025e78"}, ] [package.dependencies] @@ -295,30 +295,30 @@ cffi = ">=1.12" [package.extras] docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] -pep8test = ["black", "check-manifest", "mypy", "ruff"] -sdist = ["setuptools-rust (>=0.11.4)"] +nox = ["nox"] +pep8test = ["black", "check-sdist", "mypy", "ruff"] +sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-shard (>=0.1.2)", "pytest-subtests", "pytest-xdist"] +test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] -tox = ["tox"] [[package]] name = "deprecated" -version = "1.2.13" +version = "1.2.14" description = "Python @deprecated decorator to deprecate old python classes, functions or methods." category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ - {file = "Deprecated-1.2.13-py2.py3-none-any.whl", hash = "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d"}, - {file = "Deprecated-1.2.13.tar.gz", hash = "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d"}, + {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, + {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, ] [package.dependencies] wrapt = ">=1.10,<2" [package.extras] -dev = ["PyTest", "PyTest (<5)", "PyTest-Cov", "PyTest-Cov (<2.6)", "bump2version (<1)", "configparser (<5)", "importlib-metadata (<3)", "importlib-resources (<4)", "sphinx (<2)", "sphinxcontrib-websupport (<2)", "tox", "zipp (<2)"] +dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] [[package]] name = "docker" @@ -343,14 +343,14 @@ ssh = ["paramiko (>=2.4.3)"] [[package]] name = "docutils" -version = "0.20" +version = "0.20.1" description = "Docutils -- Python Documentation Utilities" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "docutils-0.20-py3-none-any.whl", hash = "sha256:a428f10de4de4774389734c986a01b4af2d802d26717108b0f1b9356862937c5"}, - {file = "docutils-0.20.tar.gz", hash = "sha256:f75a5a52fbcacd81b47e42888ad2b380748aaccfb3f13af0fe69deb759f01eb6"}, + {file = "docutils-0.20.1-py3-none-any.whl", hash = "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6"}, + {file = "docutils-0.20.1.tar.gz", hash = "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b"}, ] [[package]] @@ -974,18 +974,18 @@ tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] [[package]] name = "pyopenssl" -version = "23.1.1" +version = "23.2.0" description = "Python wrapper module around the OpenSSL library" category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "pyOpenSSL-23.1.1-py3-none-any.whl", hash = "sha256:9e0c526404a210df9d2b18cd33364beadb0dc858a739b885677bc65e105d4a4c"}, - {file = "pyOpenSSL-23.1.1.tar.gz", hash = "sha256:841498b9bec61623b1b6c47ebbc02367c07d60e0e195f19790817f10cc8db0b7"}, + {file = "pyOpenSSL-23.2.0-py3-none-any.whl", hash = "sha256:24f0dc5227396b3e831f4c7f602b950a5e9833d292c8e4a2e06b709292806ae2"}, + {file = "pyOpenSSL-23.2.0.tar.gz", hash = "sha256:276f931f55a452e7dea69c7173e984eb2a4407ce413c918aa34b55f82f9b8bac"}, ] [package.dependencies] -cryptography = ">=38.0.0,<41" +cryptography = ">=38.0.0,<40.0.0 || >40.0.0,<40.0.1 || >40.0.1,<42" [package.extras] docs = ["sphinx (!=5.2.0,!=5.2.0.post0)", "sphinx-rtd-theme"] @@ -1116,14 +1116,14 @@ six = ">=1.5" [[package]] name = "requests" -version = "2.30.0" +version = "2.31.0" description = "Python HTTP for Humans." category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "requests-2.30.0-py3-none-any.whl", hash = "sha256:10e94cc4f3121ee6da529d358cdaeaff2f1c409cd377dbc72b825852f2f7e294"}, - {file = "requests-2.30.0.tar.gz", hash = "sha256:239d7d4458afcb28a692cdd298d87542235f4ca8d36d03a15bfc128a6559a2f4"}, + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, ] [package.dependencies] @@ -1171,19 +1171,19 @@ crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"] [[package]] name = "setuptools" -version = "67.7.2" +version = "67.8.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "setuptools-67.7.2-py3-none-any.whl", hash = "sha256:23aaf86b85ca52ceb801d32703f12d77517b2556af839621c641fca11287952b"}, - {file = "setuptools-67.7.2.tar.gz", hash = "sha256:f104fa03692a2602fa0fec6c6a9e63b6c8a968de13e17c026957dd1f53d80990"}, + {file = "setuptools-67.8.0-py3-none-any.whl", hash = "sha256:5df61bf30bb10c6f756eb19e7c9f3b473051f48db77fddbe06ff2ca307df9a6f"}, + {file = "setuptools-67.8.0.tar.gz", hash = "sha256:62642358adc77ffa87233bc4d2354c4b2682d214048f500964dbe760ccedf102"}, ] [package.extras] docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] [[package]] @@ -1395,14 +1395,14 @@ test = ["mypy", "pytest", "typing-extensions"] [[package]] name = "urllib3" -version = "1.26.15" +version = "1.26.16" description = "HTTP library with thread-safe connection pooling, file post, and more." category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ - {file = "urllib3-1.26.15-py2.py3-none-any.whl", hash = "sha256:aa751d169e23c7479ce47a0cb0da579e3ede798f994f5816a74e4f4500dcea42"}, - {file = "urllib3-1.26.15.tar.gz", hash = "sha256:8a388717b9476f934a21484e8c8e61875ab60644d29b9b39e11e4b9dc1c6b305"}, + {file = "urllib3-1.26.16-py2.py3-none-any.whl", hash = "sha256:8d36afa7616d8ab714608411b4a3b13e58f463aee519024578e062e141dce20f"}, + {file = "urllib3-1.26.16.tar.gz", hash = "sha256:8f135f6502756bde6b2a9b28989df5fbe87c9970cecaa69041edcce7f0589b14"}, ] [package.extras] @@ -1412,14 +1412,14 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "websocket-client" -version = "1.5.1" +version = "1.5.2" description = "WebSocket client for Python with low level API options" category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "websocket-client-1.5.1.tar.gz", hash = "sha256:3f09e6d8230892547132177f575a4e3e73cfdf06526e20cc02aa1c3b47184d40"}, - {file = "websocket_client-1.5.1-py3-none-any.whl", hash = "sha256:cdf5877568b7e83aa7cf2244ab56a3213de587bbe0ce9d8b9600fc77b455d89e"}, + {file = "websocket-client-1.5.2.tar.gz", hash = "sha256:c7d67c13b928645f259d9b847ab5b57fd2d127213ca41ebd880de1f553b7c23b"}, + {file = "websocket_client-1.5.2-py3-none-any.whl", hash = "sha256:f8c64e28cd700e7ba1f04350d66422b6833b82a796b525a51e740b8cc8dab4b1"}, ] [package.extras] diff --git a/script-languages b/script-languages index f5382751..9e31ee46 160000 --- a/script-languages +++ b/script-languages @@ -1 +1 @@ -Subproject commit f53827511f0af7d3c4b0955c05a311ca29b88877 +Subproject commit 9e31ee46b46ff681418ab10f7c922d759431b6d9 From 7b164446860c7a2d93052200b8203861ac410c42 Mon Sep 17 00:00:00 2001 From: Torsten Kilias Date: Fri, 2 Jun 2023 15:29:19 +0200 Subject: [PATCH 5/5] #793: Added support for Pandas 2 pyarrow dtype columns for emitting data from Python UDFs (#795) * #796: Fixed silent data corruption when emitting dataframes with float16 dtype columns from Python UDFs * Replace asscalar with item in test dataframe.py, because asscalar was removed * Added handleEmitPyFloat to also support float pyarrow dtype columns with NAN and object-dtype columns with float * Refactored and split Pandas Tests * Added tests for more dtypes to Pandas Tests * Documented supported dtypes when emitting dataframes Co-authored-by: Thomas Ubensee <34603111+tomuben@users.noreply.github.com> --- .current_gitmodules | 2 +- doc/changes/changes_6.1.0.md | 11 +- .../python3_pip_packages_diff.md | 5 +- .../python3_pip_packages_diff.md | 149 +++++++++--------- .../python3_pip_packages_diff.md | 4 +- .../build_deps/conda_packages_diff.md | 16 +- .../language_deps/conda_packages_diff.md | 19 +-- .../udfclient_deps/conda_packages_diff.md | 10 +- .../build_deps/conda_packages_diff.md | 16 +- .../language_deps/conda_packages_diff.md | 23 +-- .../udfclient_deps/conda_packages_diff.md | 10 +- doc/user_guide/py_dataframe.md | 42 ++++- .../flavor_base/testconfig | 2 +- .../flavor_base/testconfig | 2 +- .../packages/python3_pip_packages | 38 ++--- .../packages/python3_pip_packages | 4 +- .../flavor_base/testconfig | 2 +- script-languages | 2 +- 18 files changed, 201 insertions(+), 156 deletions(-) diff --git a/.current_gitmodules b/.current_gitmodules index 89eddd70..20f63418 100644 --- a/.current_gitmodules +++ b/.current_gitmodules @@ -1 +1 @@ -160000 9e31ee46b46ff681418ab10f7c922d759431b6d9 0 script-languages +160000 ba46d9dd0c29838c1c3848655fd25d5963ae65cd 0 script-languages diff --git a/doc/changes/changes_6.1.0.md b/doc/changes/changes_6.1.0.md index 62d51225..e2c57057 100644 --- a/doc/changes/changes_6.1.0.md +++ b/doc/changes/changes_6.1.0.md @@ -1,10 +1,10 @@ -# script-languages-release 6.1.0, released t.b.d. +# script-languages-release 6.1.0, released 2023-06-02 -Code name: t.b.d. +Code name: Pandas 2 support ## Summary -t.b.d. +This releases adds support for Pandas 2 pyarrow dtype columns for emitting dataframes from Python UDFs. Furthermore, it fixes a silent data corruption when emitting dateframes with float16 dtype columns from Python UDFs. ## [Package Version Comparison between Release 6.0.0 and 6.1.0](package_diffs/6.1.0/README.md) @@ -14,11 +14,12 @@ This release uses version 0.17.0 of the container tool. ## Bug Fixes - - #792: Fixes Github workflow publish-test-container by updating script-languages-container-tool to 0.17.0 and script-languages-container-ci to 1.1.0 + - #792: Fixed Github workflow publish-test-container by updating script-languages-container-tool to 0.17.0 and script-languages-container-ci to 1.1.0 + - #796: Fixed silent data corruption when emitting dataframes with float16 dtype columns from Python UDFs ## Features / Enhancements - n/a + - #793: Added support for Pandas 2 pyarrow dtype columns for emitting data from Python UDFs ## Documentation diff --git a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/language_deps/python3_pip_packages_diff.md b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/language_deps/python3_pip_packages_diff.md index ba871348..fd45f3e9 100644 --- a/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/language_deps/python3_pip_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/python-3.8-minimal-EXASOL-6.2.0/language_deps/python3_pip_packages_diff.md @@ -2,5 +2,6 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------|:-------------------|:-------------------|:---------| -| 0 | numpy | 1.21.3 | 1.21.3 | | -| 1 | pandas | 1.3.4 | 1.3.4 | | \ No newline at end of file +| 0 | numpy | 1.21.3 | 1.24.3 | UPDATED | +| 1 | pandas | 1.3.4 | 2.0.2 | UPDATED | +| 2 | pyarrow | | 12.0.0 | NEW | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/flavor_base_deps_python/python3_pip_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/flavor_base_deps_python/python3_pip_packages_diff.md index 150910a9..97d4cb12 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/flavor_base_deps_python/python3_pip_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/flavor_base_deps_python/python3_pip_packages_diff.md @@ -2,77 +2,78 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:------------------------------------------------------------------------------------------------------------------------------|:---------------------|:---------------------|:---------| -| 0 | redis | 4.5.3 | 4.5.4 | UPDATED | -| 1 | azure-batch | 11.0.0 | 11.0.0 | | -| 2 | azure-cosmos | 4.2.0 | 4.2.0 | | -| 3 | azure-eventgrid | 4.7.1 | 4.7.1 | | -| 4 | azure-eventhub | 5.7.0 | 5.7.0 | | -| 5 | azure-eventhub-checkpointstoreblob | 1.1.4 | 1.1.4 | | -| 6 | azure-eventhub-checkpointstoreblob-aio | 1.1.4 | 1.1.4 | | -| 7 | azure-identity | 1.6.1 | 1.6.1 | | -| 8 | azure-keyvault | 4.1.0 | 4.1.0 | | -| 9 | azure-keyvault-certificates | 4.3.0 | 4.3.0 | | -| 10 | azure-keyvault-keys | 4.4.0 | 4.4.0 | | -| 11 | azure-keyvault-secrets | 4.3.0 | 4.3.0 | | -| 12 | azure-kusto-data | 2.3.2 | 2.3.2 | | -| 13 | azure-loganalytics | 0.1.1 | 0.1.1 | | -| 14 | azure-servicebus | 7.5.0 | 7.5.0 | | -| 15 | azure-storage-blob | 12.9.0 | 12.9.0 | | -| 16 | azure-storage-file-datalake | 12.5.0 | 12.5.0 | | -| 17 | azure-storage-file-share | 12.6.0 | 12.6.0 | | -| 18 | azure-storage-queue | 12.1.6 | 12.1.6 | | -| 19 | bitarray | 2.3.5 | 2.3.5 | | -| 20 | bitsets | 0.8.3 | 0.8.3 | | -| 21 | boto3 | 1.20.37 | 1.20.37 | | -| 22 | cffi | 1.15.0 | 1.15.0 | | -| 23 | cryptography | 39.0.1 | 39.0.1 | | -| 24 | debugpy | 1.5.1 | 1.5.1 | | -| 25 | docutils | 0.18.1 | 0.18.1 | | -| 26 | git+http://github.com/EXASOL/websocket-api.git@5150f964388412788bf5e47752a7916a5a8624c5#egg=exasol-db-api&subdirectory=python | No version specified | No version specified | | -| 27 | google-cloud-asset | 3.7.1 | 3.7.1 | | -| 28 | google-cloud-bigquery | 2.32.0 | 2.32.0 | | -| 29 | google-cloud-bigquery-storage | 2.11.0 | 2.11.0 | | -| 30 | google-cloud-bigtable | 2.4.0 | 2.4.0 | | -| 31 | google-cloud-containeranalysis | 2.6.3 | 2.6.3 | | -| 32 | google-cloud-datacatalog | 3.6.2 | 3.6.2 | | -| 33 | google-cloud-datastore | 1.15.3 | 1.15.3 | | -| 34 | google-cloud-firestore | 2.3.4 | 2.3.4 | | -| 35 | google-cloud-kms | 2.10.1 | 2.10.1 | | -| 36 | google-cloud-logging | 2.7.0 | 2.7.0 | | -| 37 | google-cloud-monitoring | 2.8.0 | 2.8.0 | | -| 38 | google-cloud-ndb | 1.11.1 | 1.11.1 | | -| 39 | google-cloud-pubsub | 2.9.0 | 2.9.0 | | -| 40 | google-cloud-spanner | 3.12.1 | 3.12.1 | | -| 41 | google-cloud-storage | 2.0.0 | 2.0.0 | | -| 42 | google-cloud-trace | 1.5.1 | 1.5.1 | | -| 43 | https://github.com/exasol/bucketfs-utils-python/releases/download/0.1.0/exasol_bucketfs_utils_python-0.1.0-py3-none-any.whl | No version specified | No version specified | | -| 44 | jinja2 | 3.0.3 | 3.0.3 | | -| 45 | lxml | 4.9.1 | 4.9.1 | | -| 46 | martian | 1.4 | 1.4 | | -| 47 | numba | 0.55.0 | 0.55.0 | | -| 48 | numba-scipy | 0.3.0 | 0.3.0 | | -| 49 | paramiko | 2.9.2 | 2.9.2 | | -| 50 | plyvel | 1.4.0 | 1.4.0 | | -| 51 | protobuf | 3.19.5 | 3.19.5 | | -| 52 | pyOpenSSL | 23.0.0 | 23.0.0 | | -| 53 | pyarrow | 6.0.1 | 6.0.1 | | -| 54 | pybase64 | 1.2.1 | 1.2.1 | | -| 55 | pybloomfiltermmap3 | 0.5.5 | 0.5.5 | | -| 56 | pycurl | 7.44.1 | 7.44.1 | | -| 57 | pyexasol | 0.23.3 | 0.23.3 | | -| 58 | pyftpdlib | 1.5.6 | 1.5.6 | | -| 59 | pyodbc | 4.0.32 | 4.0.32 | | -| 60 | pysftp | 0.2.9 | 0.2.9 | | -| 61 | pysimdjson | 4.0.3 | 4.0.3 | | -| 62 | pysmbc | 1.0.23 | 1.0.23 | | -| 63 | python-ldap | 3.4.0 | 3.4.0 | | -| 64 | pytz | 2021.3 | 2021.3 | | -| 65 | pyyaml | 6.0 | 6.0 | | -| 66 | requests | 2.27.1 | 2.27.1 | | -| 67 | roman | 3.3 | 3.3 | | -| 68 | sagemaker | 2.72.3 | 2.72.3 | | -| 69 | scikit-learn | 1.0.2 | 1.0.2 | | -| 70 | scipy | 1.6.2 | 1.6.2 | | -| 71 | setuptools | 65.5.1 | 65.5.1 | | -| 72 | simplejson | 3.17.6 | 3.17.6 | | -| 73 | ujson | 5.4.0 | 5.4.0 | | \ No newline at end of file +| 0 | boto3 | 1.20.37 | 1.26.125 | UPDATED | +| 1 | cryptography | 39.0.1 | 40.0.2 | UPDATED | +| 2 | debugpy | 1.5.1 | 1.6.7 | UPDATED | +| 3 | numba | 0.55.0 | 0.57.0 | UPDATED | +| 4 | numba-scipy | 0.3.0 | 0.3.1 | UPDATED | +| 5 | paramiko | 2.9.2 | 3.1.0 | UPDATED | +| 6 | plyvel | 1.4.0 | 1.5.0 | UPDATED | +| 7 | protobuf | 3.19.5 | 3.20.3 | UPDATED | +| 8 | pyOpenSSL | 23.0.0 | 23.1.1 | UPDATED | +| 9 | pyarrow | 6.0.1 | 12.0.0 | UPDATED | +| 10 | pyexasol | 0.23.3 | 0.25.2 | UPDATED | +| 11 | pysimdjson | 4.0.3 | 5.0.2 | UPDATED | +| 12 | python-ldap | 3.4.0 | 3.4.3 | UPDATED | +| 13 | pytz | 2021.3 | 2023.3 | UPDATED | +| 14 | pyyaml | 6.0 | 5.4.1 | UPDATED | +| 15 | redis | 4.5.3 | 4.5.4 | UPDATED | +| 16 | sagemaker | 2.72.3 | 2.151.0 | UPDATED | +| 17 | scikit-learn | 1.0.2 | 1.2.2 | UPDATED | +| 18 | scipy | 1.6.2 | 1.7.3 | UPDATED | +| 19 | https://github.com/exasol/bucketfs-utils-python/releases/download/0.1.0/exasol_bucketfs_utils_python-0.1.0-py3-none-any.whl | No version specified | | REMOVED | +| 20 | exasol-bucketfs | | 0.8.0 | NEW | +| 21 | azure-batch | 11.0.0 | 11.0.0 | | +| 22 | azure-cosmos | 4.2.0 | 4.2.0 | | +| 23 | azure-eventgrid | 4.7.1 | 4.7.1 | | +| 24 | azure-eventhub | 5.7.0 | 5.7.0 | | +| 25 | azure-eventhub-checkpointstoreblob | 1.1.4 | 1.1.4 | | +| 26 | azure-eventhub-checkpointstoreblob-aio | 1.1.4 | 1.1.4 | | +| 27 | azure-identity | 1.6.1 | 1.6.1 | | +| 28 | azure-keyvault | 4.1.0 | 4.1.0 | | +| 29 | azure-keyvault-certificates | 4.3.0 | 4.3.0 | | +| 30 | azure-keyvault-keys | 4.4.0 | 4.4.0 | | +| 31 | azure-keyvault-secrets | 4.3.0 | 4.3.0 | | +| 32 | azure-kusto-data | 2.3.2 | 2.3.2 | | +| 33 | azure-loganalytics | 0.1.1 | 0.1.1 | | +| 34 | azure-servicebus | 7.5.0 | 7.5.0 | | +| 35 | azure-storage-blob | 12.9.0 | 12.9.0 | | +| 36 | azure-storage-file-datalake | 12.5.0 | 12.5.0 | | +| 37 | azure-storage-file-share | 12.6.0 | 12.6.0 | | +| 38 | azure-storage-queue | 12.1.6 | 12.1.6 | | +| 39 | bitarray | 2.3.5 | 2.3.5 | | +| 40 | bitsets | 0.8.3 | 0.8.3 | | +| 41 | cffi | 1.15.0 | 1.15.0 | | +| 42 | docutils | 0.18.1 | 0.18.1 | | +| 43 | git+http://github.com/EXASOL/websocket-api.git@5150f964388412788bf5e47752a7916a5a8624c5#egg=exasol-db-api&subdirectory=python | No version specified | No version specified | | +| 44 | google-cloud-asset | 3.7.1 | 3.7.1 | | +| 45 | google-cloud-bigquery | 2.32.0 | 2.32.0 | | +| 46 | google-cloud-bigquery-storage | 2.11.0 | 2.11.0 | | +| 47 | google-cloud-bigtable | 2.4.0 | 2.4.0 | | +| 48 | google-cloud-containeranalysis | 2.6.3 | 2.6.3 | | +| 49 | google-cloud-datacatalog | 3.6.2 | 3.6.2 | | +| 50 | google-cloud-datastore | 1.15.3 | 1.15.3 | | +| 51 | google-cloud-firestore | 2.3.4 | 2.3.4 | | +| 52 | google-cloud-kms | 2.10.1 | 2.10.1 | | +| 53 | google-cloud-logging | 2.7.0 | 2.7.0 | | +| 54 | google-cloud-monitoring | 2.8.0 | 2.8.0 | | +| 55 | google-cloud-ndb | 1.11.1 | 1.11.1 | | +| 56 | google-cloud-pubsub | 2.9.0 | 2.9.0 | | +| 57 | google-cloud-spanner | 3.12.1 | 3.12.1 | | +| 58 | google-cloud-storage | 2.0.0 | 2.0.0 | | +| 59 | google-cloud-trace | 1.5.1 | 1.5.1 | | +| 60 | jinja2 | 3.0.3 | 3.0.3 | | +| 61 | lxml | 4.9.1 | 4.9.1 | | +| 62 | martian | 1.4 | 1.4 | | +| 63 | pybase64 | 1.2.1 | 1.2.1 | | +| 64 | pybloomfiltermmap3 | 0.5.5 | 0.5.5 | | +| 65 | pycurl | 7.44.1 | 7.44.1 | | +| 66 | pyftpdlib | 1.5.6 | 1.5.6 | | +| 67 | pyodbc | 4.0.32 | 4.0.32 | | +| 68 | pysftp | 0.2.9 | 0.2.9 | | +| 69 | pysmbc | 1.0.23 | 1.0.23 | | +| 70 | requests | 2.27.1 | 2.27.1 | | +| 71 | roman | 3.3 | 3.3 | | +| 72 | setuptools | 65.5.1 | 65.5.1 | | +| 73 | simplejson | 3.17.6 | 3.17.6 | | +| 74 | ujson | 5.4.0 | 5.4.0 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/python3_pip_packages_diff.md b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/python3_pip_packages_diff.md index ba871348..2520297b 100644 --- a/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/python3_pip_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/standard-EXASOL-8.0.0/language_deps/python3_pip_packages_diff.md @@ -2,5 +2,5 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:----------|:-------------------|:-------------------|:---------| -| 0 | numpy | 1.21.3 | 1.21.3 | | -| 1 | pandas | 1.3.4 | 1.3.4 | | \ No newline at end of file +| 0 | numpy | 1.21.3 | 1.22.4 | UPDATED | +| 1 | pandas | 1.3.4 | 2.0.2 | UPDATED | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/build_deps/conda_packages_diff.md b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/build_deps/conda_packages_diff.md index 3b3723c6..09c43314 100644 --- a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/build_deps/conda_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/build_deps/conda_packages_diff.md @@ -2,11 +2,11 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:-------------|:-------------------|:-------------------|:---------| -| 0 | bazel | 5.2.0 | 5.2.0 | | -| 1 | chrpath | 0.16 | 0.16 | | -| 2 | gcc_linux-64 | 11.2.0 | 11.2.0 | | -| 3 | gxx_linux-64 | 11.2.0 | 11.2.0 | | -| 4 | make | 4.3 | 4.3 | | -| 5 | openjdk | 11.0.15 | 11.0.15 | | -| 6 | pcre | 8.45 | 8.45 | | -| 7 | protobuf | 3.20.1 | 3.20.1 | | \ No newline at end of file +| 0 | protobuf | 3.20.1 | 4.21.12 | UPDATED | +| 1 | bazel | 5.2.0 | 5.2.0 | | +| 2 | chrpath | 0.16 | 0.16 | | +| 3 | gcc_linux-64 | 11.2.0 | 11.2.0 | | +| 4 | gxx_linux-64 | 11.2.0 | 11.2.0 | | +| 5 | make | 4.3 | 4.3 | | +| 6 | openjdk | 11.0.15 | 11.0.15 | | +| 7 | pcre | 8.45 | 8.45 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/language_deps/conda_packages_diff.md b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/language_deps/conda_packages_diff.md index d9416c17..29840c5b 100644 --- a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/language_deps/conda_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/language_deps/conda_packages_diff.md @@ -2,12 +2,13 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:-----------------|:---------------------|:---------------------|:---------| -| 0 | cryptography | 39.0.2 | 39.0.2 | | -| 1 | icu | 70.1=h27087fc_0 | 70.1=h27087fc_0 | | -| 2 | ld_impl_linux-64 | 2.36.1 | 2.36.1 | | -| 3 | libblas | 3.9.0=15_linux64_mkl | 3.9.0=15_linux64_mkl | | -| 4 | libxml2 | 2.10.3=hca2bb57_4 | 2.10.3=hca2bb57_4 | | -| 5 | mamba | 1.3.1 | 1.3.1 | | -| 6 | numpy | 1.22.3 | 1.22.3 | | -| 7 | pandas | 1.4.2 | 1.4.2 | | -| 8 | python | 3.8.13 | 3.8.13 | | \ No newline at end of file +| 0 | numpy | 1.22.3 | 1.24.3 | UPDATED | +| 1 | pandas | 1.4.2 | 2.0.2 | UPDATED | +| 2 | pyarrow | | 12.0.0 | NEW | +| 3 | cryptography | 39.0.2 | 39.0.2 | | +| 4 | icu | 70.1=h27087fc_0 | 70.1=h27087fc_0 | | +| 5 | ld_impl_linux-64 | 2.36.1 | 2.36.1 | | +| 6 | libblas | 3.9.0=15_linux64_mkl | 3.9.0=15_linux64_mkl | | +| 7 | libxml2 | 2.10.3=hca2bb57_4 | 2.10.3=hca2bb57_4 | | +| 8 | mamba | 1.3.1 | 1.3.1 | | +| 9 | python | 3.8.13 | 3.8.13 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/udfclient_deps/conda_packages_diff.md b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/udfclient_deps/conda_packages_diff.md index 62263823..0b3a6941 100644 --- a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/udfclient_deps/conda_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-conda/udfclient_deps/conda_packages_diff.md @@ -2,9 +2,9 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:--------------|:-------------------|:-------------------|:---------| -| 0 | _openmp_mutex | 4.5=2_kmp_llvm | 4.5=2_kmp_llvm | | -| 1 | cppzmq | 4.8.1 | 4.8.1 | | -| 2 | libprotobuf | 3.20.1 | 3.20.1 | | -| 3 | nss | 3.77 | 3.77 | | -| 4 | openssl | 3.0.8 | 3.0.8 | | +| 0 | libprotobuf | 3.20.1 | 3.21.12 | UPDATED | +| 1 | openssl | 3.0.8 | 3.1.1 | UPDATED | +| 2 | _openmp_mutex | 4.5=2_kmp_llvm | 4.5=2_kmp_llvm | | +| 3 | cppzmq | 4.8.1 | 4.8.1 | | +| 4 | nss | 3.77 | 3.77 | | | 5 | zeromq | 4.3.4 | 4.3.4 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/build_deps/conda_packages_diff.md b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/build_deps/conda_packages_diff.md index 3b3723c6..09c43314 100644 --- a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/build_deps/conda_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/build_deps/conda_packages_diff.md @@ -2,11 +2,11 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:-------------|:-------------------|:-------------------|:---------| -| 0 | bazel | 5.2.0 | 5.2.0 | | -| 1 | chrpath | 0.16 | 0.16 | | -| 2 | gcc_linux-64 | 11.2.0 | 11.2.0 | | -| 3 | gxx_linux-64 | 11.2.0 | 11.2.0 | | -| 4 | make | 4.3 | 4.3 | | -| 5 | openjdk | 11.0.15 | 11.0.15 | | -| 6 | pcre | 8.45 | 8.45 | | -| 7 | protobuf | 3.20.1 | 3.20.1 | | \ No newline at end of file +| 0 | protobuf | 3.20.1 | 4.21.12 | UPDATED | +| 1 | bazel | 5.2.0 | 5.2.0 | | +| 2 | chrpath | 0.16 | 0.16 | | +| 3 | gcc_linux-64 | 11.2.0 | 11.2.0 | | +| 4 | gxx_linux-64 | 11.2.0 | 11.2.0 | | +| 5 | make | 4.3 | 4.3 | | +| 6 | openjdk | 11.0.15 | 11.0.15 | | +| 7 | pcre | 8.45 | 8.45 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/language_deps/conda_packages_diff.md b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/language_deps/conda_packages_diff.md index d9416c17..630884f2 100644 --- a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/language_deps/conda_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/language_deps/conda_packages_diff.md @@ -1,13 +1,14 @@ -| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | -|---:|:-----------------|:---------------------|:---------------------|:---------| -| 0 | cryptography | 39.0.2 | 39.0.2 | | -| 1 | icu | 70.1=h27087fc_0 | 70.1=h27087fc_0 | | -| 2 | ld_impl_linux-64 | 2.36.1 | 2.36.1 | | -| 3 | libblas | 3.9.0=15_linux64_mkl | 3.9.0=15_linux64_mkl | | -| 4 | libxml2 | 2.10.3=hca2bb57_4 | 2.10.3=hca2bb57_4 | | -| 5 | mamba | 1.3.1 | 1.3.1 | | -| 6 | numpy | 1.22.3 | 1.22.3 | | -| 7 | pandas | 1.4.2 | 1.4.2 | | -| 8 | python | 3.8.13 | 3.8.13 | | \ No newline at end of file +| | Package | Version in 6.0.0 | Version in 6.1.0 | Status | +|---:|:-----------------|:---------------------|:---------------------------|:---------| +| 0 | numpy | 1.22.3 | 1.24.3 | UPDATED | +| 1 | pandas | 1.4.2 | 2.0.2 | UPDATED | +| 2 | pyarrow | | 12.0.0=py38h4559c88_4_cuda | NEW | +| 3 | cryptography | 39.0.2 | 39.0.2 | | +| 4 | icu | 70.1=h27087fc_0 | 70.1=h27087fc_0 | | +| 5 | ld_impl_linux-64 | 2.36.1 | 2.36.1 | | +| 6 | libblas | 3.9.0=15_linux64_mkl | 3.9.0=15_linux64_mkl | | +| 7 | libxml2 | 2.10.3=hca2bb57_4 | 2.10.3=hca2bb57_4 | | +| 8 | mamba | 1.3.1 | 1.3.1 | | +| 9 | python | 3.8.13 | 3.8.13 | | \ No newline at end of file diff --git a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/udfclient_deps/conda_packages_diff.md b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/udfclient_deps/conda_packages_diff.md index 62263823..0b3a6941 100644 --- a/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/udfclient_deps/conda_packages_diff.md +++ b/doc/changes/package_diffs/6.1.0/template-Exasol-all-python-3.8-cuda-conda/udfclient_deps/conda_packages_diff.md @@ -2,9 +2,9 @@ | | Package | Version in 6.0.0 | Version in 6.1.0 | Status | |---:|:--------------|:-------------------|:-------------------|:---------| -| 0 | _openmp_mutex | 4.5=2_kmp_llvm | 4.5=2_kmp_llvm | | -| 1 | cppzmq | 4.8.1 | 4.8.1 | | -| 2 | libprotobuf | 3.20.1 | 3.20.1 | | -| 3 | nss | 3.77 | 3.77 | | -| 4 | openssl | 3.0.8 | 3.0.8 | | +| 0 | libprotobuf | 3.20.1 | 3.21.12 | UPDATED | +| 1 | openssl | 3.0.8 | 3.1.1 | UPDATED | +| 2 | _openmp_mutex | 4.5=2_kmp_llvm | 4.5=2_kmp_llvm | | +| 3 | cppzmq | 4.8.1 | 4.8.1 | | +| 4 | nss | 3.77 | 3.77 | | | 5 | zeromq | 4.3.4 | 4.3.4 | | \ No newline at end of file diff --git a/doc/user_guide/py_dataframe.md b/doc/user_guide/py_dataframe.md index 17444181..ae2c7343 100644 --- a/doc/user_guide/py_dataframe.md +++ b/doc/user_guide/py_dataframe.md @@ -14,7 +14,47 @@ The parameters of `get_dataframe` are the following. `get_dataframe` will return a DataFrame containing `num_rows` rows or a lesser number if `num_rows` are not available. If there are zero rows available, `get_dataframe` will return `None`. The DataFrame column labels will be set to the corresponding UDF parameter names for the columns, except in case of a dynamic parameter list, then the column labels will be '0','1',.. . After calling `get_dataframe`, the UDF data iterator will point to the next row (i.e. following the last row in the DataFrame) just as with `next()`. ## Emitting data -An entire DataFrame can be emitted by passing it to `emit()` just as with single values. Each column of the DataFrame will be automatically converted to a column in the result set. The columns will be matched by their position to the columns in the emit-clause. The column label in the DataFrame will be ignored. +An entire DataFrame can be emitted by passing it to `emit()` just as with single values. Each column of the DataFrame will be automatically converted to a column in the result set. The columns will be matched by their position to the columns in the emit-clause. The column label in the DataFrame will be ignored. + +The following table describes which conversions between DType/Python-Type and Database-Type are possible: + +| Pandas-DType | Python-Type | Database-Type | Flavors | SLC Version | NULL handling | +|--------------------------------|------------------|---------------|--------------------------------|-------------|-----------------------------------| +| (u)int* | - | DECIMAL | all standard and python3 | all | (u)int* does not support NULL | +| (u)int* | - | DOUBLE | all standard and python3 | all | (u)int* does not support NULL | +| float* | - | DECIMAL | all standard and python3 | all | Uses numpy.nan for NULL | +| float* | - | DOUBLE | all standard and python3 | all | Uses numpy.nan for NULL | +| string | - | (VAR)CHAR | all standard and python3 | >=6.1.0 | Uses pandas.NaN for NULL | +| bool_ | - | BOOLEAN | all standard and python3 | all | Pandas will convert None to False | +| boolean | - | BOOLEAN | all standard and python3 | >=6.1.0 | Uses pandas.NaN for NULL | +| datetime64[ns] | - | TIMESTAMP | all standard and python3 | all | Uses pandas.NaT for NULL | +| object | int | DECIMAL | all standard and python3 | all | Uses None for NULL | +| object | int | DOUBLE | all standard and python3 | all | Uses None for NULL | +| object | float | DECIMAL | all standard and python3 | all | Uses None or numpy.NaN for NULL | +| object | float | DOUBLE | all standard and python3 | all | Uses None or numpy.NaN for NULL | +| object | decimal.Decimal | DECIMAL | all standard and python3 | all | Uses None for NULL | +| object | decimal.Decimal | DOUBLE | all standard and python3 | all | Uses None for NULL | +| object | bool | BOOLEAN | all standard and python3 | all | Uses None for NULL | +| object | str | (VAR)CHAR | all standard and python3 | all | Uses None for NULL | +| object | pandas.Timestamp | TIMESTAMP | all standard and python3 | >=6.1.0 | Uses None or pandas.NaN for NULL | +| object | datetime.date | DATE | all standard and python3 | all | Uses None for NULL | +| (u)int*[pyarrow] | - | DECIMAL | standard-8.0.0 and all python3 | >=6.1.0 | Native NULL support | +| (u)int*[pyarrow] | - | DOUBLE | standard-8.0.0 and all python3 | >=6.1.0 | Native NULL support | +| float*[pyarrow] | - | DECIMAL | standard-8.0.0 and all python3 | >=6.1.0 | Native NULL support | +| float*[pyarrow] | - | DOUBLE | standard-8.0.0 and all python3 | >=6.1.0 | Native NULL support | +| string[pyarrow] | - | (VAR)CHAR | standard-8.0.0 and all python3 | >=6.1.0 | Native NULL support | +| bool[pyarrow] | - | BOOLEAN | standard-8.0.0 and all python3 | >=6.1.0 | Native NULL support | +| decimal128(*)[pyarrow] | - | DECIMAL | standard-8.0.0 and all python3 | >=6.1.0 | Native NULL support | +| decimal128(*)[pyarrow] | - | DOUBLE | standard-8.0.0 and all python3 | >=6.1.0 | Native NULL support | +| timestamp[ns, tz=UTC][pyarrow] | - | TIMESTAMP | standard-8.0.0 and all python3 | >=6.1.0 | Native NULL support. | + +**Note**: + +- Before SLC version 6.1.0, emitting float16 lead to a silent data corruption of the emitted values. +- Since SLC version 6.1.0 DateFrame Columns with DType object also support pandas.NaN for NULL. +- We only support DType timestamp[ns, tz=UTC][pyarrow] and datetime64[ns], because Exasol doesn't support timezones. We also drop the timezone before using the timestamp in Exasol. Furthermore, Exasol 7.* only supports miliseconds precision timestamps, the nanoseconds will be truncated. +- Conversions from float* to DECIMAL can include rounding down to the precision and scale of the DECIMAL. +- Conversions from (u)int*,decimal128,decimal.Decimal to DOUBLE can be also imprecise, in case DOUBLE can't represent the number precisily. ## Example diff --git a/flavors/standard-EXASOL-7.0.0/flavor_base/testconfig b/flavors/standard-EXASOL-7.0.0/flavor_base/testconfig index 2a8bb6ce..2d763228 100644 --- a/flavors/standard-EXASOL-7.0.0/flavor_base/testconfig +++ b/flavors/standard-EXASOL-7.0.0/flavor_base/testconfig @@ -1,2 +1,2 @@ generic_language_tests=python3 java r -test_folders=python3/all python3/external_modules java r standard-flavor/all standard-flavor/7.0 python3-no-python2 +test_folders=python3/all python3/external_modules java r standard-flavor/all standard-flavor/7.0 python3-no-python2 pandas/all diff --git a/flavors/standard-EXASOL-7.1.0/flavor_base/testconfig b/flavors/standard-EXASOL-7.1.0/flavor_base/testconfig index a1c40a41..bccd8993 100644 --- a/flavors/standard-EXASOL-7.1.0/flavor_base/testconfig +++ b/flavors/standard-EXASOL-7.1.0/flavor_base/testconfig @@ -1,2 +1,2 @@ generic_language_tests=python3 java r -test_folders=python3/all python3/external_modules python3-no-python2 java r standard-flavor/all standard-flavor/7.1 +test_folders=python3/all python3/external_modules python3-no-python2 java r standard-flavor/all standard-flavor/7.1 pandas/all diff --git a/flavors/standard-EXASOL-8.0.0/flavor_base/flavor_base_deps_python/packages/python3_pip_packages b/flavors/standard-EXASOL-8.0.0/flavor_base/flavor_base_deps_python/packages/python3_pip_packages index 589b792c..76a7d100 100644 --- a/flavors/standard-EXASOL-8.0.0/flavor_base/flavor_base_deps_python/packages/python3_pip_packages +++ b/flavors/standard-EXASOL-8.0.0/flavor_base/flavor_base_deps_python/packages/python3_pip_packages @@ -16,7 +16,7 @@ azure-storage-blob|12.9.0 azure-storage-file-datalake|12.5.0 azure-storage-file-share|12.6.0 azure-storage-queue|12.1.6 -boto3|1.20.37 +boto3|1.26.125 google-cloud-asset|3.7.1 google-cloud-bigquery|2.32.0 google-cloud-bigquery-storage|2.11.0 @@ -34,41 +34,41 @@ google-cloud-spanner|3.12.1 google-cloud-storage|2.0.0 google-cloud-trace|1.5.1 martian|1.4 -protobuf|3.19.5 -pyexasol|0.23.3 +protobuf|3.20.3 +pyexasol|0.25.2 pysftp|0.2.9 -pytz|2021.3 -sagemaker|2.72.3 +pytz|2023.3 +sagemaker|2.151.0 setuptools|65.5.1 pycurl|7.44.1 redis|4.5.4 roman|3.3 pyodbc|4.0.32 lxml|4.9.1 -scipy|1.6.2 +scipy|1.7.3 pyftpdlib|1.5.6 jinja2|3.0.3 cffi|1.15.0 docutils|0.18.1 requests|2.27.1 ujson|5.4.0 -paramiko|2.9.2 +paramiko|3.1.0 simplejson|3.17.6 -scikit-learn|1.0.2 -plyvel|1.4.0 -python-ldap|3.4.0 -pyOpenSSL|23.0.0 +scikit-learn|1.2.2 +plyvel|1.5.0 +python-ldap|3.4.3 +pyOpenSSL|23.1.1 git+http://github.com/EXASOL/websocket-api.git@5150f964388412788bf5e47752a7916a5a8624c5#egg=exasol-db-api&subdirectory=python| -debugpy|1.5.1 +debugpy|1.6.7 pybase64|1.2.1 -pysimdjson|4.0.3 -numba|0.55.0 -pyarrow|6.0.1 +pysimdjson|5.0.2 +numba|0.57.0 +pyarrow|12.0.0 bitarray|2.3.5 pybloomfiltermmap3|0.5.5 bitsets|0.8.3 -numba-scipy|0.3.0 -pyyaml|6.0 -https://github.com/exasol/bucketfs-utils-python/releases/download/0.1.0/exasol_bucketfs_utils_python-0.1.0-py3-none-any.whl| +numba-scipy|0.3.1 +pyyaml|5.4.1 +exasol-bucketfs|0.8.0 pysmbc|1.0.23 -cryptography|39.0.1 +cryptography|40.0.2 diff --git a/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/python3_pip_packages b/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/python3_pip_packages index f0269d53..c3367328 100644 --- a/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/python3_pip_packages +++ b/flavors/standard-EXASOL-8.0.0/flavor_base/language_deps/packages/python3_pip_packages @@ -1,2 +1,2 @@ -pandas|1.3.4 -numpy|1.21.3 +pandas|2.0.2 +numpy|1.22.4 diff --git a/flavors/standard-EXASOL-8.0.0/flavor_base/testconfig b/flavors/standard-EXASOL-8.0.0/flavor_base/testconfig index e9c2fa86..b58bafa3 100644 --- a/flavors/standard-EXASOL-8.0.0/flavor_base/testconfig +++ b/flavors/standard-EXASOL-8.0.0/flavor_base/testconfig @@ -1,2 +1,2 @@ generic_language_tests=python3 java r -test_folders=python3/all python3/external_modules python3-no-python2 java r standard-flavor/all standard-flavor/7.1 standard-flavor/8.0 +test_folders=python3/all python3/external_modules python3-no-python2 java r standard-flavor/all standard-flavor/7.1 standard-flavor/8.0 pandas/all pandas/pandas2 diff --git a/script-languages b/script-languages index 9e31ee46..ba46d9dd 160000 --- a/script-languages +++ b/script-languages @@ -1 +1 @@ -Subproject commit 9e31ee46b46ff681418ab10f7c922d759431b6d9 +Subproject commit ba46d9dd0c29838c1c3848655fd25d5963ae65cd