diff --git a/.circleci/config.templ.yml b/.circleci/config.templ.yml index 16843421077..85f7bf74d16 100644 --- a/.circleci/config.templ.yml +++ b/.circleci/config.templ.yml @@ -1,17 +1,18 @@ version: 2.1 default_resource_class: &default_resource_class medium -cimg_base_image: &cimg_base_image cimg/base:stable -python310_image: &python310_image cimg/python:3.10 -ddtrace_dev_image: &ddtrace_dev_image ghcr.io/datadog/dd-trace-py/testrunner:latest -redis_image: &redis_image redis:4.0-alpine -memcached_image: &memcached_image memcached:1.5-alpine -cassandra_image: &cassandra_image cassandra:3.11.7 -consul_image: &consul_image consul:1.6.0 -moto_image: &moto_image palazzem/moto:1.0.1 -mysql_image: &mysql_image mysql:5.7 -postgres_image: &postgres_image postgres:12-alpine -mongo_image: &mongo_image mongo:3.6 +ubuntu_base_image: &ubuntu_base_img ubuntu-2004:2023.04.2 +cimg_base_image: &cimg_base_image cimg/base:2022.08 +python310_image: &python310_image cimg/python:3.10.12 +ddtrace_dev_image: &ddtrace_dev_image ghcr.io/datadog/dd-trace-py/testrunner@sha256:0ab20ba6e382770f520c4d5956cef5d4aa20623b8d43e58f77c100ee8ad903a0 +redis_image: &redis_image redis:4.0-alpine@sha256:3e99741f293147ff406657dda7644c2b88564b80a498cd00da8f905743449c9f +memcached_image: &memcached_image memcached:1.5-alpine@sha256:48cb7207e3d34871893fa1628f3a4984375153e9942facf82e25935b0a633c8a +cassandra_image: &cassandra_image cassandra:3.11.7@sha256:495e5752526f7e75d3ad85b6a6bbf3b79714321b17a44255a216c341e3baae11 +consul_image: &consul_image consul:1.6.0@sha256:daa6203532fc30d81bf6c5593f79a2c7c23f08e8fde82f1e4bd8069b48b57596 +moto_image: &moto_image datadog/docker-library:moto_1_0_1@sha256:58c15f03141073629f4ff2a78910b812205324579c76f8bcac87e8e89af2e673 +mysql_image: &mysql_image mysql:5.7@sha256:03b6dcedf5a2754da00e119e2cc6094ed3c884ad36b67bb25fe67be4b4f9bdb1 +postgres_image: &postgres_image postgres:12-alpine@sha256:c6704f41eb84be53d5977cb821bf0e5e876064b55eafef1e260c2574de40ad9a +mongo_image: &mongo_image mongo:3.6@sha256:19c11a8f1064fd2bb713ef1270f79a742a184cd57d9bb922efdd2a8eca514af8 httpbin_image: &httpbin_image kennethreitz/httpbin@sha256:2c7abc4803080c22928265744410173b6fea3b898872c01c5fd0f0f9df4a59fb vertica_image: &vertica_image sumitchawla/vertica:latest rabbitmq_image: &rabbitmq_image rabbitmq:3.7-alpine @@ -30,7 +31,7 @@ orbs: machine_executor: &machine_executor machine: - image: ubuntu-2004:current + image: *ubuntu_base_img environment: - BOTO_CONFIG: /dev/null # https://support.circleci.com/hc/en-us/articles/360045268074-Build-Fails-with-Too-long-with-no-output-exceeded-10m0s-context-deadline-exceeded- @@ -263,7 +264,7 @@ jobs: - checkout - attach_workspace: at: . - - run: pip install coverage codecov diff_cover + - run: pip install -r ci/coverage/requirements.txt - run: ls -hal *.coverage # Combine all job coverage reports into one - run: coverage combine *.coverage @@ -441,12 +442,12 @@ jobs: - run_test: pattern: 'vendor' - boto: + botocore: <<: *machine_executor parallelism: 6 steps: - run_test: - pattern: '^boto' # run boto and botocore + pattern: 'botocore' snapshot: true docker_services: "localstack" @@ -485,16 +486,6 @@ jobs: snapshot: true docker_services: 'postgres' - pylons: - <<: *contrib_job_small - docker: - - image: *ddtrace_dev_image - - *testagent - steps: - - run_test: - pattern: 'pylons' - trace_agent_url: "http://localhost:8126" - aiohttp: <<: *machine_executor parallelism: 3 @@ -551,7 +542,7 @@ jobs: <<: *contrib_job_large docker: - image: *ddtrace_dev_image - - image: redis:4.0-alpine + - image: *redis_image - image: *rabbitmq_image - image: *testagent_image environment: diff --git a/.circleci/config.yml b/.circleci/config.yml index 622afa40da0..260901772ef 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: 2.1 -python310_image: &python310_image cimg/python:3.10 +python310_image: &python310_image cimg/python:3.10.12 setup: true @@ -38,4 +38,4 @@ jobs: workflows: setup: jobs: - - setup + - setup \ No newline at end of file diff --git a/.github/workflows/build_deploy.yml b/.github/workflows/build_deploy.yml index 504e209291a..883d266be1c 100644 --- a/.github/workflows/build_deploy.yml +++ b/.github/workflows/build_deploy.yml @@ -24,67 +24,6 @@ on: - cron: 0 2 * * 2-6 jobs: - build_wheels_py27_35: - name: Build and test wheels on ${{ matrix.os }} (${{ matrix.archs }}) - runs-on: ${{ matrix.os }} - strategy: - matrix: - include: - - os: ubuntu-latest - archs: x86_64 i686 - - os: ubuntu-latest - archs: aarch64 - - os: windows-latest - archs: AMD64 x86 - - os: macos-latest - # universal2 and arm64 builds require CPython 3.8 or newer: - # https://cibuildwheel.readthedocs.io/en/stable/faq/#universal2 - archs: x86_64 universal2 - steps: - - uses: actions/checkout@v3 - # Include all history and tags - with: - fetch-depth: 0 - - - uses: actions/setup-python@v4 - name: Install Python - with: - python-version: '3.8' - - - name: Set up QEMU - if: runner.os == 'Linux' - uses: docker/setup-qemu-action@v2 - with: - platforms: all - - - name: Build wheels python 2.7 and 3.5 - uses: joerick/cibuildwheel@v1.12.0 - env: - # configure cibuildwheel to build native archs ('auto'), and some - # emulated ones - CIBW_ARCHS: ${{ matrix.archs }} - # PyPY is not supported - # Windows 2.7 wheels no longer can be built https://github.com/DataDog/dd-trace-py/pull/2344 - CIBW_SKIP: cp27-win* - CIBW_BUILD: cp27* cp35* - # Run a smoke test on every supported platform - CIBW_TEST_COMMAND: python {project}/tests/smoke_test.py - # Testing arm on MacOS is currently not supported by Github - CIBW_TEST_SKIP: "*-macosx_universal2:arm64" - # Workaround for Macos 11.0 versioning issue, a.k.a. - # `platform.mac_ver()` reports incorrect MacOS version at 11.0 - # See: https://stackoverflow.com/a/65402241 - CIBW_ENVIRONMENT_MACOS: SYSTEM_VERSION_COMPAT=0 - - - uses: actions/upload-artifact@v3 - with: - path: ./wheelhouse/*.whl - - build_wheels_py36: - uses: ./.github/workflows/build_python_3.yml - with: - cibw_build: 'cp36*' - build_wheels_py37: uses: ./.github/workflows/build_python_3.yml with: @@ -169,7 +108,6 @@ jobs: upload_pypi: needs: - - build_wheels_py27_35 - build_wheels_py36 - build_wheels_py37 - build_wheels_py38 diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index d196f613c00..7a66e977e6c 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -2,7 +2,6 @@ name: Changelog on: push: branches: - - master - 0.x - 1.x pull_request: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 665ddd4e04c..892b3a039d8 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -3,13 +3,11 @@ name: "CodeQL" on: push: branches: - - master - 0.x - 1.x pull_request: # The branches below must be a subset of the branches above branches: - - master - 0.x - 1.x diff --git a/.github/workflows/django-overhead-profile.yml b/.github/workflows/django-overhead-profile.yml index 3a9f6efff51..9768f8bf715 100644 --- a/.github/workflows/django-overhead-profile.yml +++ b/.github/workflows/django-overhead-profile.yml @@ -2,7 +2,6 @@ name: django-overhead-profile on: push: branches: - - master - 0.x - 1.x pull_request: diff --git a/.github/workflows/encoders-profile.yml b/.github/workflows/encoders-profile.yml index 0835e621949..91443d01350 100644 --- a/.github/workflows/encoders-profile.yml +++ b/.github/workflows/encoders-profile.yml @@ -2,7 +2,6 @@ name: encoders-profile on: push: branches: - - master - 0.x - 1.x pull_request: diff --git a/.github/workflows/requirements-locks.yml b/.github/workflows/requirements-locks.yml index fedda77a6ff..2a9c17661d8 100644 --- a/.github/workflows/requirements-locks.yml +++ b/.github/workflows/requirements-locks.yml @@ -20,7 +20,7 @@ jobs: run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Set python interpreters - run: pyenv global 3.10 2.7 3.5 3.6 3.7 3.8 3.9 3.11 + run: pyenv global 3.10 3.7 3.8 3.9 3.11 - name: Install Dependencies run: pip install --upgrade pip && pip install riot diff --git a/.github/workflows/test_frameworks.yml b/.github/workflows/test_frameworks.yml index 08236387933..874e64ca3e8 100644 --- a/.github/workflows/test_frameworks.yml +++ b/.github/workflows/test_frameworks.yml @@ -3,7 +3,6 @@ name: Framework tests on: push: branches: - - master - 0.x - 1.x pull_request: @@ -416,42 +415,6 @@ jobs: # Disable tests checking GC references since profiling can interfere run: ddtrace-run python -m pytest -k 'not test_record_gc and not test_record_get and not test_record_items and not test_record_iter' tests - pylons-testsuite-1_0_3: - name: Pylons 1.0.3 - runs-on: "ubuntu-20.04" - # Ubuntu 20.04 is the last version of ubuntu on github setup actions to provide Python 2.7. - container: - image: python:2.7.18-buster - env: - DD_TESTING_RAISE: true - PYTHONPATH: ../ddtrace/tests/debugging/exploration/ - defaults: - run: - working-directory: pylons - steps: - - uses: actions/checkout@v3 - with: - path: ddtrace - - uses: actions/checkout@v3 - with: - repository: pylons/pylons - ref: master - path: pylons - - name: Install ddtrace - run: pip install ../ddtrace - - name: Install test dependencies - run: pip install -e .[test] - - name: Pin PasteDeploy to Python 2.7 compatible version - run: pip install pastedeploy==2.1.1 - - name: MarkupSafe fix - run: pip install --upgrade MarkupSafe==0.18 pip setuptools --force - - name: Disable failing tests - run: | - sed -i'' "s/test_detect_lang/detect_lang/g" tests/test_units/test_basic_app.py - sed -i'' "s/test_langs/langs/g" tests/test_units/test_basic_app.py - - name: Run tests - run: nosetests - gunicorn-testsuite-20_1_0: name: gunicorn 20.1.0 runs-on: "ubuntu-latest" diff --git a/.riot/requirements/1017b7b.txt b/.riot/requirements/1017b7b.txt deleted file mode 100644 index 7d008d2ce39..00000000000 --- a/.riot/requirements/1017b7b.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1017b7b.in -# -amqp==2.6.1 -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -kombu==4.0.2 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -vine==1.3.0 -zipp==3.6.0 diff --git a/.riot/requirements/10192c8.txt b/.riot/requirements/10192c8.txt deleted file mode 100644 index e40f836b88b..00000000000 --- a/.riot/requirements/10192c8.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/10192c8.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mako==1.1.6 -markupsafe==2.0.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/102cf0a.txt b/.riot/requirements/102cf0a.txt index 7636878f6c7..fd309f83e41 100644 --- a/.riot/requirements/102cf0a.txt +++ b/.riot/requirements/102cf0a.txt @@ -2,32 +2,29 @@ # This file is autogenerated by pip-compile with Python 3.7 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/102cf0a.in +# pip-compile --config=pyproject.toml --no-annotate --resolver=backtracking .riot/requirements/102cf0a.in # attrs==23.1.0 -coverage[toml]==7.2.3 -exceptiongroup==1.1.1 +coverage[toml]==7.2.7 +exceptiongroup==1.1.2 gevent==1.4.0 greenlet==0.4.14 -gunicorn[gevent]==20.1.0 +gunicorn[gevent]==21.2.0 hypothesis==6.45.0 -importlib-metadata==6.6.0 +importlib-metadata==6.7.0 iniconfig==2.0.0 -mock==5.0.2 +mock==5.1.0 opentracing==2.4.0 packaging==23.1 -pluggy==1.0.0 +pluggy==1.2.0 py-cpuinfo==8.0.0 -pytest==7.3.1 -pytest-asyncio==0.21.0 +pytest==7.4.0 +pytest-asyncio==0.21.1 pytest-benchmark==4.0.0 -pytest-cov==4.0.0 -pytest-mock==3.10.0 +pytest-cov==4.1.0 +pytest-mock==3.11.1 sortedcontainers==2.4.0 tomli==2.0.1 -typing-extensions==4.7.0 +typing-extensions==4.7.1 uwsgi==2.0.21 zipp==3.15.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/10516d1.txt b/.riot/requirements/10516d1.txt deleted file mode 100644 index 83b0f953448..00000000000 --- a/.riot/requirements/10516d1.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/10516d1.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mongoengine==0.24.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymongo==4.1.1 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1064743.txt b/.riot/requirements/1064743.txt deleted file mode 100644 index 7317a866d1d..00000000000 --- a/.riot/requirements/1064743.txt +++ /dev/null @@ -1,40 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1064743.in -# -amqp==5.1.1 -attrs==22.2.0 -billiard==3.6.4.0 -cached-property==1.5.2 -celery==5.0.5 -click==7.1.2 -click-didyoumean==0.3.0 -click-plugins==1.1.1 -click-repl==0.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -kombu==5.1.0 -mock==5.0.1 -more-itertools==8.10.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -prompt-toolkit==3.0.36 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -pytz==2022.7.1 -redis==3.5.3 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -vine==5.0.0 -wcwidth==0.2.6 -zipp==3.6.0 diff --git a/.riot/requirements/1067c30.txt b/.riot/requirements/1067c30.txt deleted file mode 100644 index 5b994601b89..00000000000 --- a/.riot/requirements/1067c30.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1067c30.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -tornado==5.1.1 -zipp==1.2.0 diff --git a/.riot/requirements/107589e.txt b/.riot/requirements/107589e.txt deleted file mode 100644 index 518813ad605..00000000000 --- a/.riot/requirements/107589e.txt +++ /dev/null @@ -1,33 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/107589e.in -# -attrs==22.2.0 -coverage[toml]==6.2 -gunicorn==20.1.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -protobuf==3.19.6 -py==1.11.0 -py-cpuinfo==8.0.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-benchmark==3.4.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -uwsgi==2.0.21 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/109ca07.txt b/.riot/requirements/109ca07.txt deleted file mode 100644 index 059cfec674c..00000000000 --- a/.riot/requirements/109ca07.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/109ca07.in -# -async-timeout==4.0.2 -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -redis==4.3.5 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/10a5fdc.txt b/.riot/requirements/10a5fdc.txt deleted file mode 100644 index 642647277b5..00000000000 --- a/.riot/requirements/10a5fdc.txt +++ /dev/null @@ -1,43 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/10a5fdc.in -# -amqp==5.1.1 -attrs==22.2.0 -billiard==3.6.4.0 -cached-property==1.5.2 -celery==5.1.2 -click==7.1.2 -click-didyoumean==0.3.0 -click-plugins==1.1.1 -click-repl==0.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -kombu==5.1.0 -mock==5.0.1 -more-itertools==8.10.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -prompt-toolkit==3.0.36 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -pytz==2022.7.1 -redis==3.5.3 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -vine==5.0.0 -wcwidth==0.2.6 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/10bb56b.txt b/.riot/requirements/10bb56b.txt deleted file mode 100644 index ac9387830ec..00000000000 --- a/.riot/requirements/10bb56b.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/10bb56b.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/10e156f.txt b/.riot/requirements/10e156f.txt deleted file mode 100644 index fd54f96a517..00000000000 --- a/.riot/requirements/10e156f.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/10e156f.in -# -attrs==22.2.0 -coverage[toml]==6.2 -decorator==5.1.1 -dogpile.cache==1.1.8 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pbr==5.11.1 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -stevedore==3.5.2 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1103a62.txt b/.riot/requirements/1103a62.txt deleted file mode 100644 index d8e1fd13186..00000000000 --- a/.riot/requirements/1103a62.txt +++ /dev/null @@ -1,48 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1103a62.in -# -aiocontextvars==0.2.2 -aiofiles==0.8.0 -aiosqlite==0.17.0 -anyio==3.6.2 -async-generator==1.10 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -contextlib2==21.6.0 -contextvars==2.4 -coverage[toml]==6.2 -databases==0.5.5 -dataclasses==0.8 -greenlet==2.0.2 -h11==0.12.0 -httpcore==0.14.7 -httpx==0.22.0 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -sqlalchemy==1.4.46 -starlette==0.19.1 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/11485f2.txt b/.riot/requirements/11485f2.txt deleted file mode 100644 index 65be67cd8f1..00000000000 --- a/.riot/requirements/11485f2.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/11485f2.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opensearch-py[requests]==1.1.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/114e97a.txt b/.riot/requirements/114e97a.txt deleted file mode 100644 index cbdead9cb9d..00000000000 --- a/.riot/requirements/114e97a.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/114e97a.in -# -async-generator==1.10 -attrs==22.1.0 -coverage==5.5 -gevent==22.10.2 -greenlet==2.0.2 -httpretty==0.9.7 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-asyncio==0.14.0 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/115cc02.txt b/.riot/requirements/115cc02.txt deleted file mode 100644 index e06f0d5917f..00000000000 --- a/.riot/requirements/115cc02.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/115cc02.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -decorator==4.4.2 -dogpile.cache==0.9.2 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/116aa2f.txt b/.riot/requirements/116aa2f.txt deleted file mode 100644 index b9df095bd7f..00000000000 --- a/.riot/requirements/116aa2f.txt +++ /dev/null @@ -1,61 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/116aa2f.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -beaker==1.12.1 -beautifulsoup4==4.9.3 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -decorator==4.4.2 -enum34==1.1.10 -formencode==2.0.1 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mako==1.1.6 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -nose==1.3.7 -opentracing==2.4.0 -packaging==20.9 -paste==3.5.2 -pastedeploy==2.1.1 -pastescript==3.3.0 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pygments==2.5.2 -pylons==1.0.3 -pyparsing==2.4.7 -pyrsistent==0.16.1 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -repoze.lru==0.7 -routes==2.5.1 -scandir==1.10.0 -simplejson==3.18.4 -six==1.16.0 -sortedcontainers==2.4.0 -soupsieve==1.9.6 -tempita==0.5.2 -toml==0.10.2 -typing==3.10.0.0 -waitress==1.4.4 -wcwidth==0.2.6 -weberror==0.13.1 -webhelpers==1.3 -webob==1.8.7 -webtest==2.0.35 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/116acca.txt b/.riot/requirements/116acca.txt deleted file mode 100644 index 469c9f35e48..00000000000 --- a/.riot/requirements/116acca.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/116acca.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymemcache==3.5.2 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/117d89f.txt b/.riot/requirements/117d89f.txt deleted file mode 100644 index 95896d7486d..00000000000 --- a/.riot/requirements/117d89f.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/117d89f.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -mongoengine==0.22.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymongo==3.13.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/119ba46.txt b/.riot/requirements/119ba46.txt deleted file mode 100644 index 67b858a4aec..00000000000 --- a/.riot/requirements/119ba46.txt +++ /dev/null @@ -1,48 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/119ba46.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==22.10.2 -greenlet==2.0.2 -gunicorn==19.10.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/11b5553.txt b/.riot/requirements/11b5553.txt deleted file mode 100644 index 0c6dce21521..00000000000 --- a/.riot/requirements/11b5553.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/11b5553.in -# -attrs==22.2.0 -coverage[toml]==6.2 -elasticsearch5==5.5.6 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/11b6d79.txt b/.riot/requirements/11b6d79.txt deleted file mode 100644 index 85aee69327c..00000000000 --- a/.riot/requirements/11b6d79.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/11b6d79.in -# -async-generator==1.10 -attrs==22.1.0 -coverage==5.5 -httpretty==0.9.7 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-asyncio==0.14.0 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing-extensions==3.10.0.2 -zipp==1.2.0 diff --git a/.riot/requirements/11ca4d2.txt b/.riot/requirements/11ca4d2.txt deleted file mode 100644 index b43a7f45c66..00000000000 --- a/.riot/requirements/11ca4d2.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with Python 3.11 -# by the following command: -# -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/11ca4d2.in -# -attrs==23.1.0 -coverage[toml]==7.2.7 -hypothesis==6.45.0 -iniconfig==2.0.0 -mako==1.2.4 -markupsafe==2.1.3 -mock==5.0.2 -more-itertools==8.10.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==23.1 -parse==1.19.1 -parse-type==0.6.2 -pluggy==1.2.0 -pytest==7.4.0 -pytest-bdd==6.1.1 -pytest-cov==4.1.0 -pytest-mock==3.11.1 -six==1.16.0 -sortedcontainers==2.4.0 -typing-extensions==4.7.1 diff --git a/.riot/requirements/11cbb59.txt b/.riot/requirements/11cbb59.txt deleted file mode 100644 index 3743758bc27..00000000000 --- a/.riot/requirements/11cbb59.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/11cbb59.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymemcache==3.5.2 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/11ecfc2.txt b/.riot/requirements/11ecfc2.txt deleted file mode 100644 index e95bab2e3ac..00000000000 --- a/.riot/requirements/11ecfc2.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/11ecfc2.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymemcache==3.4.4 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/11fd893.txt b/.riot/requirements/11fd893.txt deleted file mode 100644 index 92a10abf975..00000000000 --- a/.riot/requirements/11fd893.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/11fd893.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -docutils==0.18.1 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gunicorn==19.10.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.17.3 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -statistics==1.0.3.5 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/121c58f.txt b/.riot/requirements/121c58f.txt deleted file mode 100644 index 96001fc32d3..00000000000 --- a/.riot/requirements/121c58f.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/121c58f.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -more-itertools==8.10.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==2.12.0 -pytest-mock==2.0.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1223cfc.txt b/.riot/requirements/1223cfc.txt deleted file mode 100644 index cf24c4ceab6..00000000000 --- a/.riot/requirements/1223cfc.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1223cfc.in -# -attrs==22.1.0 -beautifulsoup4==4.10.0 -bottle==0.12.25 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -soupsieve==2.1 -toml==0.10.2 -waitress==1.4.4 -webob==1.8.7 -webtest==2.0.35 -zipp==1.2.0 diff --git a/.riot/requirements/1230ff8.txt b/.riot/requirements/1230ff8.txt deleted file mode 100644 index 89ea6a8282e..00000000000 --- a/.riot/requirements/1230ff8.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1230ff8.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mysql-connector-python==8.0.29 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -protobuf==3.19.6 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1239bf4.txt b/.riot/requirements/1239bf4.txt deleted file mode 100644 index d130bc19abc..00000000000 --- a/.riot/requirements/1239bf4.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1239bf4.in -# -attrs==22.2.0 -coverage[toml]==6.2 -falcon==3.1.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1263bcd.txt b/.riot/requirements/1263bcd.txt deleted file mode 100644 index a4e2fa61abc..00000000000 --- a/.riot/requirements/1263bcd.txt +++ /dev/null @@ -1,73 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1263bcd.in -# -attrs==22.2.0 -aws-sam-translator==1.42.0 -aws-xray-sdk==2.11.0 -boto==2.49.0 -boto3==1.23.10 -botocore==1.26.10 -certifi==2022.12.7 -cffi==1.15.1 -cfn-lint==0.53.1 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -cryptography==39.0.2 -dataclasses==0.8 -decorator==4.4.2 -docker==5.0.3 -ecdsa==0.14.1 -hypothesis==6.31.6 -idna==2.10 -importlib-metadata==4.8.3 -importlib-resources==3.3.1 -iniconfig==1.1.1 -jinja2==2.11.3 -jmespath==0.10.0 -jsondiff==2.0.0 -jsonpatch==1.32 -jsonpointer==2.3 -jsonschema==3.2.0 -junit-xml==1.9 -markupsafe==1.1.1 -mock==5.0.1 -more-itertools==8.14.0 -moto==1.3.16 -networkx==2.5.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyasn1==0.4.8 -pycparser==2.21 -pynamodb==5.4.1 -pyparsing==3.0.9 -pyrsistent==0.18.0 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -python-jose[cryptography]==3.3.0 -pytz==2022.7.1 -pyyaml==6.0 -requests==2.27.1 -responses==0.17.0 -rsa==4.9 -s3transfer==0.5.2 -six==1.16.0 -sortedcontainers==2.4.0 -sshpubkeys==3.3.1 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -websocket-client==1.3.1 -werkzeug==2.0.3 -wrapt==1.15.0 -xmltodict==0.13.0 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/12746dd.txt b/.riot/requirements/12746dd.txt deleted file mode 100644 index 6c5a91bf615..00000000000 --- a/.riot/requirements/12746dd.txt +++ /dev/null @@ -1,44 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/12746dd.in -# -aiofiles==0.8.0 -anyio==3.6.2 -async-generator==1.10 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -contextvars==2.4 -coverage[toml]==6.2 -dataclasses==0.8 -fastapi==0.64.0 -h11==0.12.0 -httpcore==0.14.7 -httpx==0.22.0 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pydantic==1.9.2 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -starlette==0.13.6 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/1297f2c.txt b/.riot/requirements/1297f2c.txt deleted file mode 100644 index 812548b20f8..00000000000 --- a/.riot/requirements/1297f2c.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1297f2c.in -# -aiohttp==3.8.4 -aiosignal==1.2.0 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -frozenlist==1.2.0 -hypothesis==6.31.6 -idna==3.4 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -multidict==5.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-aiohttp==0.3.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/12ce7f6.txt b/.riot/requirements/12ce7f6.txt deleted file mode 100644 index abffc177bc5..00000000000 --- a/.riot/requirements/12ce7f6.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/12ce7f6.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -mongoengine==0.19.1 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymongo==3.13.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/12e30f9.txt b/.riot/requirements/12e30f9.txt deleted file mode 100644 index 6393747eba5..00000000000 --- a/.riot/requirements/12e30f9.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/12e30f9.in -# -attrs==22.2.0 -beautifulsoup4==4.11.2 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -soupsieve==2.3.2.post1 -tomli==1.2.3 -typing-extensions==4.1.1 -waitress==2.0.0 -webob==1.8.7 -webtest==3.0.0 -zipp==3.6.0 diff --git a/.riot/requirements/12e9982.txt b/.riot/requirements/12e9982.txt deleted file mode 100644 index d7ddfdc401f..00000000000 --- a/.riot/requirements/12e9982.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/12e9982.in -# -attrs==22.1.0 -click==7.1.2 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -redis==3.5.3 -rq==1.8.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/12f36b1.txt b/.riot/requirements/12f36b1.txt deleted file mode 100644 index 24ed436b029..00000000000 --- a/.riot/requirements/12f36b1.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/12f36b1.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/130c4dc.txt b/.riot/requirements/130c4dc.txt deleted file mode 100644 index f9554fda41c..00000000000 --- a/.riot/requirements/130c4dc.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/130c4dc.in -# -attrs==22.2.0 -cassandra-driver==3.25.0 -click==8.0.4 -coverage[toml]==6.2 -geomet==0.2.1.post1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1312080.txt b/.riot/requirements/1312080.txt deleted file mode 100644 index 3500fd16420..00000000000 --- a/.riot/requirements/1312080.txt +++ /dev/null @@ -1,44 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1312080.in -# -attrs==22.1.0 -boto==2.49.0 -botocore==1.19.63 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -httpretty==0.8.10 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -jinja2==2.11.3 -jmespath==0.10.0 -markupsafe==1.1.1 -mock==3.0.5 -moto==0.4.31 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyasn1==0.4.8 -pynamodb==4.3.3 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-dateutil==2.8.2 -pytz==2022.7.1 -requests==2.25.1 -rsa==4.7 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -werkzeug==1.0.1 -xmltodict==0.13.0 -zipp==1.2.0 diff --git a/.riot/requirements/131b4c5.txt b/.riot/requirements/131b4c5.txt deleted file mode 100644 index 09443e63b3c..00000000000 --- a/.riot/requirements/131b4c5.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/131b4c5.in -# -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests-mock==1.10.0 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/1324fb2.txt b/.riot/requirements/1324fb2.txt deleted file mode 100644 index f5ba2d80e3d..00000000000 --- a/.riot/requirements/1324fb2.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1324fb2.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -click==8.0.4 -coverage[toml]==6.2 -dataclasses==0.8 -flask==2.0.3 -gunicorn==20.1.0 -httpretty==0.9.7 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -itsdangerous==2.0.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -werkzeug==2.0.3 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/132a135.txt b/.riot/requirements/132a135.txt deleted file mode 100644 index 6fc3a7759de..00000000000 --- a/.riot/requirements/132a135.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/132a135.in -# -attrs==22.2.0 -cattrs==1.0.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -molten==1.0.2 -mypy-extensions==1.0.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==3.10.0.2 -typing-inspect==0.6.0 -zipp==3.6.0 diff --git a/.riot/requirements/132c54a.txt b/.riot/requirements/132c54a.txt deleted file mode 100644 index e014ffa159a..00000000000 --- a/.riot/requirements/132c54a.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/132c54a.in -# -attrs==22.1.0 -coverage==5.5 -decorator==4.4.2 -dogpile.cache==0.9.2 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/132ee6e.txt b/.riot/requirements/132ee6e.txt deleted file mode 100644 index e951b1d1f39..00000000000 --- a/.riot/requirements/132ee6e.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/132ee6e.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/133c0df.txt b/.riot/requirements/133c0df.txt deleted file mode 100644 index 718f660ce93..00000000000 --- a/.riot/requirements/133c0df.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/133c0df.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -requests-mock==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/1355aa2.txt b/.riot/requirements/1355aa2.txt deleted file mode 100644 index 6444fa83690..00000000000 --- a/.riot/requirements/1355aa2.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1355aa2.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1377ee3.txt b/.riot/requirements/1377ee3.txt deleted file mode 100644 index 83fcd61e407..00000000000 --- a/.riot/requirements/1377ee3.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1377ee3.in -# -attrs==22.1.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1378827.txt b/.riot/requirements/1378827.txt deleted file mode 100644 index 91a4b3067c2..00000000000 --- a/.riot/requirements/1378827.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1378827.in -# -amqp==2.6.1 -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -kombu==4.6.11 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -vine==1.3.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1392bdb.txt b/.riot/requirements/1392bdb.txt deleted file mode 100644 index 1df907fb8d5..00000000000 --- a/.riot/requirements/1392bdb.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1392bdb.in -# -attrs==22.1.0 -certifi==2021.10.8 -coverage==5.5 -elasticsearch7==7.11.0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/1399085.txt b/.riot/requirements/1399085.txt deleted file mode 100644 index baa0cf5c650..00000000000 --- a/.riot/requirements/1399085.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1399085.in -# -attrs==22.2.0 -confluent-kafka==1.9.2 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/13a7174.txt b/.riot/requirements/13a7174.txt deleted file mode 100644 index 2b2a381fed7..00000000000 --- a/.riot/requirements/13a7174.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/13a7174.in -# -attrs==22.2.0 -coverage[toml]==6.2 -elasticsearch6==6.8.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/13ad0d5.txt b/.riot/requirements/13ad0d5.txt deleted file mode 100644 index 5641177d8ba..00000000000 --- a/.riot/requirements/13ad0d5.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/13ad0d5.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/13cb594.txt b/.riot/requirements/13cb594.txt deleted file mode 100644 index 92c524c27e4..00000000000 --- a/.riot/requirements/13cb594.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/13cb594.in -# -atomicwrites==1.4.1 -attrs==22.2.0 -blinker==1.5 -click==8.0.4 -coverage==6.2 -flask==0.12.5 -flask-cache==0.13.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==5.0.2 -more-itertools==8.10.0 -opentracing==2.4.0 -pluggy==1.0.0 -py==1.11.0 -pytest==3.10.1 -pytest-cov==2.1.0 -pytest-mock==2.0.0 -python-memcached==1.59 -redis==2.10.6 -six==1.16.0 -sortedcontainers==2.4.0 -typing-extensions==4.1.1 -werkzeug==0.16.1 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/13cbeca.txt b/.riot/requirements/13cbeca.txt deleted file mode 100644 index 3088b218776..00000000000 --- a/.riot/requirements/13cbeca.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/13cbeca.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/13e3ab3.txt b/.riot/requirements/13e3ab3.txt deleted file mode 100644 index 05b7f395a0d..00000000000 --- a/.riot/requirements/13e3ab3.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/13e3ab3.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/13e745a.txt b/.riot/requirements/13e745a.txt deleted file mode 100644 index e523bc63e34..00000000000 --- a/.riot/requirements/13e745a.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/13e745a.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -python-consul==1.1.0 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/13f2403.txt b/.riot/requirements/13f2403.txt deleted file mode 100644 index 8c90f82f4e1..00000000000 --- a/.riot/requirements/13f2403.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/13f2403.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/13fe0b9.txt b/.riot/requirements/13fe0b9.txt deleted file mode 100644 index bfec919f4e7..00000000000 --- a/.riot/requirements/13fe0b9.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/13fe0b9.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mariadb==1.0.11 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/140454e.txt b/.riot/requirements/140454e.txt deleted file mode 100644 index e06fd11b380..00000000000 --- a/.riot/requirements/140454e.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/140454e.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/142c49c.txt b/.riot/requirements/142c49c.txt deleted file mode 100644 index 0257c05375c..00000000000 --- a/.riot/requirements/142c49c.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/142c49c.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -redis-py-cluster==2.1.3 -redis==3.5.3 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/142d526.txt b/.riot/requirements/142d526.txt deleted file mode 100644 index 01b55b5d36a..00000000000 --- a/.riot/requirements/142d526.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/142d526.in -# -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests-mock==1.10.0 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/142ea1e.txt b/.riot/requirements/142ea1e.txt deleted file mode 100644 index ef5b2d96976..00000000000 --- a/.riot/requirements/142ea1e.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/142ea1e.in -# -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -click==7.1.2 -coverage==5.5 -flask==1.1.4 -gunicorn==20.1.0 -httpretty==0.9.7 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -werkzeug==1.0.1 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1443358.txt b/.riot/requirements/1443358.txt deleted file mode 100644 index 493c683f7b3..00000000000 --- a/.riot/requirements/1443358.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1443358.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -decorator==4.4.2 -dogpile.cache==0.9.2 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/14687bb.txt b/.riot/requirements/14687bb.txt deleted file mode 100644 index 6f6c779091b..00000000000 --- a/.riot/requirements/14687bb.txt +++ /dev/null @@ -1,46 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/14687bb.in -# -astunparse==1.6.3 -attrs==22.1.0 -certifi==2021.10.8 -cffi==1.15.1 -chardet==4.0.0 -click==7.1.2 -coverage==5.5 -cryptography==3.2.1 -flask==1.1.4 -gunicorn==20.1.0 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pycparser==2.21 -pycryptodome==3.17 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -werkzeug==1.0.1 -wheel==0.37.1 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1489d92.txt b/.riot/requirements/1489d92.txt deleted file mode 100644 index 3967199d1da..00000000000 --- a/.riot/requirements/1489d92.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1489d92.in -# -attrs==22.1.0 -certifi==2021.10.8 -coverage==5.5 -elasticsearch==7.8.1 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/14b0067.txt b/.riot/requirements/14b0067.txt deleted file mode 100644 index e74c4f27a48..00000000000 --- a/.riot/requirements/14b0067.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/14b0067.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -mongoengine==0.22.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymongo==3.13.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/14b153f.txt b/.riot/requirements/14b153f.txt deleted file mode 100644 index 33c9c308702..00000000000 --- a/.riot/requirements/14b153f.txt +++ /dev/null @@ -1,24 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/14b153f.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/14b261e.txt b/.riot/requirements/14b261e.txt deleted file mode 100644 index 9c93d4b54e8..00000000000 --- a/.riot/requirements/14b261e.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/14b261e.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymysql==1.0.2 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/14dce3c.txt b/.riot/requirements/14dce3c.txt deleted file mode 100644 index 3f7879adc59..00000000000 --- a/.riot/requirements/14dce3c.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/14dce3c.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/14ff519.txt b/.riot/requirements/14ff519.txt deleted file mode 100644 index dd1999251d4..00000000000 --- a/.riot/requirements/14ff519.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/14ff519.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/152c052.txt b/.riot/requirements/152c052.txt deleted file mode 100644 index ad857c4bf83..00000000000 --- a/.riot/requirements/152c052.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/152c052.in -# -attrs==22.2.0 -cheroot==10.0.0 -cherrypy==17.4.2 -contextlib2==21.6.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jaraco.functools==3.4.0 -mock==5.0.2 -more-itertools==8.10.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -portend==3.0.0 -py==1.11.0 -pyparsing==3.1.0 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -pytz==2023.3 -six==1.16.0 -sortedcontainers==2.4.0 -tempora==4.1.2 -tomli==1.2.3 -typing-extensions==4.1.1 -zc.lockfile==2.0 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/153896d.txt b/.riot/requirements/153896d.txt deleted file mode 100644 index 9ce10c5bab0..00000000000 --- a/.riot/requirements/153896d.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/153896d.in -# -attrs==22.2.0 -blinker==1.5 -certifi==2022.12.7 -charset-normalizer==2.0.12 -click==7.1.2 -coverage[toml]==6.2 -flask==1.1.4 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -werkzeug==1.0.1 -zipp==3.6.0 diff --git a/.riot/requirements/1554e9a.txt b/.riot/requirements/1554e9a.txt deleted file mode 100644 index 01536c0723c..00000000000 --- a/.riot/requirements/1554e9a.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1554e9a.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/156c8b5.txt b/.riot/requirements/156c8b5.txt deleted file mode 100644 index 76956904743..00000000000 --- a/.riot/requirements/156c8b5.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/156c8b5.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymemcache==3.5.2 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1579ab2.txt b/.riot/requirements/1579ab2.txt deleted file mode 100644 index 92e4858056c..00000000000 --- a/.riot/requirements/1579ab2.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1579ab2.in -# -attrs==22.1.0 -certifi==2021.10.8 -coverage==5.5 -elasticsearch==7.10.1 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/15856a0.txt b/.riot/requirements/15856a0.txt deleted file mode 100644 index cb1fdca8983..00000000000 --- a/.riot/requirements/15856a0.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/15856a0.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1589e15.txt b/.riot/requirements/1589e15.txt deleted file mode 100644 index a43b346720b..00000000000 --- a/.riot/requirements/1589e15.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1589e15.in -# -attrs==22.2.0 -coverage[toml]==6.2 -falcon==3.1.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/15a33f1.txt b/.riot/requirements/15a33f1.txt deleted file mode 100644 index b82130b635f..00000000000 --- a/.riot/requirements/15a33f1.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/15a33f1.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/15a77be.txt b/.riot/requirements/15a77be.txt deleted file mode 100644 index 910086826d4..00000000000 --- a/.riot/requirements/15a77be.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/15a77be.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch1==1.10.0 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/15b0852.txt b/.riot/requirements/15b0852.txt deleted file mode 100644 index ef5c9b66dd1..00000000000 --- a/.riot/requirements/15b0852.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/15b0852.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/15cbd11.txt b/.riot/requirements/15cbd11.txt deleted file mode 100644 index b76c9d27f80..00000000000 --- a/.riot/requirements/15cbd11.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/15cbd11.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -googleapis-common-protos==1.52.0 -grpcio==1.26.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.17.3 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/8d9413f.txt b/.riot/requirements/15d8f6b.txt similarity index 79% rename from .riot/requirements/8d9413f.txt rename to .riot/requirements/15d8f6b.txt index be42c185f07..52cfaa57298 100644 --- a/.riot/requirements/8d9413f.txt +++ b/.riot/requirements/15d8f6b.txt @@ -2,7 +2,7 @@ # This file is autogenerated by pip-compile with Python 3.10 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/8d9413f.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/15d8f6b.in # attrs==23.1.0 coverage[toml]==7.2.7 @@ -12,7 +12,7 @@ hypothesis==6.45.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 @@ -28,4 +28,3 @@ pytest-mock==3.11.1 six==1.16.0 sortedcontainers==2.4.0 tomli==2.0.1 -typing-extensions==4.7.1 diff --git a/.riot/requirements/15dc5a2.txt b/.riot/requirements/15dc5a2.txt deleted file mode 100644 index ac305732739..00000000000 --- a/.riot/requirements/15dc5a2.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/15dc5a2.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/15ddce3.txt b/.riot/requirements/15ddce3.txt deleted file mode 100644 index 3bb802566df..00000000000 --- a/.riot/requirements/15ddce3.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/15ddce3.in -# -attrs==22.2.0 -coverage[toml]==6.2 -decorator==5.1.1 -dogpile.cache==1.1.8 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pbr==5.11.1 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -stevedore==3.5.2 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/15f7497.txt b/.riot/requirements/15f7497.txt deleted file mode 100644 index a4a2135d6b9..00000000000 --- a/.riot/requirements/15f7497.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/15f7497.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/15f7547.txt b/.riot/requirements/15f7547.txt deleted file mode 100644 index 9c8c3cde59b..00000000000 --- a/.riot/requirements/15f7547.txt +++ /dev/null @@ -1,45 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/15f7547.in -# -aiofiles==0.8.0 -anyio==3.6.2 -async-generator==1.10 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -contextlib2==21.6.0 -contextvars==2.4 -coverage[toml]==6.2 -dataclasses==0.8 -fastapi==0.83.0 -h11==0.12.0 -httpcore==0.14.7 -httpx==0.22.0 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pydantic==1.9.2 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -starlette==0.19.1 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/16025dc.txt b/.riot/requirements/16025dc.txt deleted file mode 100644 index 6d04dcd0ed7..00000000000 --- a/.riot/requirements/16025dc.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/16025dc.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -mysql-connector-python==8.0.23 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.19.6 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/16068e5.txt b/.riot/requirements/16068e5.txt deleted file mode 100644 index f694dde6489..00000000000 --- a/.riot/requirements/16068e5.txt +++ /dev/null @@ -1,34 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/16068e5.in -# -attrs==22.2.0 -coverage[toml]==6.2 -gevent==1.4.0 -greenlet==0.4.14 -gunicorn[gevent]==20.1.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -py-cpuinfo==8.0.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-benchmark==3.4.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -uwsgi==2.0.21 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/160eed7.txt b/.riot/requirements/160eed7.txt deleted file mode 100644 index 0a625bfe177..00000000000 --- a/.riot/requirements/160eed7.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/160eed7.in -# -attrs==22.1.0 -coverage==5.5 -elasticsearch6==6.8.2 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/162a527.txt b/.riot/requirements/162a527.txt deleted file mode 100644 index 246a57423a6..00000000000 --- a/.riot/requirements/162a527.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/162a527.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mysqlclient==2.1.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1646549.txt b/.riot/requirements/1646549.txt deleted file mode 100644 index 9d85a6774e3..00000000000 --- a/.riot/requirements/1646549.txt +++ /dev/null @@ -1,43 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1646549.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -blinker==1.5 -click==7.1.2 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -flask-cache==0.13.1 -flask==0.12.5 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pytest-cov==2.1.0 -pytest-mock==2.0.0 -pytest==3.10.1 -python-memcached==1.59 -redis==2.10.6 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -typing==3.10.0.0 -werkzeug==0.16.1 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1895369.txt b/.riot/requirements/1646d28.txt similarity index 79% rename from .riot/requirements/1895369.txt rename to .riot/requirements/1646d28.txt index 6d40c69b091..380ceaec8b4 100644 --- a/.riot/requirements/1895369.txt +++ b/.riot/requirements/1646d28.txt @@ -2,7 +2,7 @@ # This file is autogenerated by pip-compile with Python 3.9 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/1895369.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/1646d28.in # attrs==23.1.0 coverage[toml]==7.2.7 @@ -12,7 +12,7 @@ hypothesis==6.45.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 @@ -28,4 +28,3 @@ pytest-mock==3.11.1 six==1.16.0 sortedcontainers==2.4.0 tomli==2.0.1 -typing-extensions==4.7.1 diff --git a/.riot/requirements/168cbdf.txt b/.riot/requirements/168cbdf.txt deleted file mode 100644 index 61272ab9189..00000000000 --- a/.riot/requirements/168cbdf.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/168cbdf.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mongoengine==0.24.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymongo==4.1.1 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/169d74e.txt b/.riot/requirements/169d74e.txt deleted file mode 100644 index ef067e32f5c..00000000000 --- a/.riot/requirements/169d74e.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/169d74e.in -# -attrs==22.2.0 -coverage[toml]==6.2 -httpretty==0.9.7 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.1.0 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/16b80d2.txt b/.riot/requirements/16b80d2.txt deleted file mode 100644 index 53679aca239..00000000000 --- a/.riot/requirements/16b80d2.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/16b80d2.in -# -attrs==22.1.0 -blinker==1.5 -certifi==2021.10.8 -chardet==4.0.0 -click==7.1.2 -coverage==5.5 -flask==1.1.4 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -werkzeug==1.0.1 -zipp==1.2.0 diff --git a/.riot/requirements/16bac29.txt b/.riot/requirements/16bac29.txt deleted file mode 100644 index b82dad0cbc9..00000000000 --- a/.riot/requirements/16bac29.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/16bac29.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -mysql-connector-python==8.0.23 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.17.3 -psycopg2-binary==2.8.6 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -sqlalchemy==1.4.46 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/16d67ef.txt b/.riot/requirements/16d67ef.txt deleted file mode 100644 index 2cfce7ed549..00000000000 --- a/.riot/requirements/16d67ef.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/16d67ef.in -# -attrs==20.1.0 -coverage==5.5 -httpretty==0.9.7 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -structlog==20.1.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/16e837a.txt b/.riot/requirements/16e837a.txt deleted file mode 100644 index ff3eb4aea98..00000000000 --- a/.riot/requirements/16e837a.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/16e837a.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -beautifulsoup4==4.9.3 -bottle==0.12.25 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -soupsieve==1.9.6 -toml==0.10.2 -typing==3.10.0.0 -waitress==1.4.4 -wcwidth==0.2.6 -webob==1.8.7 -webtest==2.0.35 -zipp==1.2.0 diff --git a/.riot/requirements/16f1655.txt b/.riot/requirements/16f1655.txt deleted file mode 100644 index ce0fe529f70..00000000000 --- a/.riot/requirements/16f1655.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/16f1655.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -cassandra-driver==3.24.0 -click==7.1.2 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -geomet==0.2.1.post1 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/16f9188.txt b/.riot/requirements/16f9188.txt deleted file mode 100644 index 2a0b91506d4..00000000000 --- a/.riot/requirements/16f9188.txt +++ /dev/null @@ -1,54 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/16f9188.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -boto==2.49.0 -botocore==1.20.112 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -httpretty==0.8.10 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -jinja2==2.11.3 -jmespath==0.10.0 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -moto==0.4.31 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyasn1==0.4.8 -pynamodb==4.3.3 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -python-dateutil==2.8.2 -pytz==2022.7.1 -requests==2.27.1 -rsa==4.5 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -werkzeug==1.0.1 -xmltodict==0.12.0 -zipp==1.2.0 diff --git a/.riot/requirements/1705233.txt b/.riot/requirements/1705233.txt deleted file mode 100644 index e68771c3901..00000000000 --- a/.riot/requirements/1705233.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1705233.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/170a117.txt b/.riot/requirements/170a117.txt deleted file mode 100644 index 1a3f7823d77..00000000000 --- a/.riot/requirements/170a117.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/170a117.in -# -attrs==22.2.0 -backports.zoneinfo==0.2.1 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -importlib-resources==5.4.0 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -psycopg==3.0.18 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1716274.txt b/.riot/requirements/1716274.txt deleted file mode 100644 index 70f6da06251..00000000000 --- a/.riot/requirements/1716274.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1716274.in -# -attrs==22.1.0 -click==7.1.2 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -redis==3.5.3 -rq==1.11.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1726d5f.txt b/.riot/requirements/1726d5f.txt deleted file mode 100644 index b16281ffd8e..00000000000 --- a/.riot/requirements/1726d5f.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1726d5f.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/173fc43.txt b/.riot/requirements/173fc43.txt deleted file mode 100644 index b8835307723..00000000000 --- a/.riot/requirements/173fc43.txt +++ /dev/null @@ -1,34 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/173fc43.in -# -attrs==22.2.0 -coverage[toml]==6.2 -gevent==22.10.2 -greenlet==2.0.2 -httpretty==0.9.7 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1789744.txt b/.riot/requirements/1789744.txt deleted file mode 100644 index 33c548f8278..00000000000 --- a/.riot/requirements/1789744.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1789744.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/17969f1.txt b/.riot/requirements/17969f1.txt deleted file mode 100644 index 2ff809e4a1d..00000000000 --- a/.riot/requirements/17969f1.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17969f1.in -# -aiobotocore==0.11.1 -aiohttp==3.6.3 -async-generator==1.10 -async-timeout==3.0.1 -attrs==22.1.0 -botocore==1.13.14 -chardet==3.0.4 -coverage==5.5 -docutils==0.15.2 -hypothesis==5.33.2 -idna-ssl==1.1.0 -idna==3.4 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -jmespath==0.10.0 -mock==3.0.5 -multidict==4.7.6 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-asyncio==0.14.0 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-dateutil==2.8.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing-extensions==3.10.0.2 -urllib3==1.25.11 -wrapt==1.15.0 -yarl==1.5.1 -zipp==1.2.0 diff --git a/.riot/requirements/17a1659.txt b/.riot/requirements/17a1659.txt deleted file mode 100644 index f40eff1098d..00000000000 --- a/.riot/requirements/17a1659.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17a1659.in -# -algoliasearch==2.6.3 -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pyrsistent==0.14.11 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/17a3e91.txt b/.riot/requirements/17a3e91.txt deleted file mode 100644 index af5191815a2..00000000000 --- a/.riot/requirements/17a3e91.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17a3e91.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -mysqlclient==1.4.6 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/17a8385.txt b/.riot/requirements/17a8385.txt deleted file mode 100644 index d0b7bfb5fca..00000000000 --- a/.riot/requirements/17a8385.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17a8385.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -more-itertools==8.10.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.9.0 -pytest-mock==2.0.0 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/17b1e6a.txt b/.riot/requirements/17b1e6a.txt deleted file mode 100644 index dc623ba1404..00000000000 --- a/.riot/requirements/17b1e6a.txt +++ /dev/null @@ -1,48 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17b1e6a.in -# -attrs==22.1.0 -beautifulsoup4==4.10.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -hupper==1.10.3 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pastedeploy==2.1.1 -pathlib2==2.3.7.post1 -plaster-pastedeploy==0.7 -plaster==1.0 -pluggy==0.13.1 -file:///root/project/tests/contrib/pyramid/pserve_app -py==1.11.0 -pyparsing==2.4.7 -pyramid==1.10.8 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -soupsieve==2.1 -toml==0.10.2 -translationstring==1.4 -urllib3==1.26.9 -venusian==3.0.0 -waitress==1.4.4 -webob==1.8.7 -webtest==2.0.35 -zipp==1.2.0 -zope.deprecation==4.4.0 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/17b3ad2.txt b/.riot/requirements/17b3ad2.txt deleted file mode 100644 index 7bff1e7057b..00000000000 --- a/.riot/requirements/17b3ad2.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17b3ad2.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -mongoengine==0.19.1 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymongo==3.13.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/17b612a.txt b/.riot/requirements/17b612a.txt deleted file mode 100644 index e9078664759..00000000000 --- a/.riot/requirements/17b612a.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17b612a.in -# -asgiref==3.4.1 -attrs==22.2.0 -coverage[toml]==6.2 -django==3.2.18 -djangorestframework==3.11.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-django==3.10.0 -pytest-mock==3.6.1 -pytz==2022.7.1 -sortedcontainers==2.4.0 -sqlparse==0.4.3 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/17c180c.txt b/.riot/requirements/17c180c.txt deleted file mode 100644 index b3973e0ad32..00000000000 --- a/.riot/requirements/17c180c.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17c180c.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -psycopg2-binary==2.8.6 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/17df667.txt b/.riot/requirements/17df667.txt deleted file mode 100644 index 55edb6f9fe2..00000000000 --- a/.riot/requirements/17df667.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17df667.in -# -amqp==2.6.1 -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -kombu==4.6.11 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -vine==1.3.0 -zipp==1.2.0 diff --git a/.riot/requirements/17e7a1d.txt b/.riot/requirements/17e7a1d.txt deleted file mode 100644 index 5ecb68ecd24..00000000000 --- a/.riot/requirements/17e7a1d.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17e7a1d.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mariadb==1.0.11 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/17ed92e.txt b/.riot/requirements/17ed92e.txt deleted file mode 100644 index b88d5f891bd..00000000000 --- a/.riot/requirements/17ed92e.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/17ed92e.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pylibmc==1.6.3 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/18130a1.txt b/.riot/requirements/18130a1.txt deleted file mode 100644 index 075e2809baf..00000000000 --- a/.riot/requirements/18130a1.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/18130a1.in -# -attrs==22.1.0 -coverage==5.5 -elasticsearch5==5.5.6 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/181f251.txt b/.riot/requirements/181f251.txt deleted file mode 100644 index d5f464e3e2e..00000000000 --- a/.riot/requirements/181f251.txt +++ /dev/null @@ -1,51 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/181f251.in -# -aiobotocore==2.3.1 -aiohttp==3.8.4 -aioitertools==0.11.0 -aiosignal==1.2.0 -async-generator==1.10 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -botocore==1.24.21 -certifi==2022.12.7 -chardet==3.0.4 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -elasticsearch==6.3.1 -frozenlist==1.2.0 -gevent==1.3.7 -greenlet==1.1.3.post0 -hypothesis==6.31.6 -idna==2.8 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jmespath==0.10.0 -mock==5.0.1 -multidict==5.2.0 -opensearch-py==1.1.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pynamodb==3.3.1 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -requests==2.22.0 -six==1.12.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.25.11 -wrapt==1.15.0 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/1836d36.txt b/.riot/requirements/1836d36.txt deleted file mode 100644 index fcec387ab3b..00000000000 --- a/.riot/requirements/1836d36.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1836d36.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opensearch-py[requests]==1.1.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/183e924.txt b/.riot/requirements/183e924.txt deleted file mode 100644 index 0f3277ebd3a..00000000000 --- a/.riot/requirements/183e924.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/183e924.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -docutils==0.18.1 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==1.1.0 -greenlet==1.1.3.post0 -gunicorn[gevent]==19.10.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -statistics==1.0.3.5 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/184cbe1.txt b/.riot/requirements/184cbe1.txt deleted file mode 100644 index 8dcb9e1f78d..00000000000 --- a/.riot/requirements/184cbe1.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/184cbe1.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mako==1.1.6 -markupsafe==2.0.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/184d23f.txt b/.riot/requirements/184d23f.txt deleted file mode 100644 index 2e166929943..00000000000 --- a/.riot/requirements/184d23f.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/184d23f.in -# -attrs==22.1.0 -confluent-kafka==1.5.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/187877d.txt b/.riot/requirements/187877d.txt deleted file mode 100644 index ba99c84e553..00000000000 --- a/.riot/requirements/187877d.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/187877d.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mako==1.1.6 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/ea2207e.txt b/.riot/requirements/188677b.txt similarity index 75% rename from .riot/requirements/ea2207e.txt rename to .riot/requirements/188677b.txt index 81812a25b2c..24c7c2ca64b 100644 --- a/.riot/requirements/ea2207e.txt +++ b/.riot/requirements/188677b.txt @@ -2,16 +2,17 @@ # This file is autogenerated by pip-compile with Python 3.10 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/ea2207e.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/188677b.in # attrs==23.1.0 coverage[toml]==7.2.7 exceptiongroup==1.1.2 +glob2==0.7 hypothesis==6.45.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 @@ -19,11 +20,11 @@ packaging==23.1 parse==1.19.1 parse-type==0.6.2 pluggy==1.2.0 +py==1.11.0 pytest==7.4.0 -pytest-bdd==6.1.1 +pytest-bdd==6.0.1 pytest-cov==4.1.0 pytest-mock==3.11.1 six==1.16.0 sortedcontainers==2.4.0 tomli==2.0.1 -typing-extensions==4.7.1 diff --git a/.riot/requirements/188a3f9.txt b/.riot/requirements/188a3f9.txt deleted file mode 100644 index c84d5a23188..00000000000 --- a/.riot/requirements/188a3f9.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/188a3f9.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1895172.txt b/.riot/requirements/1895172.txt deleted file mode 100644 index 5742bbd8254..00000000000 --- a/.riot/requirements/1895172.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1895172.in -# -attrs==22.2.0 -coverage==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -more-itertools==8.10.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==6.2.5 -pytest-cov==2.9.0 -pytest-mock==2.0.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1896095.txt b/.riot/requirements/1896095.txt deleted file mode 100644 index c6e140c12f9..00000000000 --- a/.riot/requirements/1896095.txt +++ /dev/null @@ -1,47 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1896095.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -blinker==1.5 -certifi==2021.10.8 -chardet==4.0.0 -click==7.1.2 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -flask==1.1.4 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -werkzeug==1.0.1 -zipp==1.2.0 diff --git a/.riot/requirements/189a410.txt b/.riot/requirements/189a410.txt deleted file mode 100644 index 1a45eaad40b..00000000000 --- a/.riot/requirements/189a410.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/189a410.in -# -attrs==22.2.0 -contextvars==2.4 -coverage[toml]==6.2 -hypothesis==6.31.6 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -yaaredis==3.0.0 -zipp==3.6.0 diff --git a/.riot/requirements/18bd6d0.txt b/.riot/requirements/18bd6d0.txt deleted file mode 100644 index 32b1c5dddc7..00000000000 --- a/.riot/requirements/18bd6d0.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/18bd6d0.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -redis==3.5.3 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/18ced70.txt b/.riot/requirements/18ced70.txt deleted file mode 100644 index 0a132e6daaa..00000000000 --- a/.riot/requirements/18ced70.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/18ced70.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/18cf9e0.txt b/.riot/requirements/18cf9e0.txt deleted file mode 100644 index e47fbb6fe4e..00000000000 --- a/.riot/requirements/18cf9e0.txt +++ /dev/null @@ -1,44 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/18cf9e0.in -# -aiobotocore==2.0.1 -aiohttp==3.8.4 -aioitertools==0.11.0 -aiosignal==1.2.0 -async-generator==1.10 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -botocore==1.22.8 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -frozenlist==1.2.0 -hypothesis==6.31.6 -idna==3.4 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jmespath==0.10.0 -mock==5.0.1 -multidict==5.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -wrapt==1.15.0 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/18e17a2.txt b/.riot/requirements/18e17a2.txt deleted file mode 100644 index 76dbc93a01b..00000000000 --- a/.riot/requirements/18e17a2.txt +++ /dev/null @@ -1,40 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/18e17a2.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -docutils==0.18.1 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -statistics==1.0.3.5 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/18ef46b.txt b/.riot/requirements/18ef46b.txt deleted file mode 100644 index 92d1b60f59c..00000000000 --- a/.riot/requirements/18ef46b.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/18ef46b.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pylibmc==1.6.3 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/18f6870.txt b/.riot/requirements/18f6870.txt deleted file mode 100644 index 27fba6ef107..00000000000 --- a/.riot/requirements/18f6870.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/18f6870.in -# -attrs==22.1.0 -coverage==5.5 -django-hosts==4.0 -django==2.2.28 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-django==3.10.0 -pytest-mock==3.5.1 -pytest==6.1.2 -pytz==2022.7.1 -six==1.16.0 -sortedcontainers==2.4.0 -sqlparse==0.4.3 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1905970.txt b/.riot/requirements/1905970.txt deleted file mode 100644 index a52f4f1ff25..00000000000 --- a/.riot/requirements/1905970.txt +++ /dev/null @@ -1,47 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1905970.in -# -attrs==22.2.0 -beautifulsoup4==4.11.2 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hupper==1.10.3 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pastedeploy==2.1.1 -plaster==1.0 -plaster-pastedeploy==0.7 -pluggy==1.0.0 -pserve-test-app @ file:///root/project/tests/contrib/pyramid/pserve_app -py==1.11.0 -pyparsing==3.0.9 -pyramid==1.10.8 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -soupsieve==2.3.2.post1 -tomli==1.2.3 -translationstring==1.4 -typing-extensions==4.1.1 -urllib3==1.26.15 -venusian==3.0.0 -waitress==2.0.0 -webob==1.8.7 -webtest==3.0.0 -zipp==3.6.0 -zope.deprecation==4.4.0 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1934900.txt b/.riot/requirements/1934900.txt deleted file mode 100644 index 4287e329785..00000000000 --- a/.riot/requirements/1934900.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1934900.in -# -attrs==22.1.0 -cassandra-driver==3.24.0 -click==7.1.2 -coverage==5.5 -geomet==0.2.1.post1 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/19642fa.txt b/.riot/requirements/19642fa.txt deleted file mode 100644 index 771dd68c226..00000000000 --- a/.riot/requirements/19642fa.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/19642fa.in -# -attrs==22.1.0 -coverage==5.5 -decorator==4.4.2 -dogpile.cache==0.9.2 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/197d9d9.txt b/.riot/requirements/197d9d9.txt index 2b2a2fb2c44..d8370480802 100644 --- a/.riot/requirements/197d9d9.txt +++ b/.riot/requirements/197d9d9.txt @@ -2,7 +2,7 @@ # This file is autogenerated by pip-compile with Python 3.11 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/197d9d9.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/197d9d9.in # attrs==23.1.0 coverage[toml]==7.2.3 diff --git a/.riot/requirements/197dba9.txt b/.riot/requirements/197dba9.txt deleted file mode 100644 index 9142529207e..00000000000 --- a/.riot/requirements/197dba9.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/197dba9.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymemcache==3.4.4 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/198732d.txt b/.riot/requirements/198732d.txt deleted file mode 100644 index 2de11a92c2b..00000000000 --- a/.riot/requirements/198732d.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/198732d.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch6==6.8.2 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/19889bf.txt b/.riot/requirements/19889bf.txt deleted file mode 100644 index 7f29fa9e13e..00000000000 --- a/.riot/requirements/19889bf.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/19889bf.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -requests-mock==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/198f8d4.txt b/.riot/requirements/198f8d4.txt deleted file mode 100644 index c1b39d170d9..00000000000 --- a/.riot/requirements/198f8d4.txt +++ /dev/null @@ -1,47 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/198f8d4.in -# -attrs==22.2.0 -beautifulsoup4==4.11.2 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hupper==1.10.3 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pastedeploy==2.1.1 -plaster==1.0 -plaster-pastedeploy==0.7 -pluggy==1.0.0 -pserve-test-app @ file:///root/project/tests/contrib/pyramid/pserve_app -py==1.11.0 -pyparsing==3.0.9 -pyramid==2.0.1 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -soupsieve==2.3.2.post1 -tomli==1.2.3 -translationstring==1.4 -typing-extensions==4.1.1 -urllib3==1.26.15 -venusian==3.0.0 -waitress==2.0.0 -webob==1.8.7 -webtest==3.0.0 -zipp==3.6.0 -zope.deprecation==4.4.0 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/19a3af1.txt b/.riot/requirements/19a3af1.txt deleted file mode 100644 index 51f924561b9..00000000000 --- a/.riot/requirements/19a3af1.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/19a3af1.in -# -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -gevent==22.10.2 -greenlet==2.0.2 -gunicorn==20.0.4 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1080b30.txt b/.riot/requirements/19a842e.txt similarity index 81% rename from .riot/requirements/1080b30.txt rename to .riot/requirements/19a842e.txt index e105d560f23..74cb6dee026 100644 --- a/.riot/requirements/1080b30.txt +++ b/.riot/requirements/19a842e.txt @@ -2,7 +2,7 @@ # This file is autogenerated by pip-compile with Python 3.7 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/1080b30.in +# pip-compile --config=pyproject.toml --no-annotate --resolver=backtracking .riot/requirements/19a842e.in # attrs==23.1.0 coverage[toml]==7.2.7 @@ -13,7 +13,7 @@ importlib-metadata==6.7.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 diff --git a/.riot/requirements/19a9846.txt b/.riot/requirements/19a9846.txt deleted file mode 100644 index 9115eb50b30..00000000000 --- a/.riot/requirements/19a9846.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/19a9846.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.6 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -glob2==0.7 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mako==1.1.6 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -parse-type==0.6.2 -parse==1.19.1 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-bdd==3.4.0 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/19b2618.txt b/.riot/requirements/19b2618.txt deleted file mode 100644 index 4d373cb25cd..00000000000 --- a/.riot/requirements/19b2618.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/19b2618.in -# -aiohttp==3.8.4 -aiohttp-jinja2==1.5 -aiosignal==1.2.0 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -frozenlist==1.2.0 -hypothesis==6.31.6 -idna==3.4 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.1 -multidict==5.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-aiohttp==0.3.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/19d05fa.txt b/.riot/requirements/19d05fa.txt deleted file mode 100644 index 984de58868e..00000000000 --- a/.riot/requirements/19d05fa.txt +++ /dev/null @@ -1,73 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/19d05fa.in -# -attrs==22.2.0 -aws-sam-translator==1.42.0 -aws-xray-sdk==2.11.0 -boto==2.49.0 -boto3==1.23.10 -botocore==1.26.10 -certifi==2022.12.7 -cffi==1.15.1 -cfn-lint==0.53.1 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -cryptography==39.0.2 -dataclasses==0.8 -decorator==4.4.2 -docker==5.0.3 -ecdsa==0.14.1 -hypothesis==6.31.6 -idna==2.10 -importlib-metadata==4.8.3 -importlib-resources==3.3.1 -iniconfig==1.1.1 -jinja2==2.11.3 -jmespath==0.10.0 -jsondiff==2.0.0 -jsonpatch==1.32 -jsonpointer==2.3 -jsonschema==3.2.0 -junit-xml==1.9 -markupsafe==1.1.1 -mock==5.0.1 -more-itertools==8.14.0 -moto==1.3.16 -networkx==2.5.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyasn1==0.4.8 -pycparser==2.21 -pynamodb==5.4.1 -pyparsing==3.0.9 -pyrsistent==0.18.0 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -python-jose[cryptography]==3.3.0 -pytz==2022.7.1 -pyyaml==6.0 -requests==2.27.1 -responses==0.17.0 -rsa==4.9 -s3transfer==0.5.2 -six==1.16.0 -sortedcontainers==2.4.0 -sshpubkeys==3.3.1 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -websocket-client==1.3.1 -werkzeug==2.0.3 -wrapt==1.15.0 -xmltodict==0.13.0 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/19ebea9.txt b/.riot/requirements/19ebea9.txt deleted file mode 100644 index 81add3f0dbe..00000000000 --- a/.riot/requirements/19ebea9.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/19ebea9.in -# -attrs==22.2.0 -certifi==2022.12.7 -coverage[toml]==6.2 -elasticsearch==7.8.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/19ef42f.txt b/.riot/requirements/19ef42f.txt deleted file mode 100644 index 25b0dd1d481..00000000000 --- a/.riot/requirements/19ef42f.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/19ef42f.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mysqlclient==2.1.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/19ff30c.txt b/.riot/requirements/19ff30c.txt deleted file mode 100644 index 82b53ac08ab..00000000000 --- a/.riot/requirements/19ff30c.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/19ff30c.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/de4bcfe.txt b/.riot/requirements/1a07bb8.txt similarity index 78% rename from .riot/requirements/de4bcfe.txt rename to .riot/requirements/1a07bb8.txt index f0cc36b9fa6..3c4a4fdc703 100644 --- a/.riot/requirements/de4bcfe.txt +++ b/.riot/requirements/1a07bb8.txt @@ -2,7 +2,7 @@ # This file is autogenerated by pip-compile with Python 3.11 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/de4bcfe.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/1a07bb8.in # attrs==23.1.0 coverage[toml]==7.2.7 @@ -11,7 +11,7 @@ hypothesis==6.45.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 @@ -26,4 +26,3 @@ pytest-cov==4.1.0 pytest-mock==3.11.1 six==1.16.0 sortedcontainers==2.4.0 -typing-extensions==4.7.1 diff --git a/.riot/requirements/1a12057.txt b/.riot/requirements/1a12057.txt deleted file mode 100644 index 2c970ad682a..00000000000 --- a/.riot/requirements/1a12057.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a12057.in -# -attrs==22.1.0 -beautifulsoup4==4.10.0 -bottle==0.12.25 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -soupsieve==2.1 -toml==0.10.2 -waitress==1.4.4 -webob==1.8.7 -webtest==2.0.35 -zipp==1.2.0 diff --git a/.riot/requirements/1a13e76.txt b/.riot/requirements/1a13e76.txt deleted file mode 100644 index 512452fbd0c..00000000000 --- a/.riot/requirements/1a13e76.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a13e76.in -# -aniso8601==9.0.1 -attrs==22.2.0 -coverage[toml]==6.2 -graphene==3.0 -graphql-core==3.1.7 -graphql-relay==3.1.5 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1a19c25.txt b/.riot/requirements/1a19c25.txt deleted file mode 100644 index 68686ca8e24..00000000000 --- a/.riot/requirements/1a19c25.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a19c25.in -# -attrs==22.2.0 -confluent-kafka==2.1.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1a1b161.txt b/.riot/requirements/1a1b161.txt deleted file mode 100644 index 1d348374bc8..00000000000 --- a/.riot/requirements/1a1b161.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a1b161.in -# -async-generator==1.10 -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-asyncio==0.14.0 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1a1c1fa.txt b/.riot/requirements/1a1c1fa.txt deleted file mode 100644 index 6157eb4a49c..00000000000 --- a/.riot/requirements/1a1c1fa.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a1c1fa.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -mysql-connector-python==8.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1a23b3b.txt b/.riot/requirements/1a23b3b.txt deleted file mode 100644 index 5ec6d96ca79..00000000000 --- a/.riot/requirements/1a23b3b.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a23b3b.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymemcache==3.5.2 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1a2f766.txt b/.riot/requirements/1a2f766.txt deleted file mode 100644 index 4637700da48..00000000000 --- a/.riot/requirements/1a2f766.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a2f766.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -redis==3.5.3 -redis-py-cluster==2.1.3 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1a34bd9.txt b/.riot/requirements/1a34bd9.txt deleted file mode 100644 index 25beb80e323..00000000000 --- a/.riot/requirements/1a34bd9.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a34bd9.in -# -attrs==22.2.0 -beautifulsoup4==4.11.2 -bottle==0.12.25 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -soupsieve==2.3.2.post1 -tomli==1.2.3 -typing-extensions==4.1.1 -waitress==2.0.0 -webob==1.8.7 -webtest==3.0.0 -zipp==3.6.0 diff --git a/.riot/requirements/1a6547d.txt b/.riot/requirements/1a6547d.txt deleted file mode 100644 index 7cdfc5fad54..00000000000 --- a/.riot/requirements/1a6547d.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a6547d.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymysql==0.10.1 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1a6da0c.txt b/.riot/requirements/1a6da0c.txt deleted file mode 100644 index 4722e1aec10..00000000000 --- a/.riot/requirements/1a6da0c.txt +++ /dev/null @@ -1,32 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a6da0c.in -# -attrs==22.1.0 -coverage==5.5 -gevent==22.10.2 -greenlet==2.0.2 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1a945ce.txt b/.riot/requirements/1a945ce.txt deleted file mode 100644 index b9e4f8f430d..00000000000 --- a/.riot/requirements/1a945ce.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1a945ce.in -# -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-consul==1.1.0 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/1ab28fe.txt b/.riot/requirements/1ab28fe.txt deleted file mode 100644 index 7c5327165c5..00000000000 --- a/.riot/requirements/1ab28fe.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1ab28fe.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -mysql-connector-python==8.0.23 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.19.6 -psycopg2-binary==2.8.6 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -sqlalchemy==1.3.24 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1abbe5b.txt b/.riot/requirements/1abbe5b.txt deleted file mode 100644 index 8c5340519dd..00000000000 --- a/.riot/requirements/1abbe5b.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1abbe5b.in -# -attrs==22.1.0 -coverage==5.5 -falcon==3.1.1 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1ac6545.txt b/.riot/requirements/1ac6545.txt deleted file mode 100644 index ab5f179a620..00000000000 --- a/.riot/requirements/1ac6545.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1ac6545.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch5==5.5.6 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1ae4fe3.txt b/.riot/requirements/1ae4fe3.txt deleted file mode 100644 index 8b55030af2e..00000000000 --- a/.riot/requirements/1ae4fe3.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1ae4fe3.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -psycopg2-binary==2.8.6 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1b1b40a.txt b/.riot/requirements/1b1b40a.txt deleted file mode 100644 index 6a6929065ae..00000000000 --- a/.riot/requirements/1b1b40a.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1b1b40a.in -# -anyio==3.6.2 -async-generator==1.10 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==3.0.1 -contextvars==2.4 -coverage[toml]==6.2 -dataclasses==0.8 -h11==0.12.0 -httpcore==0.14.7 -httpx==0.22.0 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1b27277.txt b/.riot/requirements/1b27277.txt deleted file mode 100644 index e562ad4c8ce..00000000000 --- a/.riot/requirements/1b27277.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1b27277.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -future==0.18.3 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -python-dateutil==2.8.2 -pytz==2022.7.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -vertica-python==0.6.14 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1b65162.txt b/.riot/requirements/1b65162.txt deleted file mode 100644 index 6b60ae43f36..00000000000 --- a/.riot/requirements/1b65162.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1b65162.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1b89131.txt b/.riot/requirements/1b89131.txt deleted file mode 100644 index 5d0537e0321..00000000000 --- a/.riot/requirements/1b89131.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1b89131.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch7==7.11.0 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1bbb8a3.txt b/.riot/requirements/1bbb8a3.txt deleted file mode 100644 index 029f11fb40b..00000000000 --- a/.riot/requirements/1bbb8a3.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1bbb8a3.in -# -attrs==22.1.0 -coverage==5.5 -gevent==1.2.2 -greenlet==1.1.3.post0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1bbf196.txt b/.riot/requirements/1bbf196.txt deleted file mode 100644 index 03f5b6e1c5d..00000000000 --- a/.riot/requirements/1bbf196.txt +++ /dev/null @@ -1,58 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1bbf196.in -# -asn1crypto==1.5.1 -attrs==22.2.0 -azure-common==1.1.28 -azure-core==1.24.2 -azure-storage-blob==12.13.1 -boto3==1.23.10 -botocore==1.26.10 -certifi==2022.12.7 -cffi==1.15.1 -chardet==4.0.0 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -cryptography==3.4.8 -dataclasses==0.8 -hypothesis==6.31.6 -idna==2.10 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -isodate==0.6.1 -jmespath==0.10.0 -mock==5.0.1 -msrest==0.7.1 -oauthlib==3.2.2 -opentracing==2.4.0 -oscrypto==1.3.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pycparser==2.21 -pycryptodomex==3.17 -pyjwt==2.4.0 -pyopenssl==19.1.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -pytz==2022.7.1 -requests==2.27.1 -requests-oauthlib==1.3.1 -responses==0.16.0 -s3transfer==0.5.2 -six==1.16.0 -snowflake-connector-python==2.4.6 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1bc253a.txt b/.riot/requirements/1bc253a.txt deleted file mode 100644 index 64efba0a227..00000000000 --- a/.riot/requirements/1bc253a.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1bc253a.in -# -amqp==2.6.1 -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -kombu==4.0.2 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -vine==1.3.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1bdca4a.txt b/.riot/requirements/1bdca4a.txt deleted file mode 100644 index 76b7c3cf1c8..00000000000 --- a/.riot/requirements/1bdca4a.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1bdca4a.in -# -algoliasearch==2.6.3 -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/1beb3b4.txt b/.riot/requirements/1beb3b4.txt deleted file mode 100644 index b85e809b4ce..00000000000 --- a/.riot/requirements/1beb3b4.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1beb3b4.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -cassandra-driver==3.25.0 -click==7.1.2 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -geomet==0.2.1.post1 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1bf368a.txt b/.riot/requirements/1bf368a.txt deleted file mode 100644 index fbb5bb123c2..00000000000 --- a/.riot/requirements/1bf368a.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1bf368a.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1c0291c.txt b/.riot/requirements/1c0291c.txt deleted file mode 100644 index eadee3941da..00000000000 --- a/.riot/requirements/1c0291c.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c0291c.in -# -attrs==22.2.0 -coverage[toml]==6.2 -elasticsearch1==1.10.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/1c203f0.txt b/.riot/requirements/1c203f0.txt deleted file mode 100644 index 91c91167442..00000000000 --- a/.riot/requirements/1c203f0.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c203f0.in -# -asyncpg==0.26.0 -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1c28495.txt b/.riot/requirements/1c28495.txt deleted file mode 100644 index 72f9c0cb869..00000000000 --- a/.riot/requirements/1c28495.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c28495.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymemcache==3.4.4 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1c32094.txt b/.riot/requirements/1c32094.txt deleted file mode 100644 index 8a9d8da7292..00000000000 --- a/.riot/requirements/1c32094.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c32094.in -# -async-generator==1.10 -attrs==22.1.0 -coverage==5.5 -gunicorn==20.1.0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.19.6 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-asyncio==0.14.0 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -uwsgi==2.0.21 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1c338bf.txt b/.riot/requirements/1c338bf.txt deleted file mode 100644 index e29f72690e1..00000000000 --- a/.riot/requirements/1c338bf.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c338bf.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mysqlclient==2.1.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1c3e04e.txt b/.riot/requirements/1c3e04e.txt deleted file mode 100644 index ec773cbb967..00000000000 --- a/.riot/requirements/1c3e04e.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c3e04e.in -# -asynctest==0.13.0 -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==6.2.5 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -toml==0.10.2 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1c4d08c.txt b/.riot/requirements/1c4d08c.txt deleted file mode 100644 index 851b1f3d72c..00000000000 --- a/.riot/requirements/1c4d08c.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c4d08c.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -redis-py-cluster==2.0.0 -redis==3.0.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1c54bd3.txt b/.riot/requirements/1c54bd3.txt deleted file mode 100644 index c4af0f2173d..00000000000 --- a/.riot/requirements/1c54bd3.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c54bd3.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mariadb==1.0.11 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1c57061.txt b/.riot/requirements/1c57061.txt deleted file mode 100644 index 7b17898da6c..00000000000 --- a/.riot/requirements/1c57061.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c57061.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -mongoengine==0.19.1 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymongo==3.13.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1c5a68c.txt b/.riot/requirements/1c5a68c.txt deleted file mode 100644 index 2880b192b84..00000000000 --- a/.riot/requirements/1c5a68c.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c5a68c.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1c63df9.txt b/.riot/requirements/1c63df9.txt deleted file mode 100644 index 935150509f3..00000000000 --- a/.riot/requirements/1c63df9.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c63df9.in -# -attrs==22.2.0 -certifi==2022.12.7 -coverage[toml]==6.2 -dataclasses==0.8 -elastic-transport==8.4.0 -elasticsearch8==8.7.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/1c67d9e.txt b/.riot/requirements/1c67d9e.txt deleted file mode 100644 index d4da099caaf..00000000000 --- a/.riot/requirements/1c67d9e.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c67d9e.in -# -async-generator==1.10 -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-asyncio==0.14.0 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1c7d779.txt b/.riot/requirements/1c7d779.txt deleted file mode 100644 index e40fac8d636..00000000000 --- a/.riot/requirements/1c7d779.txt +++ /dev/null @@ -1,59 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c7d779.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -beautifulsoup4==4.9.3 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hupper==1.10.3 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pastedeploy==2.1.1 -pathlib2==2.3.7.post1 -plaster-pastedeploy==0.7 -plaster==1.0 -pluggy==0.13.1 -file:///root/project/tests/contrib/pyramid/pserve_app -py==1.11.0 -pyparsing==2.4.7 -pyramid==1.10.8 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -repoze.lru==0.7 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -soupsieve==1.9.6 -toml==0.10.2 -translationstring==1.4 -typing==3.10.0.0 -urllib3==1.26.15 -venusian==2.1.0 -waitress==1.4.4 -wcwidth==0.2.6 -webob==1.8.7 -webtest==2.0.35 -zipp==1.2.0 -zope.deprecation==4.4.0 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1c96ce3.txt b/.riot/requirements/1c96ce3.txt deleted file mode 100644 index c03deafcc07..00000000000 --- a/.riot/requirements/1c96ce3.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1c96ce3.in -# -attrs==22.2.0 -coverage[toml]==6.2 -gevent==22.10.2 -greenlet==2.0.2 -gunicorn[gevent]==20.1.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -py-cpuinfo==8.0.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-benchmark==3.4.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -uwsgi==2.0.21 -zipp==3.6.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1cb139a.txt b/.riot/requirements/1cb139a.txt deleted file mode 100644 index 2eac7b7495c..00000000000 --- a/.riot/requirements/1cb139a.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1cb139a.in -# -atomicwrites==1.4.1 -attrs==22.1.0 -blinker==1.5 -click==7.1.2 -coverage==5.5 -flask-cache==0.13.1 -flask==0.12.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==8.10.0 -opentracing==2.4.0 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pytest-cov==2.1.0 -pytest-mock==2.0.0 -pytest==3.10.1 -python-memcached==1.59 -redis==2.10.6 -six==1.16.0 -sortedcontainers==2.4.0 -werkzeug==0.16.1 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1cdb1c5.txt b/.riot/requirements/1cdb1c5.txt deleted file mode 100644 index 4d7606bca37..00000000000 --- a/.riot/requirements/1cdb1c5.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1cdb1c5.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mysql-connector-python==8.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1cf2a33.txt b/.riot/requirements/1cf2a33.txt deleted file mode 100644 index 71b4f0e5686..00000000000 --- a/.riot/requirements/1cf2a33.txt +++ /dev/null @@ -1,40 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1cf2a33.in -# -anyio==3.6.2 -asgiref==3.0.0 -async-generator==1.10 -async-timeout==3.0.1 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==3.0.1 -contextvars==2.4 -coverage[toml]==6.2 -dataclasses==0.8 -h11==0.12.0 -httpcore==0.14.7 -httpx==0.22.0 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1cfe37d.txt b/.riot/requirements/1cfe37d.txt deleted file mode 100644 index 2457d7adf20..00000000000 --- a/.riot/requirements/1cfe37d.txt +++ /dev/null @@ -1,48 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1cfe37d.in -# -aiocontextvars==0.2.2 -aiofiles==0.8.0 -aiosqlite==0.17.0 -anyio==3.6.2 -async-generator==1.10 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -contextlib2==21.6.0 -contextvars==2.4 -coverage[toml]==6.2 -databases==0.5.5 -dataclasses==0.8 -greenlet==2.0.2 -h11==0.12.0 -httpcore==0.14.7 -httpx==0.22.0 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -sqlalchemy==1.4.46 -starlette==0.19.1 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/1d28004.txt b/.riot/requirements/1d28004.txt deleted file mode 100644 index 1e26f06ae1a..00000000000 --- a/.riot/requirements/1d28004.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1d28004.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pylibmc==1.6.1 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1d3adbd.txt b/.riot/requirements/1d3adbd.txt index a5afd90bdfa..1ad516ff1ac 100644 --- a/.riot/requirements/1d3adbd.txt +++ b/.riot/requirements/1d3adbd.txt @@ -2,30 +2,30 @@ # This file is autogenerated by pip-compile with Python 3.7 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/1d3adbd.in +# pip-compile --config=pyproject.toml --no-annotate --resolver=backtracking .riot/requirements/1d3adbd.in # attrs==23.1.0 coverage[toml]==7.2.7 -exceptiongroup==1.1.1 -gunicorn==20.1.0 +exceptiongroup==1.1.2 +gunicorn==21.2.0 hypothesis==6.45.0 -importlib-metadata==6.6.0 +importlib-metadata==6.7.0 iniconfig==2.0.0 -mock==5.0.2 +mock==5.1.0 opentracing==2.4.0 packaging==23.1 -pluggy==1.0.0 +pluggy==1.2.0 protobuf==3.8.0 py-cpuinfo==8.0.0 -pytest==7.3.1 -pytest-asyncio==0.21.0 +pytest==7.4.0 +pytest-asyncio==0.21.1 pytest-benchmark==4.0.0 pytest-cov==4.1.0 -pytest-mock==3.10.0 +pytest-mock==3.11.1 six==1.16.0 sortedcontainers==2.4.0 tomli==2.0.1 -typing-extensions==4.7.0 +typing-extensions==4.7.1 uwsgi==2.0.21 zipp==3.15.0 diff --git a/.riot/requirements/1d433a0.txt b/.riot/requirements/1d433a0.txt deleted file mode 100644 index e19cd377818..00000000000 --- a/.riot/requirements/1d433a0.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1d433a0.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mako==1.1.6 -markupsafe==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1d4c272.txt b/.riot/requirements/1d4c272.txt deleted file mode 100644 index f1054ee34b0..00000000000 --- a/.riot/requirements/1d4c272.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1d4c272.in -# -amqp==2.6.1 -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -kombu==4.6.11 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -vine==1.3.0 -zipp==3.6.0 diff --git a/.riot/requirements/1d632c5.txt b/.riot/requirements/1d632c5.txt deleted file mode 100644 index c22066978f2..00000000000 --- a/.riot/requirements/1d632c5.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1d632c5.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opensearch-py[requests]==2.0.1 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1d78560.txt b/.riot/requirements/1d78560.txt deleted file mode 100644 index 19bf78c3ed8..00000000000 --- a/.riot/requirements/1d78560.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1d78560.in -# -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opensearch-py[requests]==1.1.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/1d7ea43.txt b/.riot/requirements/1d7ea43.txt deleted file mode 100644 index cdd35f94c0e..00000000000 --- a/.riot/requirements/1d7ea43.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1d7ea43.in -# -aiohttp==3.8.4 -aiohttp-jinja2==1.5 -aiosignal==1.2.0 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -frozenlist==1.2.0 -hypothesis==6.31.6 -idna==3.4 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.1 -multidict==5.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-aiohttp==0.3.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/1d9722d.txt b/.riot/requirements/1d9722d.txt deleted file mode 100644 index 4ccc4e34575..00000000000 --- a/.riot/requirements/1d9722d.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1d9722d.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/1da6ee5.txt b/.riot/requirements/1da6ee5.txt deleted file mode 100644 index a63dd417077..00000000000 --- a/.riot/requirements/1da6ee5.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1da6ee5.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1db06ff.txt b/.riot/requirements/1db06ff.txt deleted file mode 100644 index ba818c3bf99..00000000000 --- a/.riot/requirements/1db06ff.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1db06ff.in -# -aiohttp==3.8.4 -aiosignal==1.2.0 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -frozenlist==1.2.0 -hypothesis==6.31.6 -idna==3.4 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -multidict==5.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-aiohttp==0.3.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/1db5b20.txt b/.riot/requirements/1db5b20.txt deleted file mode 100644 index 667ef6e7e5e..00000000000 --- a/.riot/requirements/1db5b20.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1db5b20.in -# -attrs==22.2.0 -cassandra-driver==3.24.0 -click==8.0.4 -coverage[toml]==6.2 -geomet==0.2.1.post1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1dceb75.txt b/.riot/requirements/1dceb75.txt deleted file mode 100644 index 5f10d3fc255..00000000000 --- a/.riot/requirements/1dceb75.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1dceb75.in -# -attrs==22.2.0 -certifi==2022.12.7 -coverage[toml]==6.2 -elasticsearch==7.10.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/1dcedce.txt b/.riot/requirements/1dcedce.txt deleted file mode 100644 index 766b1242677..00000000000 --- a/.riot/requirements/1dcedce.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1dcedce.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opensearch-py[requests]==2.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/1e01b80.txt b/.riot/requirements/1e01b80.txt deleted file mode 100644 index c33bbeb2dd8..00000000000 --- a/.riot/requirements/1e01b80.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1e01b80.in -# -async-timeout==4.0.2 -attrs==22.2.0 -click==7.1.2 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -redis==4.3.5 -rq==1.13.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1e3090d.txt b/.riot/requirements/1e3090d.txt deleted file mode 100644 index 7ff8119a823..00000000000 --- a/.riot/requirements/1e3090d.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1e3090d.in -# -anyio==3.6.2 -asgiref==3.4.1 -async-generator==1.10 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==3.0.1 -contextvars==2.4 -coverage[toml]==6.2 -dataclasses==0.8 -h11==0.12.0 -httpcore==0.14.7 -httpx==0.22.0 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1e4d525.txt b/.riot/requirements/1e4d525.txt deleted file mode 100644 index e187916f891..00000000000 --- a/.riot/requirements/1e4d525.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1e4d525.in -# -attrs==22.2.0 -coverage[toml]==6.2 -falcon==3.0.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1e4d7b1.txt b/.riot/requirements/1e4d7b1.txt deleted file mode 100644 index a23d624a7c0..00000000000 --- a/.riot/requirements/1e4d7b1.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1e4d7b1.in -# -attrs==22.2.0 -coverage[toml]==6.2 -googleapis-common-protos==1.56.3 -grpcio==1.34.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -protobuf==3.19.6 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1e5a3c5.txt b/.riot/requirements/1e5a3c5.txt deleted file mode 100644 index eccffdf8d91..00000000000 --- a/.riot/requirements/1e5a3c5.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1e5a3c5.in -# -attrs==22.1.0 -coverage==5.5 -elasticsearch6==6.8.2 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/1e72d9c.txt b/.riot/requirements/1e72d9c.txt deleted file mode 100644 index 5fb0e7f5877..00000000000 --- a/.riot/requirements/1e72d9c.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1e72d9c.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -mysql-connector-python==8.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1e7543e.txt b/.riot/requirements/1e7543e.txt deleted file mode 100644 index 4b008700b4d..00000000000 --- a/.riot/requirements/1e7543e.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1e7543e.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymemcache==3.5.2 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1e8bc53.txt b/.riot/requirements/1e8bc53.txt deleted file mode 100644 index f0e770d1a50..00000000000 --- a/.riot/requirements/1e8bc53.txt +++ /dev/null @@ -1,43 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1e8bc53.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==22.10.2 -greenlet==2.0.2 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -redis==3.5.3 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1ea8d2b.txt b/.riot/requirements/1ea8d2b.txt deleted file mode 100644 index c95826373e8..00000000000 --- a/.riot/requirements/1ea8d2b.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1ea8d2b.in -# -attrs==22.2.0 -coverage[toml]==6.2 -decorator==5.1.1 -dogpile.cache==0.9.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1ec2d84.txt b/.riot/requirements/1ec2d84.txt deleted file mode 100644 index ba9a69e209d..00000000000 --- a/.riot/requirements/1ec2d84.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1ec2d84.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -mongoengine==0.19.1 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymongo==3.13.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1ee4244.txt b/.riot/requirements/1ee4244.txt deleted file mode 100644 index e8ea0cf3fb0..00000000000 --- a/.riot/requirements/1ee4244.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1ee4244.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -tornado==4.5.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1f0166c.txt b/.riot/requirements/1f0166c.txt deleted file mode 100644 index e8e3b63be25..00000000000 --- a/.riot/requirements/1f0166c.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1f0166c.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch==7.6.0 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1f0ba34.txt b/.riot/requirements/1f0ba34.txt deleted file mode 100644 index 39582482a15..00000000000 --- a/.riot/requirements/1f0ba34.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1f0ba34.in -# -attrs==22.2.0 -coverage[toml]==6.2 -django==2.2.28 -djangorestframework==3.12.4 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-django==3.10.0 -pytest-mock==3.6.1 -pytz==2022.7.1 -sortedcontainers==2.4.0 -sqlparse==0.4.3 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1f229cc.txt b/.riot/requirements/1f229cc.txt deleted file mode 100644 index ef183258c0f..00000000000 --- a/.riot/requirements/1f229cc.txt +++ /dev/null @@ -1,34 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1f229cc.in -# -aiohttp==2.3.10 -async-timeout==3.0.1 -attrs==22.1.0 -chardet==4.0.0 -coverage==5.5 -hypothesis==5.33.2 -idna-ssl==1.1.0 -idna==3.4 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -multidict==5.0.2 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-aiohttp==0.3.0 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing-extensions==3.10.0.2 -yarl==1.6.0 -zipp==1.2.0 diff --git a/.riot/requirements/1f49501.txt b/.riot/requirements/1f49501.txt deleted file mode 100644 index bad5f2542c4..00000000000 --- a/.riot/requirements/1f49501.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1f49501.in -# -attrs==20.1.0 -coverage[toml]==6.2 -httpretty==0.9.7 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -structlog==21.5.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1f50f3b.txt b/.riot/requirements/1f50f3b.txt deleted file mode 100644 index 70f8e772877..00000000000 --- a/.riot/requirements/1f50f3b.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1f50f3b.in -# -aiopg==0.16.0 -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -psycopg2-binary==2.8.6 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -sqlalchemy==1.3.24 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1f5413f.txt b/.riot/requirements/1f5413f.txt deleted file mode 100644 index ada1523e337..00000000000 --- a/.riot/requirements/1f5413f.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1f5413f.in -# -amqp==2.6.1 -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -kombu==4.0.2 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -vine==1.3.0 -zipp==1.2.0 diff --git a/.riot/requirements/1f5b2ea.txt b/.riot/requirements/1f5b2ea.txt deleted file mode 100644 index e024037e1b6..00000000000 --- a/.riot/requirements/1f5b2ea.txt +++ /dev/null @@ -1,40 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1f5b2ea.in -# -amqp==2.6.1 -atomicwrites==1.4.1 -attrs==21.4.0 -billiard==3.6.4.0 -celery==4.4.7 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -kombu==4.6.11 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pytest-cov==2.3.0 -pytest-mock==2.0.0 -pytest==3.10.1 -pytz==2022.7.1 -redis==3.5.3 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -typing==3.10.0.0 -vine==1.3.0 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1f773c9.txt b/.riot/requirements/1f773c9.txt deleted file mode 100644 index 041e53b1d5d..00000000000 --- a/.riot/requirements/1f773c9.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1f773c9.in -# -attrs==22.2.0 -coverage[toml]==6.2 -googleapis-common-protos==1.56.3 -grpcio==1.34.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -protobuf==3.19.6 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/1f7ec7d.txt b/.riot/requirements/1f7ec7d.txt deleted file mode 100644 index 1cbb15c7034..00000000000 --- a/.riot/requirements/1f7ec7d.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1f7ec7d.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.5 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -httpretty==0.9.7 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing-extensions==3.10.0.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/1fa3a1c.txt b/.riot/requirements/1fa3a1c.txt deleted file mode 100644 index 2ca4a18e39f..00000000000 --- a/.riot/requirements/1fa3a1c.txt +++ /dev/null @@ -1,48 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1fa3a1c.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -click==7.1.2 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -flask==1.1.4 -funcsigs==1.0.2 -futures==3.4.0 -gunicorn==19.10.0 -httpretty==0.9.7 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -werkzeug==1.0.1 -zipp==1.2.0 diff --git a/.riot/requirements/1fa8691.txt b/.riot/requirements/1fa8691.txt deleted file mode 100644 index 04ab2f9071b..00000000000 --- a/.riot/requirements/1fa8691.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1fa8691.in -# -attrs==22.1.0 -coverage==5.5 -httpretty==0.9.7 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -structlog==20.1.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/1fd85ac.txt b/.riot/requirements/1fd85ac.txt deleted file mode 100644 index 3e9f253dbfd..00000000000 --- a/.riot/requirements/1fd85ac.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1fd85ac.in -# -attrs==22.1.0 -coverage==5.5 -elasticsearch2==2.5.1 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/1fe2085.txt b/.riot/requirements/1fe2085.txt deleted file mode 100644 index 8dc6079b025..00000000000 --- a/.riot/requirements/1fe2085.txt +++ /dev/null @@ -1,47 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1fe2085.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -docutils==0.18.1 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==22.10.2 -greenlet==2.0.2 -gunicorn[gevent]==19.10.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -statistics==1.0.3.5 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/1fe2d2d.txt b/.riot/requirements/1fe2d2d.txt deleted file mode 100644 index 466114b88e0..00000000000 --- a/.riot/requirements/1fe2d2d.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/1fe2d2d.in -# -asgiref==3.4.1 -attrs==22.2.0 -coverage[toml]==6.2 -django==3.2.18 -django-hosts==4.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-django==3.10.0 -pytest-mock==3.6.1 -pytz==2022.7.1 -sortedcontainers==2.4.0 -sqlparse==0.4.3 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/20babc9.txt b/.riot/requirements/20babc9.txt deleted file mode 100644 index 01d3fa01b61..00000000000 --- a/.riot/requirements/20babc9.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/20babc9.in -# -aioredis==1.3.1 -async-timeout==4.0.2 -attrs==22.2.0 -coverage[toml]==6.2 -hiredis==2.0.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.1.0 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/20bb52a.txt b/.riot/requirements/20bb52a.txt deleted file mode 100644 index 2a11b47b524..00000000000 --- a/.riot/requirements/20bb52a.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/20bb52a.in -# -attrs==22.2.0 -certifi==2022.12.7 -coverage[toml]==6.2 -elasticsearch7==7.11.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/235872a.txt b/.riot/requirements/235872a.txt deleted file mode 100644 index c267f170aea..00000000000 --- a/.riot/requirements/235872a.txt +++ /dev/null @@ -1,60 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/235872a.in -# -asgiref==3.3.1 -attrs==22.1.0 -autobahn==20.7.1 -automat==22.10.0 -certifi==2021.10.8 -cffi==1.15.1 -chardet==4.0.0 -constantly==15.1.0 -coverage==5.5 -cryptography==3.2.1 -daphne==2.5.0 -django-pylibmc==0.6.1 -django-redis==4.5.0 -django==2.2.28 -hyperlink==21.0.0 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -incremental==22.10.0 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -psycopg2-binary==2.8.6 -py==1.11.0 -pyasn1-modules==0.2.8 -pyasn1==0.4.8 -pycparser==2.21 -pylibmc==1.6.1 -pyopenssl==20.0.1 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-django==3.10.0 -pytest-mock==3.5.1 -pytest==6.1.2 -python-memcached==1.59 -pytz==2022.7.1 -redis==2.10.6 -requests==2.25.1 -service-identity==21.1.0 -six==1.16.0 -sortedcontainers==2.4.0 -sqlparse==0.4.3 -toml==0.10.2 -twisted[tls]==21.2.0 -txaio==20.4.1 -urllib3==1.26.9 -zipp==1.2.0 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/2680f97.txt b/.riot/requirements/2680f97.txt deleted file mode 100644 index dcab6dc4e44..00000000000 --- a/.riot/requirements/2680f97.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/2680f97.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==22.10.2 -greenlet==2.0.2 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/27cdb43.txt b/.riot/requirements/27cdb43.txt deleted file mode 100644 index 1dd574518aa..00000000000 --- a/.riot/requirements/27cdb43.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/27cdb43.in -# -algoliasearch==2.6.3 -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/28789d5.txt b/.riot/requirements/28789d5.txt deleted file mode 100644 index 017828b67df..00000000000 --- a/.riot/requirements/28789d5.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/28789d5.in -# -atomicwrites==1.4.1 -attrs==20.1.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -httpretty==0.9.7 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -structlog==20.1.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/29ec5af.txt b/.riot/requirements/29ec5af.txt deleted file mode 100644 index 9889d2a2239..00000000000 --- a/.riot/requirements/29ec5af.txt +++ /dev/null @@ -1,24 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/29ec5af.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/2a191e8.txt b/.riot/requirements/2a191e8.txt deleted file mode 100644 index aed78db4ad0..00000000000 --- a/.riot/requirements/2a191e8.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/2a191e8.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyodbc==4.0.35 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/2b73c7c.txt b/.riot/requirements/2b73c7c.txt deleted file mode 100644 index 549a55cc61f..00000000000 --- a/.riot/requirements/2b73c7c.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/2b73c7c.in -# -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opensearch-py[requests]==2.0.1 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/2c2d066.txt b/.riot/requirements/2c2d066.txt deleted file mode 100644 index a622a7fd2f7..00000000000 --- a/.riot/requirements/2c2d066.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/2c2d066.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/2ca8834.txt b/.riot/requirements/2ca8834.txt deleted file mode 100644 index 5327f6f0e8c..00000000000 --- a/.riot/requirements/2ca8834.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/2ca8834.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymysql==1.0.2 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/2d6d58d.txt b/.riot/requirements/2d6d58d.txt deleted file mode 100644 index 38a96200242..00000000000 --- a/.riot/requirements/2d6d58d.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/2d6d58d.in -# -attrs==22.2.0 -coverage[toml]==6.2 -greenlet==2.0.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mysql-connector-python==8.0.23 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -protobuf==3.19.6 -psycopg2-binary==2.8.6 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -sqlalchemy==1.4.46 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/2daf2ec.txt b/.riot/requirements/2daf2ec.txt deleted file mode 100644 index 60bd78cddb6..00000000000 --- a/.riot/requirements/2daf2ec.txt +++ /dev/null @@ -1,49 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/2daf2ec.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -botocore==1.17.30 -certifi==2021.10.8 -chardet==3.0.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -docutils==0.15.2 -elasticsearch==7.17.9 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==1.3.7 -greenlet==1.1.3.post0 -hypothesis==4.57.1 -idna==2.7 -importlib-metadata==2.1.3 -jmespath==0.10.0 -mock==3.0.5 -more-itertools==5.0.0 -opensearch-py==1.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pynamodb==4.4.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -python-dateutil==2.8.2 -requests==2.20.0 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.24.3 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/2ec4309.txt b/.riot/requirements/2ec4309.txt deleted file mode 100644 index db0d92897d0..00000000000 --- a/.riot/requirements/2ec4309.txt +++ /dev/null @@ -1,73 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/2ec4309.in -# -attrs==22.2.0 -aws-sam-translator==1.42.0 -aws-xray-sdk==2.11.0 -boto==2.49.0 -boto3==1.23.10 -botocore==1.26.10 -certifi==2022.12.7 -cffi==1.15.1 -cfn-lint==0.53.1 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -cryptography==39.0.2 -dataclasses==0.8 -decorator==4.4.2 -docker==5.0.3 -ecdsa==0.14.1 -hypothesis==6.31.6 -idna==2.10 -importlib-metadata==4.8.3 -importlib-resources==3.3.1 -iniconfig==1.1.1 -jinja2==2.11.3 -jmespath==0.10.0 -jsondiff==2.0.0 -jsonpatch==1.32 -jsonpointer==2.3 -jsonschema==3.2.0 -junit-xml==1.9 -markupsafe==1.1.1 -mock==5.0.1 -more-itertools==8.14.0 -moto==1.3.16 -networkx==2.5.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyasn1==0.4.8 -pycparser==2.21 -pynamodb==5.4.1 -pyparsing==3.0.9 -pyrsistent==0.18.0 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -python-jose[cryptography]==3.3.0 -pytz==2022.7.1 -pyyaml==6.0 -requests==2.27.1 -responses==0.17.0 -rsa==4.9 -s3transfer==0.5.2 -six==1.16.0 -sortedcontainers==2.4.0 -sshpubkeys==3.3.1 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -websocket-client==1.3.1 -werkzeug==2.0.3 -wrapt==1.15.0 -xmltodict==0.13.0 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/321fa86.txt b/.riot/requirements/321fa86.txt deleted file mode 100644 index 952dbdd7217..00000000000 --- a/.riot/requirements/321fa86.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/321fa86.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports-abc==0.5 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -singledispatch==3.7.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -tornado==4.5.3 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/3588049.txt b/.riot/requirements/3588049.txt deleted file mode 100644 index 328bcba40b9..00000000000 --- a/.riot/requirements/3588049.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/3588049.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -beautifulsoup4==4.9.3 -bottle==0.12.25 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -soupsieve==1.9.6 -toml==0.10.2 -typing==3.10.0.0 -waitress==1.4.4 -wcwidth==0.2.6 -webob==1.8.7 -webtest==2.0.35 -zipp==1.2.0 diff --git a/.riot/requirements/36719ce.txt b/.riot/requirements/36719ce.txt deleted file mode 100644 index 0e9c604f7e5..00000000000 --- a/.riot/requirements/36719ce.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/36719ce.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -mongoengine==0.22.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymongo==3.13.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/393ea7d.txt b/.riot/requirements/393ea7d.txt deleted file mode 100644 index d6e21c3212b..00000000000 --- a/.riot/requirements/393ea7d.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/393ea7d.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pylibmc==1.6.1 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/3947a56.txt b/.riot/requirements/3947a56.txt deleted file mode 100644 index 378574da93d..00000000000 --- a/.riot/requirements/3947a56.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/3947a56.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -redis==3.0.1 -redis-py-cluster==2.0.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/39f6534.txt b/.riot/requirements/39f6534.txt deleted file mode 100644 index c068d8b6022..00000000000 --- a/.riot/requirements/39f6534.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/39f6534.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/3a07563.txt b/.riot/requirements/3a07563.txt deleted file mode 100644 index 56131dc7082..00000000000 --- a/.riot/requirements/3a07563.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/3a07563.in -# -aiohttp==3.8.4 -aiohttp-jinja2==1.5 -aiosignal==1.2.0 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -frozenlist==1.2.0 -hypothesis==6.31.6 -idna==3.4 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.1 -multidict==5.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-aiohttp==0.3.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/3a6bd09.txt b/.riot/requirements/3a6bd09.txt deleted file mode 100644 index 08d872c66b8..00000000000 --- a/.riot/requirements/3a6bd09.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/3a6bd09.in -# -attrs==22.2.0 -coverage[toml]==6.2 -googleapis-common-protos==1.56.3 -grpcio==1.48.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -protobuf==3.19.6 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/3aac331.txt b/.riot/requirements/3aac331.txt deleted file mode 100644 index c6da0ac068f..00000000000 --- a/.riot/requirements/3aac331.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/3aac331.in -# -attrs==22.2.0 -certifi==2022.12.7 -coverage[toml]==6.2 -elasticsearch==1.6.0 -elasticsearch6==6.8.2 -elasticsearch7==7.13.4 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/3cef6c0.txt b/.riot/requirements/3cef6c0.txt deleted file mode 100644 index 21ce6d3a621..00000000000 --- a/.riot/requirements/3cef6c0.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/3cef6c0.in -# -aiohttp==3.8.4 -aiohttp-jinja2==1.5 -aiosignal==1.2.0 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -frozenlist==1.2.0 -hypothesis==6.31.6 -idna==3.4 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.1 -multidict==5.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-aiohttp==0.3.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/16a7863.txt b/.riot/requirements/3e8d84b.txt similarity index 75% rename from .riot/requirements/16a7863.txt rename to .riot/requirements/3e8d84b.txt index 228d1e051c3..52e11e3ddb8 100644 --- a/.riot/requirements/16a7863.txt +++ b/.riot/requirements/3e8d84b.txt @@ -2,16 +2,17 @@ # This file is autogenerated by pip-compile with Python 3.8 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/16a7863.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/3e8d84b.in # attrs==23.1.0 coverage[toml]==7.2.7 exceptiongroup==1.1.2 +glob2==0.7 hypothesis==6.45.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 @@ -19,11 +20,11 @@ packaging==23.1 parse==1.19.1 parse-type==0.6.2 pluggy==1.2.0 +py==1.11.0 pytest==7.4.0 -pytest-bdd==6.1.1 +pytest-bdd==6.0.1 pytest-cov==4.1.0 pytest-mock==3.11.1 six==1.16.0 sortedcontainers==2.4.0 tomli==2.0.1 -typing-extensions==4.7.1 diff --git a/.riot/requirements/3ef3f2b.txt b/.riot/requirements/3ef3f2b.txt deleted file mode 100644 index c728566ee5b..00000000000 --- a/.riot/requirements/3ef3f2b.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/3ef3f2b.in -# -aniso8601==9.0.1 -attrs==22.2.0 -coverage[toml]==6.2 -graphene==3.2.2 -graphql-core==3.1.7 -graphql-relay==3.1.5 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/3f6a629.txt b/.riot/requirements/3f6a629.txt deleted file mode 100644 index d53882a9f2d..00000000000 --- a/.riot/requirements/3f6a629.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/3f6a629.in -# -attrs==22.2.0 -coverage[toml]==6.2 -elasticsearch==7.6.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/3f9f388.txt b/.riot/requirements/3f9f388.txt deleted file mode 100644 index a44be852c56..00000000000 --- a/.riot/requirements/3f9f388.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/3f9f388.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -future==0.18.3 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -python-dateutil==2.8.2 -pytz==2022.7.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -vertica-python==0.7.4 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/41a8030.txt b/.riot/requirements/41a8030.txt deleted file mode 100644 index 210759b7e63..00000000000 --- a/.riot/requirements/41a8030.txt +++ /dev/null @@ -1,33 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/41a8030.in -# -attrs==22.1.0 -coverage==5.5 -gevent==22.10.2 -greenlet==2.0.2 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -redis==3.5.3 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/42841f0.txt b/.riot/requirements/42841f0.txt deleted file mode 100644 index ae733f5e9ed..00000000000 --- a/.riot/requirements/42841f0.txt +++ /dev/null @@ -1,61 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/42841f0.in -# -asgiref==3.4.1 -attrs==22.2.0 -autobahn==21.2.1 -automat==22.10.0 -certifi==2022.12.7 -cffi==1.15.1 -channels==3.0.4 -charset-normalizer==2.0.12 -constantly==15.1.0 -coverage[toml]==6.2 -cryptography==39.0.2 -daphne==3.0.2 -django==3.2.18 -django-pylibmc==0.6.1 -django-redis==4.5.0 -hyperlink==21.0.0 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -incremental==22.10.0 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -psycopg2-binary==2.9.5 -py==1.11.0 -pyasn1==0.4.8 -pyasn1-modules==0.2.8 -pycparser==2.21 -pylibmc==1.6.3 -pyopenssl==23.0.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-django==3.10.0 -pytest-mock==3.6.1 -python-memcached==1.59 -pytz==2022.7.1 -redis==2.10.6 -requests==2.27.1 -service-identity==21.1.0 -six==1.16.0 -sortedcontainers==2.4.0 -sqlparse==0.4.3 -tomli==1.2.3 -twisted[tls]==22.4.0 -txaio==22.2.1 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/43cbf74.txt b/.riot/requirements/43cbf74.txt deleted file mode 100644 index c2c382afa97..00000000000 --- a/.riot/requirements/43cbf74.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/43cbf74.in -# -attrs==22.1.0 -boto==2.49.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -httpretty==0.8.10 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -moto==0.4.31 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-dateutil==2.8.2 -pytz==2022.7.1 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -werkzeug==1.0.1 -xmltodict==0.13.0 -zipp==1.2.0 diff --git a/.riot/requirements/16bf107.txt b/.riot/requirements/4654b0c.txt similarity index 75% rename from .riot/requirements/16bf107.txt rename to .riot/requirements/4654b0c.txt index f0172b190c5..67c1d78a9dc 100644 --- a/.riot/requirements/16bf107.txt +++ b/.riot/requirements/4654b0c.txt @@ -2,17 +2,18 @@ # This file is autogenerated by pip-compile with Python 3.7 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/16bf107.in +# pip-compile --config=pyproject.toml --no-annotate --resolver=backtracking .riot/requirements/4654b0c.in # attrs==23.1.0 coverage[toml]==7.2.7 exceptiongroup==1.1.2 +glob2==0.7 hypothesis==6.45.0 importlib-metadata==6.7.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 @@ -20,8 +21,9 @@ packaging==23.1 parse==1.19.1 parse-type==0.6.2 pluggy==1.2.0 +py==1.11.0 pytest==7.4.0 -pytest-bdd==6.1.1 +pytest-bdd==6.0.1 pytest-cov==4.1.0 pytest-mock==3.11.1 six==1.16.0 diff --git a/.riot/requirements/467b148.txt b/.riot/requirements/467b148.txt deleted file mode 100644 index e9579ef1157..00000000000 --- a/.riot/requirements/467b148.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/467b148.in -# -attrs==22.1.0 -cassandra-driver==3.25.0 -click==7.1.2 -coverage==5.5 -geomet==0.2.1.post1 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/4794fad.txt b/.riot/requirements/4794fad.txt deleted file mode 100644 index d23c5d21cb9..00000000000 --- a/.riot/requirements/4794fad.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/4794fad.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -redis==3.5.3 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/4797e24.txt b/.riot/requirements/4797e24.txt deleted file mode 100644 index 43c5aadbd25..00000000000 --- a/.riot/requirements/4797e24.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/4797e24.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.0 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/48697dc.txt b/.riot/requirements/48697dc.txt deleted file mode 100644 index c1bbf71b9b6..00000000000 --- a/.riot/requirements/48697dc.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/48697dc.in -# -attrs==22.2.0 -blinker==1.5 -certifi==2022.12.7 -charset-normalizer==2.0.12 -click==7.1.2 -coverage[toml]==6.2 -flask==1.1.4 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -werkzeug==1.0.1 -zipp==3.6.0 diff --git a/.riot/requirements/49894f1.txt b/.riot/requirements/49894f1.txt deleted file mode 100644 index e8dfb32f295..00000000000 --- a/.riot/requirements/49894f1.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/49894f1.in -# -attrs==22.1.0 -cheroot==8.6.0 -cherrypy==17.4.2 -contextlib2==0.6.0.post1 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -jaraco.functools==2.0 -mock==3.0.5 -more-itertools==8.10.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -portend==2.6 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -pytz==2023.3 -six==1.16.0 -sortedcontainers==2.4.0 -tempora==1.14.1 -toml==0.10.2 -typing-extensions==3.10.0.2 -zc.lockfile==2.0 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/4bd0ea6.txt b/.riot/requirements/4bd0ea6.txt deleted file mode 100644 index c45060f3694..00000000000 --- a/.riot/requirements/4bd0ea6.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/4bd0ea6.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mongoengine==0.24.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymongo==3.13.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/4c293bc.txt b/.riot/requirements/4c293bc.txt deleted file mode 100644 index 23a3d4976f2..00000000000 --- a/.riot/requirements/4c293bc.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/4c293bc.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/4febdac.txt b/.riot/requirements/4febdac.txt deleted file mode 100644 index 69da1e1eb8b..00000000000 --- a/.riot/requirements/4febdac.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/4febdac.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch==7.8.1 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/5032de5.txt b/.riot/requirements/5032de5.txt deleted file mode 100644 index 67feef63024..00000000000 --- a/.riot/requirements/5032de5.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/5032de5.in -# -attrs==22.1.0 -certifi==2021.10.8 -coverage==5.5 -elasticsearch6==6.8.2 -elasticsearch7==7.13.4 -elasticsearch==1.6.0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/506d536.txt b/.riot/requirements/506d536.txt deleted file mode 100644 index 6cd821c741c..00000000000 --- a/.riot/requirements/506d536.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/506d536.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -py-cpuinfo==8.0.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-benchmark==3.4.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/52f2033.txt b/.riot/requirements/52f2033.txt deleted file mode 100644 index 2cc6adf5f5a..00000000000 --- a/.riot/requirements/52f2033.txt +++ /dev/null @@ -1,50 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/52f2033.in -# -asn1crypto==1.5.1 -attrs==22.1.0 -azure-common==1.1.28 -azure-storage-blob==2.1.0 -azure-storage-common==2.1.0 -boto3==1.14.63 -botocore==1.17.63 -certifi==2020.12.5 -cffi==1.14.6 -chardet==3.0.4 -coverage==5.5 -cryptography==2.9.2 -docutils==0.15.2 -hypothesis==5.33.2 -idna==2.9 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -jmespath==0.10.0 -mock==3.0.5 -opentracing==2.4.0 -oscrypto==1.3.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pycparser==2.21 -pycryptodomex==3.17 -pyjwt==1.7.1 -pyopenssl==19.1.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-dateutil==2.8.2 -pytz==2020.5 -requests==2.23.0 -responses==0.16.0 -s3transfer==0.3.7 -six==1.16.0 -snowflake-connector-python==2.2.10 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.25.11 -zipp==1.2.0 diff --git a/.riot/requirements/531e0ab.txt b/.riot/requirements/531e0ab.txt deleted file mode 100644 index b7c603c03ad..00000000000 --- a/.riot/requirements/531e0ab.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/531e0ab.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -tornado==4.5.3 -zipp==1.2.0 diff --git a/.riot/requirements/54ab77e.txt b/.riot/requirements/54ab77e.txt deleted file mode 100644 index fa8a715fb4e..00000000000 --- a/.riot/requirements/54ab77e.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/54ab77e.in -# -attrs==22.2.0 -coverage[toml]==6.2 -future==0.18.3 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -pytz==2022.7.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -vertica-python==0.6.14 -zipp==3.6.0 diff --git a/.riot/requirements/56c383e.txt b/.riot/requirements/56c383e.txt deleted file mode 100644 index b6fa7ebf7bd..00000000000 --- a/.riot/requirements/56c383e.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/56c383e.in -# -async-timeout==4.0.2 -attrs==22.2.0 -click==7.1.2 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -redis==4.3.5 -rq==1.8.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/5703f02.txt b/.riot/requirements/5703f02.txt deleted file mode 100644 index 776f927b9d4..00000000000 --- a/.riot/requirements/5703f02.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/5703f02.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/58981a6.txt b/.riot/requirements/58981a6.txt deleted file mode 100644 index a6b04790c1c..00000000000 --- a/.riot/requirements/58981a6.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/58981a6.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/58dadb5.txt b/.riot/requirements/58dadb5.txt deleted file mode 100644 index fa2d3268141..00000000000 --- a/.riot/requirements/58dadb5.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/58dadb5.in -# -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-consul==1.1.0 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/591784b.txt b/.riot/requirements/591784b.txt deleted file mode 100644 index 2c756895a1b..00000000000 --- a/.riot/requirements/591784b.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/591784b.in -# -aioredis==2.0.1 -async-timeout==4.0.2 -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.1.0 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/592c859.txt b/.riot/requirements/592c859.txt deleted file mode 100644 index 60c0b3e3adf..00000000000 --- a/.riot/requirements/592c859.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/592c859.in -# -attrs==22.2.0 -coverage[toml]==6.2 -elasticsearch6==6.8.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/59b7da6.txt b/.riot/requirements/59b7da6.txt deleted file mode 100644 index 01caf0b6b53..00000000000 --- a/.riot/requirements/59b7da6.txt +++ /dev/null @@ -1,40 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/59b7da6.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch6==6.8.2 -elasticsearch7==7.13.4 -elasticsearch==1.6.0 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/5c822e4.txt b/.riot/requirements/5c822e4.txt deleted file mode 100644 index 44c682b6093..00000000000 --- a/.riot/requirements/5c822e4.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/5c822e4.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/5ca8cc5.txt b/.riot/requirements/5ca8cc5.txt deleted file mode 100644 index 0c256c4af51..00000000000 --- a/.riot/requirements/5ca8cc5.txt +++ /dev/null @@ -1,44 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/5ca8cc5.in -# -aiobotocore==1.4.2 -aiohttp==3.8.4 -aioitertools==0.11.0 -aiosignal==1.2.0 -async-generator==1.10 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -botocore==1.20.106 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -frozenlist==1.2.0 -hypothesis==6.31.6 -idna==3.4 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jmespath==0.10.0 -mock==5.0.1 -multidict==5.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -wrapt==1.15.0 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/5d58358.txt b/.riot/requirements/5d58358.txt deleted file mode 100644 index d6404db260b..00000000000 --- a/.riot/requirements/5d58358.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/5d58358.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -py-cpuinfo==8.0.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-benchmark==3.4.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/5d8784a.txt b/.riot/requirements/5d8784a.txt deleted file mode 100644 index eea6395edf3..00000000000 --- a/.riot/requirements/5d8784a.txt +++ /dev/null @@ -1,68 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/5d8784a.in -# -asn1crypto==1.5.1 -atomicwrites==1.4.1 -attrs==21.4.0 -azure-common==1.1.28 -azure-nspkg==3.0.2 -azure-storage-blob==2.1.0 -azure-storage-common==2.1.0 -azure-storage-nspkg==3.1.0 -backports.functools-lru-cache==1.6.4 -boto3==1.10.50 -botocore==1.13.50 -certifi==2020.12.5 -cffi==1.13.2 -chardet==3.0.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -cookies==2.2.1 -coverage==5.5 -cryptography==2.9.2 -docutils==0.15.2 -enum34==1.1.10 -funcsigs==1.0.2 -future==0.18.3 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.8 -ijson==2.6.1 -importlib-metadata==2.1.3 -ipaddress==1.0.23 -jmespath==0.10.0 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -oscrypto==1.3.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyasn1-modules==0.2.8 -pyasn1==0.4.8 -pycparser==2.21 -pycryptodomex==3.17 -pyjwt==1.7.1 -pyopenssl==19.1.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -python-dateutil==2.8.2 -pytz==2020.5 -requests==2.22.0 -responses==0.16.0 -s3transfer==0.2.1 -scandir==1.10.0 -six==1.16.0 -snowflake-connector-python==2.1.3 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.25.11 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/5f76d2e.txt b/.riot/requirements/5f76d2e.txt deleted file mode 100644 index acac0754b16..00000000000 --- a/.riot/requirements/5f76d2e.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/5f76d2e.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyodbc==4.0.32 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/5f884ac.txt b/.riot/requirements/5f884ac.txt deleted file mode 100644 index e59d0c25c51..00000000000 --- a/.riot/requirements/5f884ac.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/5f884ac.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -redis-py-cluster==2.1.3 -redis==3.5.3 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/5f957c6.txt b/.riot/requirements/5f957c6.txt deleted file mode 100644 index 2dcf9f5554a..00000000000 --- a/.riot/requirements/5f957c6.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/5f957c6.in -# -algoliasearch==2.6.3 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/61fdfc7.txt b/.riot/requirements/61fdfc7.txt deleted file mode 100644 index 137fda2b088..00000000000 --- a/.riot/requirements/61fdfc7.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/61fdfc7.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyodbc==4.0.32 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/6333663.txt b/.riot/requirements/6333663.txt deleted file mode 100644 index 05f43aa42d6..00000000000 --- a/.riot/requirements/6333663.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/6333663.in -# -aredis==1.1.8 -attrs==22.2.0 -contextvars==2.4 -coverage[toml]==6.2 -hypothesis==6.31.6 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/6375103.txt b/.riot/requirements/6375103.txt deleted file mode 100644 index ca96d8f926f..00000000000 --- a/.riot/requirements/6375103.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/6375103.in -# -async-timeout==4.0.2 -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -redis==4.3.5 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/63792e1.txt b/.riot/requirements/63792e1.txt deleted file mode 100644 index 6b49f56b8e8..00000000000 --- a/.riot/requirements/63792e1.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/63792e1.in -# -anyio==3.6.2 -async-generator==1.10 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==3.0.1 -contextvars==2.4 -coverage[toml]==6.2 -dataclasses==0.8 -h11==0.12.0 -httpcore==0.14.7 -httpx==0.22.0 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/641ed2d.txt b/.riot/requirements/641ed2d.txt deleted file mode 100644 index 65d928e3ccf..00000000000 --- a/.riot/requirements/641ed2d.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/641ed2d.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/650199a.txt b/.riot/requirements/650199a.txt deleted file mode 100644 index 5d8aa72a93f..00000000000 --- a/.riot/requirements/650199a.txt +++ /dev/null @@ -1,34 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/650199a.in -# -aiohttp==3.6.3 -async-timeout==3.0.1 -attrs==22.1.0 -chardet==3.0.4 -coverage==5.5 -hypothesis==5.33.2 -idna-ssl==1.1.0 -idna==3.4 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -multidict==4.7.6 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-aiohttp==0.3.0 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing-extensions==3.10.0.2 -yarl==1.5.1 -zipp==1.2.0 diff --git a/.riot/requirements/668e3d9.txt b/.riot/requirements/668e3d9.txt deleted file mode 100644 index 618f6dde0d2..00000000000 --- a/.riot/requirements/668e3d9.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/668e3d9.in -# -attrs==22.2.0 -coverage[toml]==6.2 -graphql-core==3.1.7 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/66f26ac.txt b/.riot/requirements/66f26ac.txt deleted file mode 100644 index 3efab4eee56..00000000000 --- a/.riot/requirements/66f26ac.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/66f26ac.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyodbc==4.0.35 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/6703ac7.txt b/.riot/requirements/6703ac7.txt deleted file mode 100644 index ec148a245e3..00000000000 --- a/.riot/requirements/6703ac7.txt +++ /dev/null @@ -1,49 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/6703ac7.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -boto==2.49.0 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -httpretty==0.8.10 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -moto==0.4.31 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -python-dateutil==2.8.2 -pytz==2022.7.1 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -werkzeug==1.0.1 -xmltodict==0.12.0 -zipp==1.2.0 diff --git a/.riot/requirements/67c2095.txt b/.riot/requirements/67c2095.txt deleted file mode 100644 index 12ff1a1140a..00000000000 --- a/.riot/requirements/67c2095.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/67c2095.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/68f989f.txt b/.riot/requirements/68f989f.txt deleted file mode 100644 index 7737f9dfa86..00000000000 --- a/.riot/requirements/68f989f.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/68f989f.in -# -attrs==22.2.0 -coverage[toml]==6.2 -httpretty==0.9.7 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -structlog==21.5.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/691f5cf.txt b/.riot/requirements/691f5cf.txt deleted file mode 100644 index a9b71ef7359..00000000000 --- a/.riot/requirements/691f5cf.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/691f5cf.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/6928b69.txt b/.riot/requirements/6928b69.txt deleted file mode 100644 index 588c33eb7cf..00000000000 --- a/.riot/requirements/6928b69.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/6928b69.in -# -anyio==3.6.2 -asgiref==3.4.1 -async-generator==1.10 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==3.0.1 -contextvars==2.4 -coverage[toml]==6.2 -dataclasses==0.8 -h11==0.12.0 -httpcore==0.14.7 -httpx==0.22.0 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/6aba7fe.txt b/.riot/requirements/6aba7fe.txt deleted file mode 100644 index 9b15ec11a53..00000000000 --- a/.riot/requirements/6aba7fe.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/6aba7fe.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/6b9e3f4.txt b/.riot/requirements/6b9e3f4.txt deleted file mode 100644 index 9cdf5c66ebb..00000000000 --- a/.riot/requirements/6b9e3f4.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/6b9e3f4.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mongoengine==0.24.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymongo==3.13.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/6ce67d8.txt b/.riot/requirements/6ce67d8.txt deleted file mode 100644 index 7472a019590..00000000000 --- a/.riot/requirements/6ce67d8.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/6ce67d8.in -# -algoliasearch==2.6.3 -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pyrsistent==0.14.11 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/6fb1ca5.txt b/.riot/requirements/6fb1ca5.txt deleted file mode 100644 index 7e100c9b7f4..00000000000 --- a/.riot/requirements/6fb1ca5.txt +++ /dev/null @@ -1,33 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/6fb1ca5.in -# -async-timeout==4.0.2 -attrs==22.2.0 -coverage[toml]==6.2 -gevent==22.10.2 -greenlet==2.0.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -redis==4.3.5 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/70071f1.txt b/.riot/requirements/70071f1.txt deleted file mode 100644 index d067118fa09..00000000000 --- a/.riot/requirements/70071f1.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/70071f1.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/706d49b.txt b/.riot/requirements/706d49b.txt deleted file mode 100644 index abb9dd242ae..00000000000 --- a/.riot/requirements/706d49b.txt +++ /dev/null @@ -1,71 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/706d49b.in -# -asgiref==3.2.3 -atomicwrites==1.4.1 -attrs==21.4.0 -autobahn==19.11.2 -automat==22.10.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -cffi==1.15.1 -chardet==4.0.0 -configparser==4.0.2 -constantly==15.1.0 -contextlib2==0.6.0.post1 -coverage==5.5 -cryptography==3.3.2 -daphne==2.5.0 -django-pylibmc==0.6.1 -django-redis==4.5.0 -django==1.11.29 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hyperlink==21.0.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -incremental==22.10.0 -ipaddress==1.0.23 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -psycopg2-binary==2.8.6 -py==1.11.0 -pyasn1-modules==0.2.8 -pyasn1==0.4.8 -pycparser==2.21 -pyhamcrest==1.10.1 -pylibmc==1.6.1 -pyopenssl==21.0.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-django==3.10.0 -pytest-mock==2.0.0 -pytest==4.6.11 -python-memcached==1.59 -pytz==2022.7.1 -redis==2.10.6 -requests==2.27.1 -scandir==1.10.0 -service-identity==21.1.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -twisted[tls]==20.3.0 -txaio==18.8.1 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/71c9e2e.txt b/.riot/requirements/71c9e2e.txt deleted file mode 100644 index 7bdbf6f9e11..00000000000 --- a/.riot/requirements/71c9e2e.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/71c9e2e.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-consul==1.1.0 -requests==2.27.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/16a9c86.txt b/.riot/requirements/72a8638.txt similarity index 75% rename from .riot/requirements/16a9c86.txt rename to .riot/requirements/72a8638.txt index 57470c350ed..7cfc64d20f0 100644 --- a/.riot/requirements/16a9c86.txt +++ b/.riot/requirements/72a8638.txt @@ -2,16 +2,17 @@ # This file is autogenerated by pip-compile with Python 3.9 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/16a9c86.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/72a8638.in # attrs==23.1.0 coverage[toml]==7.2.7 exceptiongroup==1.1.2 +glob2==0.7 hypothesis==6.45.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 @@ -19,11 +20,11 @@ packaging==23.1 parse==1.19.1 parse-type==0.6.2 pluggy==1.2.0 +py==1.11.0 pytest==7.4.0 -pytest-bdd==6.1.1 +pytest-bdd==6.0.1 pytest-cov==4.1.0 pytest-mock==3.11.1 six==1.16.0 sortedcontainers==2.4.0 tomli==2.0.1 -typing-extensions==4.7.1 diff --git a/.riot/requirements/736765e.txt b/.riot/requirements/736765e.txt deleted file mode 100644 index acd10e96f48..00000000000 --- a/.riot/requirements/736765e.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/736765e.in -# -asynctest==0.13.0 -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/737d2bb.txt b/.riot/requirements/737d2bb.txt deleted file mode 100644 index bae6c3d0c7f..00000000000 --- a/.riot/requirements/737d2bb.txt +++ /dev/null @@ -1,91 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/737d2bb.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -aws-sam-translator==1.42.0 -aws-xray-sdk==2.11.0 -backports.functools-lru-cache==1.6.4 -backports.ssl-match-hostname==3.7.0.1 -backports.tempfile==1.0 -backports.weakref==1.0.post1 -boto3==1.17.112 -boto==2.49.0 -botocore==1.20.112 -certifi==2021.10.8 -cffi==1.15.1 -cfn-lint==0.56.4 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -cookies==2.2.1 -coverage==5.5 -cryptography==3.3.2 -decorator==4.4.2 -docker==4.4.4 -ecdsa==0.14.1 -enum34==1.1.10 -funcsigs==1.0.2 -functools32==3.2.3.post2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -importlib-resources==3.3.1 -ipaddress==1.0.23 -jinja2==2.11.3 -jmespath==0.10.0 -jschema-to-python==1.2.3 -jsondiff==2.0.0 -jsonpatch==1.32 -jsonpickle==2.2.0 -jsonpointer==2.3 -jsonschema==3.2.0 -junit-xml==1.9 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -moto==1.3.16 -networkx==2.2 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pbr==5.11.1 -pluggy==0.13.1 -py==1.11.0 -pyasn1==0.4.8 -pycparser==2.21 -pyparsing==2.4.7 -pyrsistent==0.16.0 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -python-dateutil==2.8.2 -python-jose[cryptography]==3.1.0 -pytz==2022.7.1 -pyyaml==5.4.1 -requests==2.27.1 -responses==0.17.0 -rsa==4.5 -s3transfer==0.4.2 -sarif-om==1.0.4 -scandir==1.10.0 -singledispatch==3.7.0 -six==1.16.0 -sortedcontainers==2.4.0 -sshpubkeys==3.1.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -websocket-client==0.59.0 -werkzeug==1.0.1 -wrapt==1.15.0 -xmltodict==0.12.0 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/73a3180.txt b/.riot/requirements/73a3180.txt deleted file mode 100644 index ebe3fd6e1fc..00000000000 --- a/.riot/requirements/73a3180.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/73a3180.in -# -attrs==22.1.0 -coverage==5.5 -googleapis-common-protos==1.52.0 -grpcio==1.31.0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.19.6 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/73f9646.txt b/.riot/requirements/73f9646.txt deleted file mode 100644 index dd41f9af249..00000000000 --- a/.riot/requirements/73f9646.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/73f9646.in -# -attrs==22.2.0 -blinker==1.5 -click==8.0.4 -coverage[toml]==6.2 -dataclasses==0.8 -flask==1.0.4 -flask-caching==1.10.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-memcached==1.59 -redis==2.10.6 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -werkzeug==2.0.3 -zipp==3.6.0 diff --git a/.riot/requirements/7673685.txt b/.riot/requirements/7673685.txt deleted file mode 100644 index 07bf26831b8..00000000000 --- a/.riot/requirements/7673685.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/7673685.in -# -attrs==22.2.0 -coverage[toml]==6.2 -googleapis-common-protos==1.56.3 -grpcio==1.48.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -protobuf==3.19.6 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/7796bc9.txt b/.riot/requirements/7796bc9.txt deleted file mode 100644 index 137ec49d5e9..00000000000 --- a/.riot/requirements/7796bc9.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/7796bc9.in -# -attrs==22.2.0 -cheroot==9.0.0 -cherrypy==18.8.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -importlib-resources==5.4.0 -iniconfig==1.1.1 -jaraco.classes==3.2.1 -jaraco.collections==3.4.0 -jaraco.context==4.1.1 -jaraco.functools==3.4.0 -jaraco.text==3.7.0 -mock==5.0.1 -more-itertools==8.10.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -portend==3.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -pytz==2022.7.1 -six==1.16.0 -sortedcontainers==2.4.0 -tempora==4.1.2 -tomli==1.2.3 -typing-extensions==4.1.1 -zc.lockfile==2.0 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/7b69811.txt b/.riot/requirements/7b69811.txt deleted file mode 100644 index cbfb90a1981..00000000000 --- a/.riot/requirements/7b69811.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/7b69811.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/7c10e2b.txt b/.riot/requirements/7c10e2b.txt deleted file mode 100644 index 6a9090c216d..00000000000 --- a/.riot/requirements/7c10e2b.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/7c10e2b.in -# -attrs==22.2.0 -coverage[toml]==6.2 -elasticsearch2==2.5.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/7d7e032.txt b/.riot/requirements/7d7e032.txt deleted file mode 100644 index a0b108a0342..00000000000 --- a/.riot/requirements/7d7e032.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/7d7e032.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/7e20351.txt b/.riot/requirements/7e20351.txt deleted file mode 100644 index 2537179af62..00000000000 --- a/.riot/requirements/7e20351.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/7e20351.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -gevent==22.10.2 -greenlet==2.0.2 -gunicorn==20.1.0 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/819c9b9.txt b/.riot/requirements/819c9b9.txt deleted file mode 100644 index a7a7d5ebc4d..00000000000 --- a/.riot/requirements/819c9b9.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/819c9b9.in -# -attrs==22.1.0 -coverage==5.5 -django==2.2.28 -djangorestframework==3.12.4 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-django==3.10.0 -pytest-mock==3.5.1 -pytest==6.1.2 -pytz==2022.7.1 -six==1.16.0 -sortedcontainers==2.4.0 -sqlparse==0.4.3 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/81dc24c.txt b/.riot/requirements/81dc24c.txt deleted file mode 100644 index abbda2b8850..00000000000 --- a/.riot/requirements/81dc24c.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/81dc24c.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==1.2.2 -greenlet==1.1.3.post0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/8481bb8.txt b/.riot/requirements/8481bb8.txt deleted file mode 100644 index 7685963854b..00000000000 --- a/.riot/requirements/8481bb8.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/8481bb8.in -# -async-timeout==4.0.2 -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -redis==4.3.5 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/85d9b0f.txt b/.riot/requirements/85d9b0f.txt deleted file mode 100644 index a22b4a8a48c..00000000000 --- a/.riot/requirements/85d9b0f.txt +++ /dev/null @@ -1,24 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/85d9b0f.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/88a992e.txt b/.riot/requirements/88a992e.txt deleted file mode 100644 index bd467801d91..00000000000 --- a/.riot/requirements/88a992e.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/88a992e.in -# -async-timeout==4.0.2 -attrs==22.2.0 -click==7.1.2 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -redis==4.3.5 -rq==1.10.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/89c30de.txt b/.riot/requirements/89c30de.txt deleted file mode 100644 index 97b56262e14..00000000000 --- a/.riot/requirements/89c30de.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/89c30de.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymysql==0.10.1 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/89daa23.txt b/.riot/requirements/89daa23.txt deleted file mode 100644 index d107f6ea4c0..00000000000 --- a/.riot/requirements/89daa23.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/89daa23.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -mongoengine==0.24.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pymongo==3.13.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/8a20a52.txt b/.riot/requirements/8a20a52.txt index ca11b1fca09..f782196ec16 100644 --- a/.riot/requirements/8a20a52.txt +++ b/.riot/requirements/8a20a52.txt @@ -2,26 +2,23 @@ # This file is autogenerated by pip-compile with Python 3.11 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/8a20a52.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/8a20a52.in # attrs==23.1.0 coverage[toml]==7.2.7 -gunicorn==20.1.0 +gunicorn==21.2.0 hypothesis==6.45.0 iniconfig==2.0.0 -mock==5.0.2 +mock==5.1.0 opentracing==2.4.0 packaging==23.1 -pluggy==1.0.0 -protobuf==4.23.2 +pluggy==1.2.0 +protobuf==4.23.4 py-cpuinfo==8.0.0 -pytest==7.3.1 -pytest-asyncio==0.21.0 +pytest==7.4.0 +pytest-asyncio==0.21.1 pytest-benchmark==4.0.0 pytest-cov==4.1.0 -pytest-mock==3.10.0 +pytest-mock==3.11.1 sortedcontainers==2.4.0 uwsgi==2.0.21 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/8a4b879.txt b/.riot/requirements/8a4b879.txt deleted file mode 100644 index f7983278d9f..00000000000 --- a/.riot/requirements/8a4b879.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/8a4b879.in -# -attrs==22.2.0 -coverage[toml]==6.2 -gevent==22.10.2 -greenlet==2.0.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/8afa002.txt b/.riot/requirements/8afa002.txt deleted file mode 100644 index 3d67aa02241..00000000000 --- a/.riot/requirements/8afa002.txt +++ /dev/null @@ -1,54 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/8afa002.in -# -astunparse==1.6.3 -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -cffi==1.15.1 -chardet==4.0.0 -click==7.1.2 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -cryptography==3.3.2 -enum34==1.1.10 -flask==1.1.4 -funcsigs==1.0.2 -futures==3.4.0 -gunicorn==19.10.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -ipaddress==1.0.23 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pycparser==2.21 -pycryptodome==3.17 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -werkzeug==1.0.1 -wheel==0.37.1 -zipp==1.2.0 diff --git a/.riot/requirements/8ba1245.txt b/.riot/requirements/8ba1245.txt deleted file mode 100644 index 85885bcf64b..00000000000 --- a/.riot/requirements/8ba1245.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/8ba1245.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -mysql-connector-python==8.0.23 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.17.3 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/8ce53de.txt b/.riot/requirements/8ce53de.txt deleted file mode 100644 index 0774084b6bc..00000000000 --- a/.riot/requirements/8ce53de.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/8ce53de.in -# -attrs==22.1.0 -beautifulsoup4==4.10.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -soupsieve==2.1 -toml==0.10.2 -waitress==1.4.4 -webob==1.8.7 -webtest==2.0.35 -zipp==1.2.0 diff --git a/.riot/requirements/9053cac.txt b/.riot/requirements/9053cac.txt deleted file mode 100644 index c6ce29281c1..00000000000 --- a/.riot/requirements/9053cac.txt +++ /dev/null @@ -1,45 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/9053cac.in -# -asn1crypto==1.5.1 -attrs==22.2.0 -certifi==2022.12.7 -cffi==1.15.1 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -cryptography==36.0.2 -dataclasses==0.8 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -oscrypto==1.3.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pycparser==2.21 -pycryptodomex==3.17 -pyjwt==2.4.0 -pyopenssl==19.1.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -pytz==2022.7.1 -requests==2.27.1 -responses==0.16.0 -six==1.16.0 -snowflake-connector-python==2.7.4 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/90923b6.txt b/.riot/requirements/90923b6.txt deleted file mode 100644 index d652412cb03..00000000000 --- a/.riot/requirements/90923b6.txt +++ /dev/null @@ -1,33 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/90923b6.in -# -amqp==2.6.1 -atomicwrites==1.4.1 -attrs==22.2.0 -billiard==3.6.4.0 -celery==4.4.7 -coverage==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -kombu==4.6.11 -mock==5.0.1 -more-itertools==8.10.0 -opentracing==2.4.0 -pluggy==1.0.0 -py==1.11.0 -pytest==3.10.1 -pytest-cov==2.3.0 -pytest-mock==2.0.0 -pytz==2022.7.1 -redis==3.5.3 -six==1.16.0 -sortedcontainers==2.4.0 -typing-extensions==4.1.1 -vine==1.3.0 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/91297a1.txt b/.riot/requirements/91297a1.txt deleted file mode 100644 index 85a155ec790..00000000000 --- a/.riot/requirements/91297a1.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with Python 3.10 -# by the following command: -# -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/91297a1.in -# -attrs==23.1.0 -coverage[toml]==7.2.7 -exceptiongroup==1.1.2 -hypothesis==6.45.0 -iniconfig==2.0.0 -mako==1.2.4 -markupsafe==2.1.3 -mock==5.0.2 -more-itertools==8.10.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==23.1 -parse==1.19.1 -parse-type==0.6.2 -pluggy==1.2.0 -pytest==7.4.0 -pytest-bdd==6.1.1 -pytest-cov==4.1.0 -pytest-mock==3.11.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==2.0.1 -typing-extensions==4.7.1 diff --git a/.riot/requirements/932711f.txt b/.riot/requirements/932711f.txt deleted file mode 100644 index 1c3a996ed26..00000000000 --- a/.riot/requirements/932711f.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/932711f.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -psycopg2-binary==2.9.6 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/936ee53.txt b/.riot/requirements/936ee53.txt deleted file mode 100644 index 4056cc30235..00000000000 --- a/.riot/requirements/936ee53.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/936ee53.in -# -algoliasearch==2.6.3 -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/9a25a9b.txt b/.riot/requirements/9a25a9b.txt deleted file mode 100644 index cbe3ef5ad58..00000000000 --- a/.riot/requirements/9a25a9b.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/9a25a9b.in -# -attrs==22.1.0 -coverage==5.5 -elasticsearch==7.6.0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/9aa6415.txt b/.riot/requirements/9aa6415.txt deleted file mode 100644 index f5e83ecf8b7..00000000000 --- a/.riot/requirements/9aa6415.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/9aa6415.in -# -attrs==22.2.0 -certifi==2022.12.7 -contextvars==2.4 -coverage[toml]==6.2 -dataclasses==0.8 -h11==0.13.0 -httpcore==0.12.3 -httpx==0.17.1 -hypothesis==6.31.6 -idna==3.4 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -rfc3986[idna2008]==1.5.0 -sniffio==1.2.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/9be82d5.txt b/.riot/requirements/9be82d5.txt deleted file mode 100644 index c3c050920f0..00000000000 --- a/.riot/requirements/9be82d5.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/9be82d5.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -mysqlclient==1.4.6 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/9c81b27.txt b/.riot/requirements/9c81b27.txt deleted file mode 100644 index e2b6443d4e5..00000000000 --- a/.riot/requirements/9c81b27.txt +++ /dev/null @@ -1,47 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/9c81b27.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.5 -cheroot==8.6.0 -cherrypy==17.4.2 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -jaraco.functools==2.0 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -portend==2.6 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -pytz==2023.3 -scandir==1.10.0 -selectors2==2.0.2 -six==1.16.0 -sortedcontainers==2.4.0 -tempora==1.14.1 -toml==0.10.2 -typing-extensions==3.10.0.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zc.lockfile==2.0 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/9d5cd76.txt b/.riot/requirements/9d5cd76.txt index fbb0cd2fe32..0cb404627dc 100644 --- a/.riot/requirements/9d5cd76.txt +++ b/.riot/requirements/9d5cd76.txt @@ -2,26 +2,23 @@ # This file is autogenerated by pip-compile with Python 3.11 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/9d5cd76.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/9d5cd76.in # attrs==23.1.0 coverage[toml]==7.2.7 -gunicorn==20.1.0 +gunicorn==21.2.0 hypothesis==6.45.0 iniconfig==2.0.0 -mock==5.0.2 +mock==5.1.0 opentracing==2.4.0 packaging==23.1 -pluggy==1.0.0 +pluggy==1.2.0 protobuf==4.22.0 py-cpuinfo==8.0.0 -pytest==7.3.1 -pytest-asyncio==0.21.0 +pytest==7.4.0 +pytest-asyncio==0.21.1 pytest-benchmark==4.0.0 pytest-cov==4.1.0 -pytest-mock==3.10.0 +pytest-mock==3.11.1 sortedcontainers==2.4.0 uwsgi==2.0.21 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/9d5e33b.txt b/.riot/requirements/9d5e33b.txt deleted file mode 100644 index 121ceb342ae..00000000000 --- a/.riot/requirements/9d5e33b.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/9d5e33b.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-consul==1.1.0 -requests==2.27.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/9e9a06b.txt b/.riot/requirements/9e9a06b.txt deleted file mode 100644 index 0d7e8065bbf..00000000000 --- a/.riot/requirements/9e9a06b.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/9e9a06b.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports-abc==0.5 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -singledispatch==3.7.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -tornado==4.5.3 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/9f28d28.txt b/.riot/requirements/9f28d28.txt deleted file mode 100644 index d7bd03d7d67..00000000000 --- a/.riot/requirements/9f28d28.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/9f28d28.in -# -async-generator==1.10 -attrs==22.1.0 -coverage==5.5 -gunicorn==20.1.0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.8.0 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-asyncio==0.14.0 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -uwsgi==2.0.21 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/a0e7888.txt b/.riot/requirements/a0e7888.txt deleted file mode 100644 index b9e687ac5ca..00000000000 --- a/.riot/requirements/a0e7888.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/a0e7888.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/a241c23.txt b/.riot/requirements/a241c23.txt deleted file mode 100644 index 37206caa744..00000000000 --- a/.riot/requirements/a241c23.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/a241c23.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/a492f74.txt b/.riot/requirements/a492f74.txt deleted file mode 100644 index 1b110787e69..00000000000 --- a/.riot/requirements/a492f74.txt +++ /dev/null @@ -1,33 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/a492f74.in -# -amqp==2.6.1 -atomicwrites==1.4.1 -attrs==22.1.0 -billiard==3.6.4.0 -celery==4.4.7 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -kombu==4.6.11 -mock==3.0.5 -more-itertools==8.10.0 -opentracing==2.4.0 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pytest-cov==2.3.0 -pytest-mock==2.0.0 -pytest==3.10.1 -pytz==2022.7.1 -redis==3.5.3 -six==1.16.0 -sortedcontainers==2.4.0 -vine==1.3.0 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/a4daba6.txt b/.riot/requirements/a4daba6.txt deleted file mode 100644 index 79b53a2dbec..00000000000 --- a/.riot/requirements/a4daba6.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/a4daba6.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -tornado==5.1.1 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/a818998.txt b/.riot/requirements/a818998.txt deleted file mode 100644 index f054599174b..00000000000 --- a/.riot/requirements/a818998.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/a818998.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/a8c0657.txt b/.riot/requirements/a8c0657.txt deleted file mode 100644 index 62a774d93e9..00000000000 --- a/.riot/requirements/a8c0657.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/a8c0657.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -django==1.11 -djangorestframework==3.9.4 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-django==3.10.0 -pytest-mock==2.0.0 -pytest==4.6.11 -pytz==2022.7.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/a992487.txt b/.riot/requirements/a992487.txt deleted file mode 100644 index 9d3dd01fbdc..00000000000 --- a/.riot/requirements/a992487.txt +++ /dev/null @@ -1,61 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/a992487.in -# -asgiref==3.4.1 -attrs==22.2.0 -autobahn==21.2.1 -automat==22.10.0 -certifi==2022.12.7 -cffi==1.15.1 -channels==3.0.4 -charset-normalizer==2.0.12 -constantly==15.1.0 -coverage[toml]==6.2 -cryptography==39.0.2 -daphne==3.0.2 -django==3.2.18 -django-pylibmc==0.6.1 -django-redis==4.5.0 -hyperlink==21.0.0 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -incremental==22.10.0 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -psycopg2-binary==2.9.5 -py==1.11.0 -pyasn1==0.4.8 -pyasn1-modules==0.2.8 -pycparser==2.21 -pylibmc==1.6.3 -pyopenssl==23.0.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-django==3.10.0 -pytest-mock==3.6.1 -python-memcached==1.59 -pytz==2022.7.1 -redis==2.10.6 -requests==2.27.1 -service-identity==21.1.0 -six==1.16.0 -sortedcontainers==2.4.0 -sqlparse==0.4.3 -tomli==1.2.3 -twisted[tls]==22.4.0 -txaio==22.2.1 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/aad38bc.txt b/.riot/requirements/aad38bc.txt deleted file mode 100644 index 97342ea76e4..00000000000 --- a/.riot/requirements/aad38bc.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/aad38bc.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymemcache==3.5.2 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/ab0352c.txt b/.riot/requirements/ab0352c.txt deleted file mode 100644 index 778e2643bab..00000000000 --- a/.riot/requirements/ab0352c.txt +++ /dev/null @@ -1,40 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/ab0352c.in -# -attrs==22.2.0 -boto==2.49.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -dataclasses==0.8 -httpretty==0.8.10 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.1 -moto==0.4.31 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -pytz==2022.7.1 -requests==2.27.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -werkzeug==2.0.3 -xmltodict==0.13.0 -zipp==3.6.0 diff --git a/.riot/requirements/ac57497.txt b/.riot/requirements/ac57497.txt deleted file mode 100644 index 001e0e6947b..00000000000 --- a/.riot/requirements/ac57497.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/ac57497.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests-mock==1.10.0 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/ac8f6b8.txt b/.riot/requirements/ac8f6b8.txt deleted file mode 100644 index b36082afeb9..00000000000 --- a/.riot/requirements/ac8f6b8.txt +++ /dev/null @@ -1,43 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/ac8f6b8.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==22.10.2 -greenlet==2.0.2 -httpretty==0.9.7 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/acaed71.txt b/.riot/requirements/acaed71.txt deleted file mode 100644 index 40e2dca4f2e..00000000000 --- a/.riot/requirements/acaed71.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/acaed71.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/ae31bfe.txt b/.riot/requirements/ae31bfe.txt deleted file mode 100644 index 4360aa3a294..00000000000 --- a/.riot/requirements/ae31bfe.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/ae31bfe.in -# -attrs==22.1.0 -coverage==5.5 -falcon==3.1.1 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/aebb57f.txt b/.riot/requirements/aebb57f.txt deleted file mode 100644 index 14258584481..00000000000 --- a/.riot/requirements/aebb57f.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/aebb57f.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch6==6.8.2 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/af743b8.txt b/.riot/requirements/af743b8.txt deleted file mode 100644 index b92807cda2a..00000000000 --- a/.riot/requirements/af743b8.txt +++ /dev/null @@ -1,35 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/af743b8.in -# -attrs==22.1.0 -blinker==1.5 -click==7.1.2 -coverage==5.5 -flask-caching==1.7.2 -flask==1.0.4 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-memcached==1.59 -redis==2.10.6 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -werkzeug==1.0.1 -zipp==1.2.0 diff --git a/.riot/requirements/b06a34a.txt b/.riot/requirements/b06a34a.txt deleted file mode 100644 index 53c25094398..00000000000 --- a/.riot/requirements/b06a34a.txt +++ /dev/null @@ -1,48 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b06a34a.in -# -aiobotocore==0.11.1 -aiohttp==3.6.3 -async-generator==1.10 -async-timeout==3.0.1 -attrs==22.1.0 -botocore==1.13.14 -certifi==2021.10.8 -chardet==3.0.4 -coverage==5.5 -docutils==0.15.2 -elasticsearch==6.3.1 -gevent==1.3.7 -greenlet==1.1.3.post0 -hypothesis==5.33.2 -idna-ssl==1.1.0 -idna==2.8 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -jmespath==0.10.0 -mock==3.0.5 -multidict==4.7.6 -opensearch-py==1.1.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pynamodb==3.3.1 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-dateutil==2.8.0 -requests==2.22.0 -six==1.12.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing-extensions==3.10.0.2 -urllib3==1.25.11 -wrapt==1.15.0 -yarl==1.5.1 -zipp==1.2.0 diff --git a/.riot/requirements/b10e870.txt b/.riot/requirements/b10e870.txt deleted file mode 100644 index 180a7e809ab..00000000000 --- a/.riot/requirements/b10e870.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b10e870.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==22.10.2 -greenlet==2.0.2 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/b14f4a0.txt b/.riot/requirements/b14f4a0.txt deleted file mode 100644 index 6f5a7830d22..00000000000 --- a/.riot/requirements/b14f4a0.txt +++ /dev/null @@ -1,71 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b14f4a0.in -# -attrs==22.1.0 -aws-sam-translator==1.42.0 -aws-xray-sdk==2.11.0 -boto3==1.16.63 -boto==2.49.0 -botocore==1.19.63 -certifi==2021.10.8 -cffi==1.14.0 -cfn-lint==0.33.2 -chardet==4.0.0 -coverage==5.5 -cryptography==3.2.1 -decorator==5.1.1 -docker==4.4.4 -ecdsa==0.14.1 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -importlib-resources==1.5.0 -iniconfig==1.1.1 -jinja2==2.11.3 -jmespath==0.10.0 -jsondiff==2.0.0 -jsonpatch==1.32 -jsonpointer==2.3 -jsonschema==3.2.0 -junit-xml==1.9 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==8.14.0 -moto[all]==1.3.16 -networkx==2.4 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyasn1==0.4.8 -pycparser==2.21 -pyparsing==2.4.7 -pyrsistent==0.17.3 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-dateutil==2.8.2 -python-jose[cryptography]==3.1.0 -pytz==2022.7.1 -pyyaml==5.3.1 -requests==2.25.1 -responses==0.17.0 -rsa==4.7.2 -s3transfer==0.3.7 -six==1.16.0 -sortedcontainers==2.4.0 -sshpubkeys==3.3.1 -toml==0.10.2 -urllib3==1.26.9 -websocket-client==0.59.0 -werkzeug==1.0.1 -wrapt==1.15.0 -xmltodict==0.13.0 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/b343f18.txt b/.riot/requirements/b343f18.txt deleted file mode 100644 index 00518d20f7c..00000000000 --- a/.riot/requirements/b343f18.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b343f18.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/b4bf279.txt b/.riot/requirements/b4bf279.txt deleted file mode 100644 index 7a90d3bcfdb..00000000000 --- a/.riot/requirements/b4bf279.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b4bf279.in -# -async-generator==1.10 -attrs==22.1.0 -coverage==5.5 -gevent==22.10.2 -greenlet==2.0.2 -gunicorn[gevent]==20.1.0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-asyncio==0.14.0 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -uwsgi==2.0.21 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/b5831e1.txt b/.riot/requirements/b5831e1.txt deleted file mode 100644 index 372e6d3c4a4..00000000000 --- a/.riot/requirements/b5831e1.txt +++ /dev/null @@ -1,40 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b5831e1.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -beautifulsoup4==4.9.3 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -soupsieve==1.9.6 -toml==0.10.2 -typing==3.10.0.0 -waitress==1.4.4 -wcwidth==0.2.6 -webob==1.8.7 -webtest==2.0.35 -zipp==1.2.0 diff --git a/.riot/requirements/b58464c.txt b/.riot/requirements/b58464c.txt deleted file mode 100644 index 96cdaa3b8d9..00000000000 --- a/.riot/requirements/b58464c.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b58464c.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==22.10.2 -greenlet==2.0.2 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/b611b60.txt b/.riot/requirements/b611b60.txt deleted file mode 100644 index c9ad782ee2b..00000000000 --- a/.riot/requirements/b611b60.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b611b60.in -# -attrs==22.1.0 -blinker==1.5 -certifi==2021.10.8 -chardet==4.0.0 -click==7.1.2 -coverage==5.5 -flask==1.1.4 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -werkzeug==1.0.1 -zipp==1.2.0 diff --git a/.riot/requirements/b6ac228.txt b/.riot/requirements/b6ac228.txt deleted file mode 100644 index 245e15bdfd7..00000000000 --- a/.riot/requirements/b6ac228.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b6ac228.in -# -attrs==22.1.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.12.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/b7d4b65.txt b/.riot/requirements/b7d4b65.txt deleted file mode 100644 index 2ff7da37240..00000000000 --- a/.riot/requirements/b7d4b65.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b7d4b65.in -# -async-generator==1.10 -attrs==22.1.0 -coverage==5.5 -gevent==1.4.0 -greenlet==0.4.14 -gunicorn[gevent]==20.1.0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-asyncio==0.14.0 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -uwsgi==2.0.21 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/b7e7fe3.txt b/.riot/requirements/b7e7fe3.txt deleted file mode 100644 index 92f16a16b2a..00000000000 --- a/.riot/requirements/b7e7fe3.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b7e7fe3.in -# -attrs==22.1.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.12.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/b866d20.txt b/.riot/requirements/b866d20.txt deleted file mode 100644 index 89c32b2eb37..00000000000 --- a/.riot/requirements/b866d20.txt +++ /dev/null @@ -1,44 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/b866d20.in -# -aiobotocore==2.3.4 -aiohttp==3.8.4 -aioitertools==0.11.0 -aiosignal==1.2.0 -async-generator==1.10 -async-timeout==4.0.2 -asynctest==0.13.0 -attrs==22.2.0 -botocore==1.24.21 -charset-normalizer==3.0.1 -coverage[toml]==6.2 -frozenlist==1.2.0 -hypothesis==6.31.6 -idna==3.4 -idna-ssl==1.1.0 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -jmespath==0.10.0 -mock==5.0.1 -multidict==5.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -wrapt==1.15.0 -yarl==1.7.2 -zipp==3.6.0 diff --git a/.riot/requirements/bb9415c.txt b/.riot/requirements/bb9415c.txt deleted file mode 100644 index a8202b3ec4c..00000000000 --- a/.riot/requirements/bb9415c.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/bb9415c.in -# -attrs==22.1.0 -coverage==5.5 -falcon==3.0.1 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/bcc3f01.txt b/.riot/requirements/bcc3f01.txt deleted file mode 100644 index d70b6d997a1..00000000000 --- a/.riot/requirements/bcc3f01.txt +++ /dev/null @@ -1,44 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/bcc3f01.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -docutils==0.18.1 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gunicorn==19.10.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -protobuf==3.0.0 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -statistics==1.0.3.5 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/bd45431.txt b/.riot/requirements/bd45431.txt deleted file mode 100644 index bd6cbe0888c..00000000000 --- a/.riot/requirements/bd45431.txt +++ /dev/null @@ -1,47 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/bd45431.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -blinker==1.5 -certifi==2021.10.8 -chardet==4.0.0 -click==7.1.2 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -flask==1.1.4 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -itsdangerous==1.1.0 -jinja2==2.11.3 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -werkzeug==1.0.1 -zipp==1.2.0 diff --git a/.riot/requirements/bf960a5.txt b/.riot/requirements/bf960a5.txt deleted file mode 100644 index 81eae3ed57d..00000000000 --- a/.riot/requirements/bf960a5.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/bf960a5.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyodbc==4.0.35 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/bfc77e8.txt b/.riot/requirements/bfc77e8.txt deleted file mode 100644 index 2f44f2d4290..00000000000 --- a/.riot/requirements/bfc77e8.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/bfc77e8.in -# -asyncpg==0.26.0 -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/c0d828e.txt b/.riot/requirements/c0d828e.txt deleted file mode 100644 index 85365bb9d60..00000000000 --- a/.riot/requirements/c0d828e.txt +++ /dev/null @@ -1,47 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/c0d828e.in -# -attrs==22.2.0 -beautifulsoup4==4.11.2 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hupper==1.10.3 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pastedeploy==2.1.1 -plaster==1.0 -plaster-pastedeploy==0.7 -pluggy==1.0.0 -pserve-test-app @ file:///root/project/tests/contrib/pyramid/pserve_app -py==1.11.0 -pyparsing==3.0.9 -pyramid==2.0.1 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -soupsieve==2.3.2.post1 -tomli==1.2.3 -translationstring==1.4 -typing-extensions==4.1.1 -urllib3==1.26.15 -venusian==3.0.0 -waitress==2.0.0 -webob==1.8.7 -webtest==3.0.0 -zipp==3.6.0 -zope.deprecation==4.4.0 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/c984bfd.txt b/.riot/requirements/c984bfd.txt deleted file mode 100644 index 4994595f169..00000000000 --- a/.riot/requirements/c984bfd.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/c984bfd.in -# -attrs==22.2.0 -cheroot==9.0.0 -cherrypy==18.8.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -importlib-resources==5.4.0 -iniconfig==1.1.1 -jaraco.classes==3.2.1 -jaraco.collections==3.4.0 -jaraco.context==4.1.1 -jaraco.functools==3.4.0 -jaraco.text==3.7.0 -mock==5.0.1 -more-itertools==8.10.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -portend==3.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -pytz==2022.7.1 -six==1.16.0 -sortedcontainers==2.4.0 -tempora==4.1.2 -tomli==1.2.3 -typing-extensions==4.1.1 -zc.lockfile==2.0 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/c99e244.txt b/.riot/requirements/c99e244.txt deleted file mode 100644 index c17e7057295..00000000000 --- a/.riot/requirements/c99e244.txt +++ /dev/null @@ -1,47 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/c99e244.in -# -astunparse==1.6.3 -attrs==22.2.0 -certifi==2023.5.7 -cffi==1.15.1 -charset-normalizer==2.0.12 -click==8.0.4 -coverage[toml]==6.2 -cryptography==40.0.2 -dataclasses==0.8 -flask==2.0.3 -gunicorn==20.1.0 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -itsdangerous==2.0.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pycparser==2.21 -pycryptodome==3.17 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -werkzeug==2.0.3 -wheel==0.37.1 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/cb1bcd5.txt b/.riot/requirements/cb1bcd5.txt deleted file mode 100644 index 37e8934215e..00000000000 --- a/.riot/requirements/cb1bcd5.txt +++ /dev/null @@ -1,31 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/cb1bcd5.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -requests-mock==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/cc9fc4a.txt b/.riot/requirements/cc9fc4a.txt deleted file mode 100644 index edc4987cbac..00000000000 --- a/.riot/requirements/cc9fc4a.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/cc9fc4a.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -psycopg2-binary==2.9.6 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/d0c18f8.txt b/.riot/requirements/d0c18f8.txt deleted file mode 100644 index 147ebec89b6..00000000000 --- a/.riot/requirements/d0c18f8.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d0c18f8.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyodbc==4.0.35 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/d1423fe.txt b/.riot/requirements/d1423fe.txt deleted file mode 100644 index 0debf534bc1..00000000000 --- a/.riot/requirements/d1423fe.txt +++ /dev/null @@ -1,34 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d1423fe.in -# -attrs==22.2.0 -coverage[toml]==6.2 -gunicorn==20.1.0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -protobuf==3.8.0 -py==1.11.0 -py-cpuinfo==8.0.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-benchmark==3.4.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -uwsgi==2.0.21 -zipp==3.6.0 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/d215293.txt b/.riot/requirements/d215293.txt deleted file mode 100644 index 7cf881381e2..00000000000 --- a/.riot/requirements/d215293.txt +++ /dev/null @@ -1,24 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d215293.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/d2f64b9.txt b/.riot/requirements/d2f64b9.txt deleted file mode 100644 index 73a56eb6af4..00000000000 --- a/.riot/requirements/d2f64b9.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d2f64b9.in -# -attrs==22.1.0 -coverage[toml]==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -more-itertools==8.10.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.0 -pytest-mock==2.0.0 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/d4fa964.txt b/.riot/requirements/d4fa964.txt deleted file mode 100644 index 6cc3ab97ef0..00000000000 --- a/.riot/requirements/d4fa964.txt +++ /dev/null @@ -1,24 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d4fa964.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/d5db35f.txt b/.riot/requirements/d5db35f.txt deleted file mode 100644 index a15777714c0..00000000000 --- a/.riot/requirements/d5db35f.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d5db35f.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -requests-mock==1.10.0 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/d6837bc.txt b/.riot/requirements/d6837bc.txt deleted file mode 100644 index a7945006cbe..00000000000 --- a/.riot/requirements/d6837bc.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d6837bc.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -httpretty==0.9.7 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -structlog==20.1.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/d71a607.txt b/.riot/requirements/d71a607.txt deleted file mode 100644 index dd4a7ccb3f7..00000000000 --- a/.riot/requirements/d71a607.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d71a607.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -mongoengine==0.21.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pymongo==3.13.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/d764cf7.txt b/.riot/requirements/d764cf7.txt index 3088dc482fc..0681aba0581 100644 --- a/.riot/requirements/d764cf7.txt +++ b/.riot/requirements/d764cf7.txt @@ -2,7 +2,7 @@ # This file is autogenerated by pip-compile with Python 3.7 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/d764cf7.in +# pip-compile --config=pyproject.toml --no-annotate --resolver=backtracking .riot/requirements/d764cf7.in # aiofiles==23.1.0 aiosqlite==0.18.0 @@ -13,7 +13,6 @@ charset-normalizer==3.1.0 coverage[toml]==7.2.2 databases==0.7.0 exceptiongroup==1.1.1 -greenlet==2.0.2 h11==0.14.0 httpcore==0.16.3 httpx==0.23.3 diff --git a/.riot/requirements/d945721.txt b/.riot/requirements/d945721.txt deleted file mode 100644 index 02b2c59bdc5..00000000000 --- a/.riot/requirements/d945721.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d945721.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch==7.10.1 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/d9992aa.txt b/.riot/requirements/d9992aa.txt deleted file mode 100644 index 3bc9c0b1061..00000000000 --- a/.riot/requirements/d9992aa.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/d9992aa.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -redis-py-cluster==2.0.0 -redis==3.0.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/dcac47b.txt b/.riot/requirements/dcac47b.txt deleted file mode 100644 index 450ae129bd9..00000000000 --- a/.riot/requirements/dcac47b.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/dcac47b.in -# -attrs==22.1.0 -coverage==5.5 -elasticsearch1==1.10.0 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 diff --git a/.riot/requirements/e07aecb.txt b/.riot/requirements/e07aecb.txt deleted file mode 100644 index c79eff9ec65..00000000000 --- a/.riot/requirements/e07aecb.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e07aecb.in -# -aiopg==0.16.0 -attrs==22.2.0 -coverage[toml]==6.2 -greenlet==2.0.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -psycopg2-binary==2.9.5 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -sqlalchemy==1.4.46 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/e11ffed.txt b/.riot/requirements/e11ffed.txt deleted file mode 100644 index 2f28bb0d8d8..00000000000 --- a/.riot/requirements/e11ffed.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e11ffed.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -click==7.1.2 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -redis==3.5.3 -rq==1.3.0 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/e19f853.txt b/.riot/requirements/e19f853.txt deleted file mode 100644 index 4e234d5be06..00000000000 --- a/.riot/requirements/e19f853.txt +++ /dev/null @@ -1,38 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e19f853.in -# -attrs==22.1.0 -certifi==2021.10.8 -chardet==4.0.0 -coverage==5.5 -gevent==22.10.2 -greenlet==2.0.2 -gunicorn==20.1.0 -hypothesis==5.33.2 -idna==2.10 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -requests==2.25.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -urllib3==1.26.9 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/4e21258.txt b/.riot/requirements/e1fad7a.txt similarity index 79% rename from .riot/requirements/4e21258.txt rename to .riot/requirements/e1fad7a.txt index 4b70d910e9d..601b4cf0c38 100644 --- a/.riot/requirements/4e21258.txt +++ b/.riot/requirements/e1fad7a.txt @@ -2,7 +2,7 @@ # This file is autogenerated by pip-compile with Python 3.8 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/4e21258.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/e1fad7a.in # attrs==23.1.0 coverage[toml]==7.2.7 @@ -12,7 +12,7 @@ hypothesis==6.45.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 @@ -28,4 +28,3 @@ pytest-mock==3.11.1 six==1.16.0 sortedcontainers==2.4.0 tomli==2.0.1 -typing-extensions==4.7.1 diff --git a/.riot/requirements/e2a2710.txt b/.riot/requirements/e2a2710.txt deleted file mode 100644 index 36dda1e60d1..00000000000 --- a/.riot/requirements/e2a2710.txt +++ /dev/null @@ -1,41 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e2a2710.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -certifi==2021.10.8 -chardet==4.0.0 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -idna==2.10 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -python-consul==1.1.0 -requests==2.27.1 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/e2a460f.txt b/.riot/requirements/e2a460f.txt deleted file mode 100644 index 135ab4ea186..00000000000 --- a/.riot/requirements/e2a460f.txt +++ /dev/null @@ -1,40 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e2a460f.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -docutils==0.18.1 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py-cpuinfo==8.0.0 -py==1.11.0 -pyparsing==2.4.7 -pytest-benchmark==3.4.1 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -statistics==1.0.3.5 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/e34e267.txt b/.riot/requirements/e34e267.txt deleted file mode 100644 index 3c8968ec5bb..00000000000 --- a/.riot/requirements/e34e267.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e34e267.in -# -attrs==22.1.0 -coverage==5.5 -future==0.18.3 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-dateutil==2.8.2 -pytz==2022.7.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -vertica-python==0.6.14 -zipp==1.2.0 diff --git a/.riot/requirements/e49eafc.txt b/.riot/requirements/e49eafc.txt deleted file mode 100644 index b49e07aef7e..00000000000 --- a/.riot/requirements/e49eafc.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e49eafc.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mako==1.1.6 -markupsafe==1.1.1 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/e4c3ba7.txt b/.riot/requirements/e4c3ba7.txt deleted file mode 100644 index 0d615aab83d..00000000000 --- a/.riot/requirements/e4c3ba7.txt +++ /dev/null @@ -1,26 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e4c3ba7.in -# -attrs==22.2.0 -coverage[toml]==6.2 -gevent==1.2.2 -greenlet==1.1.3.post0 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/e55b906.txt b/.riot/requirements/e55b906.txt deleted file mode 100644 index 5eb4696ea84..00000000000 --- a/.riot/requirements/e55b906.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e55b906.in -# -attrs==22.2.0 -cattrs==1.0.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.2 -molten==1.0.2 -mypy-extensions==1.0.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==3.10.0.2 -typing-inspect==0.6.0 -zipp==3.6.0 diff --git a/.riot/requirements/e70d73c.txt b/.riot/requirements/e70d73c.txt new file mode 100644 index 00000000000..5a591b957ea --- /dev/null +++ b/.riot/requirements/e70d73c.txt @@ -0,0 +1,24 @@ +# +# This file is autogenerated by pip-compile with Python 3.7 +# by the following command: +# +# pip-compile --no-annotate --resolver=backtracking .riot/requirements/e70d73c.in +# +attrs==23.1.0 +coverage[toml]==7.2.5 +exceptiongroup==1.1.1 +hypothesis==6.45.0 +importlib-metadata==6.6.0 +iniconfig==2.0.0 +mock==5.0.2 +opentracing==2.4.0 +packaging==23.1 +pluggy==1.0.0 +pytest==7.3.1 +pytest-asyncio==0.21.0 +pytest-cov==4.0.0 +pytest-mock==3.10.0 +sortedcontainers==2.4.0 +tomli==2.0.1 +typing-extensions==4.5.0 +zipp==3.15.0 diff --git a/.riot/requirements/e760a97.txt b/.riot/requirements/e760a97.txt deleted file mode 100644 index b93da25e036..00000000000 --- a/.riot/requirements/e760a97.txt +++ /dev/null @@ -1,33 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/e760a97.in -# -attrs==22.2.0 -coverage[toml]==6.2 -glob2==0.7 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mako==1.1.6 -markupsafe==2.0.1 -mock==5.0.1 -more-itertools==8.10.0 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -parse==1.19.0 -parse-type==0.6.0 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-bdd==4.1.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/eb57813.txt b/.riot/requirements/eb57813.txt deleted file mode 100644 index b030b07259d..00000000000 --- a/.riot/requirements/eb57813.txt +++ /dev/null @@ -1,42 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/eb57813.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -gevent==22.10.2 -greenlet==2.0.2 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/ed410f6.txt b/.riot/requirements/ed410f6.txt deleted file mode 100644 index 8e0e3a4b99b..00000000000 --- a/.riot/requirements/ed410f6.txt +++ /dev/null @@ -1,32 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/ed410f6.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opensearch-py[requests]==2.2.0 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -requests==2.27.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 diff --git a/.riot/requirements/edfdcac.txt b/.riot/requirements/edfdcac.txt deleted file mode 100644 index bbfc49d8ee2..00000000000 --- a/.riot/requirements/edfdcac.txt +++ /dev/null @@ -1,36 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/edfdcac.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -confluent-kafka==1.7.0 -contextlib2==0.6.0.post1 -coverage==5.5 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/ef23882.txt b/.riot/requirements/ef23882.txt deleted file mode 100644 index 16b758f6a14..00000000000 --- a/.riot/requirements/ef23882.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/ef23882.in -# -attrs==22.2.0 -blinker==1.5 -certifi==2022.12.7 -charset-normalizer==2.0.12 -click==8.0.4 -coverage[toml]==6.2 -dataclasses==0.8 -flask==2.0.3 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -itsdangerous==2.0.1 -jinja2==3.0.3 -markupsafe==2.0.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -werkzeug==2.0.3 -zipp==3.6.0 diff --git a/.riot/requirements/f1099f1.txt b/.riot/requirements/f1099f1.txt deleted file mode 100644 index 1226b038916..00000000000 --- a/.riot/requirements/f1099f1.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/f1099f1.in -# -atomicwrites==1.4.1 -attrs==21.4.0 -backports.functools-lru-cache==1.6.4 -configparser==4.0.2 -contextlib2==0.6.0.post1 -coverage==5.5 -elasticsearch2==2.5.1 -enum34==1.1.10 -funcsigs==1.0.2 -futures==3.4.0 -hypothesis==4.57.1 -importlib-metadata==2.1.3 -mock==3.0.5 -more-itertools==5.0.0 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==2.0.0 -pytest==4.6.11 -scandir==1.10.0 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -typing==3.10.0.0 -urllib3==1.26.15 -wcwidth==0.2.6 -zipp==1.2.0 diff --git a/.riot/requirements/f16a250.txt b/.riot/requirements/f16a250.txt deleted file mode 100644 index cdce4d7da8a..00000000000 --- a/.riot/requirements/f16a250.txt +++ /dev/null @@ -1,37 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/f16a250.in -# -attrs==22.2.0 -certifi==2022.12.7 -charset-normalizer==2.0.12 -coverage[toml]==6.2 -gevent==22.10.2 -greenlet==2.0.2 -gunicorn==20.0.4 -hypothesis==6.31.6 -idna==3.4 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -requests==2.27.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -urllib3==1.26.15 -zipp==3.6.0 -zope.event==4.6 -zope.interface==5.5.2 - -# The following packages are considered to be unsafe in a requirements file: -# setuptools diff --git a/.riot/requirements/f5508fc.txt b/.riot/requirements/f5508fc.txt deleted file mode 100644 index d38ea366976..00000000000 --- a/.riot/requirements/f5508fc.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/f5508fc.in -# -attrs==22.2.0 -coverage[toml]==6.2 -future==0.18.3 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -python-dateutil==2.8.2 -pytz==2022.7.1 -six==1.16.0 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -vertica-python==0.7.4 -zipp==3.6.0 diff --git a/.riot/requirements/f655d27.txt b/.riot/requirements/f655d27.txt deleted file mode 100644 index 72afe2a797c..00000000000 --- a/.riot/requirements/f655d27.txt +++ /dev/null @@ -1,30 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/f655d27.in -# -attrs==22.2.0 -beautifulsoup4==4.11.2 -bottle==0.12.25 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -soupsieve==2.3.2.post1 -tomli==1.2.3 -typing-extensions==4.1.1 -waitress==2.0.0 -webob==1.8.7 -webtest==3.0.0 -zipp==3.6.0 diff --git a/.riot/requirements/f767653.txt b/.riot/requirements/f767653.txt deleted file mode 100644 index 9e6c9120aa7..00000000000 --- a/.riot/requirements/f767653.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/f767653.in -# -attrs==22.2.0 -coverage[toml]==6.2 -django==2.2.28 -djangorestframework==3.13.1 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-django==3.10.0 -pytest-mock==3.6.1 -pytz==2022.7.1 -sortedcontainers==2.4.0 -sqlparse==0.4.3 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/f96bd4f.txt b/.riot/requirements/f96bd4f.txt deleted file mode 100644 index 05378dd785d..00000000000 --- a/.riot/requirements/f96bd4f.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/f96bd4f.in -# -attrs==22.1.0 -coverage==5.5 -future==0.18.3 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -python-dateutil==2.8.2 -pytz==2022.7.1 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -vertica-python==0.7.4 -zipp==1.2.0 diff --git a/.riot/requirements/fbf3f87.txt b/.riot/requirements/fbf3f87.txt deleted file mode 100644 index 32f32f4d18a..00000000000 --- a/.riot/requirements/fbf3f87.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/fbf3f87.in -# -attrs==22.2.0 -coverage[toml]==6.2 -hypothesis==6.31.6 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -msgpack==1.0.5 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -zipp==3.6.0 diff --git a/.riot/requirements/146bb98.txt b/.riot/requirements/fc4505d.txt similarity index 74% rename from .riot/requirements/146bb98.txt rename to .riot/requirements/fc4505d.txt index f35b05ec19c..8e78ee938ca 100644 --- a/.riot/requirements/146bb98.txt +++ b/.riot/requirements/fc4505d.txt @@ -2,15 +2,16 @@ # This file is autogenerated by pip-compile with Python 3.11 # by the following command: # -# pip-compile --no-annotate --resolver=backtracking .riot/requirements/146bb98.in +# pip-compile --config=pyproject.toml --no-annotate .riot/requirements/fc4505d.in # attrs==23.1.0 coverage[toml]==7.2.7 +glob2==0.7 hypothesis==6.45.0 iniconfig==2.0.0 mako==1.2.4 markupsafe==2.1.3 -mock==5.0.2 +mock==5.1.0 more-itertools==8.10.0 msgpack==1.0.5 opentracing==2.4.0 @@ -18,10 +19,10 @@ packaging==23.1 parse==1.19.1 parse-type==0.6.2 pluggy==1.2.0 +py==1.11.0 pytest==7.4.0 -pytest-bdd==6.1.1 +pytest-bdd==6.0.1 pytest-cov==4.1.0 pytest-mock==3.11.1 six==1.16.0 sortedcontainers==2.4.0 -typing-extensions==4.7.1 diff --git a/.riot/requirements/fca4623.txt b/.riot/requirements/fca4623.txt deleted file mode 100644 index 120ee0ca2c1..00000000000 --- a/.riot/requirements/fca4623.txt +++ /dev/null @@ -1,27 +0,0 @@ -# -# This file is autogenerated by pip-compile -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/fca4623.in -# -attrs==22.1.0 -coverage==5.5 -hypothesis==5.33.2 -importlib-metadata==2.1.3 -iniconfig==1.1.1 -mako==1.1.6 -markupsafe==1.1.1 -mock==3.0.5 -opentracing==2.4.0 -packaging==20.9 -pathlib2==2.3.7.post1 -pluggy==0.13.1 -py==1.11.0 -pyparsing==2.4.7 -pytest-cov==2.12.1 -pytest-mock==3.5.1 -pytest==6.1.2 -six==1.16.0 -sortedcontainers==2.4.0 -toml==0.10.2 -zipp==1.2.0 diff --git a/.riot/requirements/fd7e189.txt b/.riot/requirements/fd7e189.txt deleted file mode 100644 index 0e566e0c695..00000000000 --- a/.riot/requirements/fd7e189.txt +++ /dev/null @@ -1,28 +0,0 @@ -# -# This file is autogenerated by pip-compile with python 3.6 -# To update, run: -# -# pip-compile --no-annotate .riot/requirements/fd7e189.in -# -attrs==22.2.0 -contextvars==2.4 -coverage[toml]==6.2 -hypothesis==6.31.6 -immutables==0.19 -importlib-metadata==4.8.3 -iniconfig==1.1.1 -mock==5.0.1 -opentracing==2.4.0 -packaging==21.3 -pluggy==1.0.0 -py==1.11.0 -pyparsing==3.0.9 -pytest==7.0.1 -pytest-asyncio==0.16.0 -pytest-cov==4.0.0 -pytest-mock==3.6.1 -sortedcontainers==2.4.0 -tomli==1.2.3 -typing-extensions==4.1.1 -yaaredis==2.0.4 -zipp==3.6.0 diff --git a/ci/coverage/requirements.in b/ci/coverage/requirements.in new file mode 100644 index 00000000000..f6837f740d2 --- /dev/null +++ b/ci/coverage/requirements.in @@ -0,0 +1,3 @@ +coverage +codecov +diff_cover diff --git a/ci/coverage/requirements.txt b/ci/coverage/requirements.txt new file mode 100644 index 00000000000..26c4ba5f166 --- /dev/null +++ b/ci/coverage/requirements.txt @@ -0,0 +1,19 @@ +# +# This file is autogenerated by pip-compile with Python 3.10 +# by the following command: +# +# pip-compile --config=pyproject.toml --no-annotate --output-file=ci/coverage/requirements.txt ci/coverage/requirements.in +# +certifi==2023.5.7 +chardet==5.1.0 +charset-normalizer==3.2.0 +codecov==2.1.13 +coverage==7.2.7 +diff-cover==7.6.1 +idna==3.4 +jinja2==3.1.2 +markupsafe==2.1.3 +pluggy==1.2.0 +pygments==2.15.1 +requests==2.31.0 +urllib3==2.0.3 diff --git a/docker/.python-version b/docker/.python-version index 85950375a8f..9d2f77812eb 100644 --- a/docker/.python-version +++ b/docker/.python-version @@ -1,7 +1,4 @@ 3.10.11 -2.7.18 -3.5.10 -3.6.15 3.7.16 3.8.16 3.9.16 diff --git a/docs/spelling_wordlist.txt b/docs/spelling_wordlist.txt index 5f0e5cfe9da..da2b166a947 100644 --- a/docs/spelling_wordlist.txt +++ b/docs/spelling_wordlist.txt @@ -85,6 +85,7 @@ entrypoint entrypoints env enqueuer +eol exec fastapi formatter diff --git a/docs/versioning.rst b/docs/versioning.rst index 1e484098370..e14360ede48 100644 --- a/docs/versioning.rst +++ b/docs/versioning.rst @@ -14,9 +14,12 @@ Release support - :ref:`Support level` - Minimum Datadog Agent * - ``<1`` - - :ref:`Maintenance` + - :ref:`End of Life` - * - ``>=1.0,<2`` + - :ref:`Maintenance` + - 7.28 + * - ``>=2.0,<3`` - :ref:`General Availability` - 7.28 @@ -35,10 +38,12 @@ Support levels * - General Availability (GA) - Receives new features, bug fixes, and security fixes. Fixes are backported to the three most recent minor releases. - .. _versioning_support_maintenace: + .. _versioning_support_maintenance: * - Maintenance - Does not receive new features. Receives only those bug fixes and security fixes considered "critical". Fixes are backported to the most recent minor release. - * - End-of-life + + .. _versioning_support_eol: + * - End-of-Life (EOL) - No support. .. _versioning_release: @@ -101,18 +106,33 @@ Supported runtimes - Runtime - Runtime version - Supported Release + * - Linux + - x86-64, i686, AArch64 + - CPython + - 3.7-3.12 + - ``>=2.0,<3`` + * - MacOS + - Intel, Apple Silicon + - CPython + - 3.7-3.12 + - ``>=2.0,<3`` + * - Windows + - 64bit, 32bit + - CPython + - 3.7-3.12 + - ``>=2.0,<3`` * - Linux - x86-64, i686, AArch64 - CPython - 2.7, 3.5-3.11 - - ``<2`` + - ``>=1.0,<2`` * - MacOS - Intel, Apple Silicon - CPython - 2.7, 3.5-3.11 - - ``<2`` + - ``>=1.0,<2`` * - Windows - 64bit, 32bit - CPython - 2.7, 3.5-3.11 - - ``<2`` + - ``>=1.0,<2`` diff --git a/releasenotes/notes/release-2.0-3af0045e2261bd02.yaml b/releasenotes/notes/release-2.0-3af0045e2261bd02.yaml new file mode 100644 index 00000000000..4d58152435d --- /dev/null +++ b/releasenotes/notes/release-2.0-3af0045e2261bd02.yaml @@ -0,0 +1,169 @@ +--- +prelude: > + The Datadog APM Python team is happy to announce the release of v2.0.0 of + ddtrace. This release introduces a formal :ref:`support policy< + introduces a formal :ref:`versioning support policy` for the major + versions of the ddtrace library, drops support for Python 2.7, 3.5, and 3.6, and + adds support for Python 3.12. + + .. important:: + ddtrace v2.0.0 drops support for Python 2.7, 3.5, and 3.6. Users running these unsupported + Python versions should consider upgrading their Python version or continue using ddtrace v1 + of the ddtrace library, which is now in maintenance mode and will only receive bug fixes. + + Before upgrading to v2.0.0, we recommend users install + ``ddtrace>=1.18.0,<2.0.0`` and enable deprecation warnings. All removals to + the library interface and environment variables were deprecated on the 1.x + branch. + + .. note:: + The changes to environment variables apply only to the configuration of the + ddtrace library and not the Datadog Agent. + + + Upgrading summary + + ~~~~~~~~~~~~~~~~~ + + + Functionality changes + + ********************* + + The default logging configuration functionality of ddtrace has been changed + to avoid conflicting with application logging configurations. ``DD_CALL_BASIC_CONFIG`` + has been removed and the ddtrace logger will log to stdout by default, or a log file + as specified using ``DD_TRACE_LOG_FILE``. + + + Setting the environment variable ``DD_TRACE_PROPAGATION_STYLE='b3'`` has been removed. + Please use `DD_TRACE_PROPAGATION_STYLE='b3multi'`` instead. + + + Removed legacy environment variables + + ************************************ + + These environment variables have been removed. In all cases the same + functionality is provided by other environment variables and replacements are + provided as recommended actions for upgrading. + + + .. list-table:: + :header-rows: 1 + :widths: 45, 45, 10 + + * - Variable + - Replacement + - Note + * - ``DD_GEVENT_PATCH_ALL`` + - None + - :ref:`📝` + * - ``DD_AWS_TAG_ALL_PARAMS`` + - None + - :ref:`📝` + * - ``DD_REMOTECONFIG_POLL_SECONDS`` + - ``DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS`` + - :ref:`📝` + * - ``DD_CALL_BASIC_CONFIG`` + - None + - :ref:`📝` + + + + Removed legacy tracing interfaces + + ********************************* + + These methods and module attributes have been removed. Where the same + functionality is provided by a different public method or module attribute, a + recommended action is provided for upgrading. In a few limited cases, because + the interface was no longer used or had been moved to the internal interface, + it was removed and so no action is provided for upgrading. + + + .. list-table:: + :header-rows: 1 + :widths: 45, 45, 10 + + * - Module + - Method/Attribute + - Note + * - ``ddtrace.constants`` + - ``APPSEC_ENABLED`` + - :ref:`📝` + * - + - ``APPSEC_JSON`` + - :ref:`📝` + * - + - ``APPSEC_EVENT_RULE_VERSION`` + - :ref:`📝` + * - + - ``APPSEC_EVENT_RULE_ERRORS`` + - :ref:`📝` + * - + - ``APPSEC_EVENT_RULE_LOADED`` + - :ref:`📝` + * - + - ``APPSEC_EVENT_RULE_ERROR_COUNT`` + - :ref:`📝` + * - + - ``APPSEC_WAF_DURATION`` + - :ref:`📝` + * - + - ``APPSEC_WAF_DURATION_EXT`` + - :ref:`📝` + * - + - ``APPSEC_WAF_TIMEOUTS`` + - :ref:`📝` + * - + - ``APPSEC_WAF_VERSION`` + - :ref:`📝` + * - + - ``APPSEC_ORIGIN_VALUE`` + - :ref:`📝` + * - + - ``APPSEC_BLOCKED`` + - :ref:`📝` + * - + - ``IAST_JSON`` + - :ref:`📝` + * - + - ``IAST_ENABLED`` + - :ref:`📝` + * - + - ``IAST_CONTEXT_KEY`` + - :ref:`📝` + * - ``ddtrace.contrib.fastapi.patch`` + - ``span_modifier`` + - :ref:`📝` + * - + - ``aggregate_resources`` + - :ref:`📝` + * - ``ddtrace.contrib.starlette.patch`` + - ``span_modifier`` + - :ref:`📝` + * - + - ``aggregate_resources`` + - :ref:`📝` + * - + - ``get_resource`` + - :ref:`📝` + * - ``ddtrace.contrib.grpc.constants`` + - ``GRPC_PORT_KEY`` + - :ref:`📝` + * - ``ddtrace.ext.cassandra`` + - ``ROW_COUNT`` + - :ref:`📝` + * - ``ddtrace.ext.mongo`` + - ``ROWS`` + - :ref:`📝` + * - ``ddtrace.ext.sql`` + - ``ROWS`` + - :ref:`📝` + * - ``ddtrace.filters`` + - ``TraceCiVisibilityFilter`` + - :ref:`📝` + * - ``ddtrace.tracer`` + - ``DD_LOG_FORMAT`` + - :ref:`📝` diff --git a/riotfile.py b/riotfile.py index e9d3b751778..2d6433a2d8c 100644 --- a/riotfile.py +++ b/riotfile.py @@ -11,9 +11,6 @@ SUPPORTED_PYTHON_VERSIONS = [ - (2, 7), - (3, 5), - (3, 6), (3, 7), (3, 8), (3, 9), @@ -26,12 +23,12 @@ def version_to_str(version): # type: (Tuple[int, int]) -> str """Convert a Python version tuple to a string - >>> version_to_str((2, 7)) - '2.7' - >>> version_to_str((3, 5)) - '3.5' - >>> version_to_str((3, 1)) - '3.1' + >>> version_to_str((3, 7)) + '3.7' + >>> version_to_str((3, 8)) + '3.8' + >>> version_to_str((3, 9)) + '3.9' >>> version_to_str((3, 10)) '3.10' >>> version_to_str((3, 11)) @@ -46,12 +43,12 @@ def str_to_version(version): # type: (str) -> Tuple[int, int] """Convert a Python version string to a tuple - >>> str_to_version("2.7") - (2, 7) - >>> str_to_version("3.5") - (3, 5) - >>> str_to_version("3.1") - (3, 1) + >>> str_to_version("3.7") + (3, 7) + >>> str_to_version("3.8") + (3, 8) + >>> str_to_version("3.9") + (3, 9) >>> str_to_version("3.10") (3, 10) >>> str_to_version("3.11") @@ -71,13 +68,13 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): """Helper to select python versions from the list of versions we support >>> select_pys() - ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] + ['3.7', '3.8', '3.9', '3.10', '3.11'] >>> select_pys(min_version='3') - ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] + ['3.7', '3.8', '3.9', '3.10', '3.11'] >>> select_pys(max_version='3') - ['2.7'] - >>> select_pys(min_version='3.5', max_version='3.8') - ['3.5', '3.6', '3.7', '3.8'] + [] + >>> select_pys(min_version='3.7', max_version='3.9') + ['3.7', '3.8', '3.9'] """ min_version = str_to_version(min_version) max_version = str_to_version(max_version) @@ -211,16 +208,11 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "AGENT_VERSION": "latest", }, venvs=[ - Venv(pys=select_pys(max_version="3.5")), Venv( pkgs={ "six": "==1.12.0", }, venvs=[ - # DEV: attrs marked Python 3.6 as deprecated in 22.2.0, - # this logs a warning and causes these tests to fail - # https://www.attrs.org/en/22.2.0/changelog.html#id1 - Venv(pys="3.6", pkgs={"attrs": "<22.2.0"}), Venv(pys="3.7"), ], ), @@ -234,11 +226,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "AGENT_VERSION": "testagent", }, venvs=[ - Venv(pys=select_pys(max_version="3.5")), - # DEV: attrs marked Python 3.6 as deprecated in 22.2.0, - # this logs a warning and causes these tests to fail - # https://www.attrs.org/en/22.2.0/changelog.html#id1 - Venv(pys=["3.6"], pkgs={"attrs": "<22.2.0"}), Venv(pys=select_pys(min_version="3.7")), ], ), @@ -255,16 +242,11 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "AGENT_VERSION": "latest", }, venvs=[ - Venv(pys=select_pys(max_version="3.5")), Venv( pkgs={ "six": "==1.12.0", }, venvs=[ - # DEV: attrs marked Python 3.6 as deprecated in 22.2.0, - # this logs a warning and causes these tests to fail - # https://www.attrs.org/en/22.2.0/changelog.html#id1 - Venv(pys="3.6", pkgs={"attrs": "<22.2.0"}), Venv(pys="3.7"), ], ), @@ -279,19 +261,10 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): pkgs={ "httpretty": "==0.9.7", "gevent": latest, + "pytest-asyncio": latest, }, - venvs=[ - Venv(pys="2.7"), - Venv( - pys=select_pys(min_version="3.5", max_version="3.6"), - pkgs={"pytest-asyncio": latest}, - ), - # FIXME[bytecode-3.11]: internal depends on bytecode, which is not python 3.11 compatible. - Venv( - pys=select_pys(min_version="3.7"), - pkgs={"pytest-asyncio": latest}, - ), - ], + # FIXME[bytecode-3.11]: internal depends on bytecode, which is not python 3.11 compatible. + pys=select_pys(min_version="3.7"), ), Venv( name="gevent", @@ -301,30 +274,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "pynamodb": latest, }, venvs=[ - Venv( - pys="2.7", - pkgs={ - "gevent": "~=1.3.0", - "greenlet": "~=1.0", - "requests": "==2.20.0", - "opensearch-py": "==1.0.0", - "botocore": "==1.17.30", - }, - ), - Venv( - pys=select_pys(min_version="3.5", max_version="3.6"), - pkgs={ - "gevent": "~=1.3.0", - "greenlet": "~=1.0", - "elasticsearch": "==6.3.1", - "pynamodb": "==3.3.1", - "requests": "==2.22.0", - "six": "==1.12.0", - "aiohttp": latest, - "aiobotocore": "<=2.3.1", - "opensearch-py": "~=1.0", - }, - ), Venv( pkgs={ "aiobotocore": "<=2.3.1", @@ -394,14 +343,9 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "msgpack": latest, "httpretty": "==0.9.7", "typing-extensions": latest, + "pytest-asyncio": latest, }, - venvs=[ - Venv(pys="2.7"), - Venv( - pys=select_pys(min_version="3.5"), - pkgs={"pytest-asyncio": latest}, - ), - ], + pys=select_pys(min_version="3.7"), ), Venv( name="vendor", @@ -421,16 +365,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): # venvs=[ # FIXME: tests fail on vertica 1.x # Venv( - # # vertica-python dropped support for Python 2.7 in 1.3 - # pys="2.7", - # pkgs={"vertica-python": ["~=1.2.0"]}, - # ), - # Venv( - # # vertica-python dropped support for Python 3.5/3.6 in 1.1 - # pys=select_pys(min_version="3.5", max_version="3.6"), - # pkgs={"vertica-python": ["~=1.0"]}, - # ), - # Venv( # # vertica-python added support for Python 3.9/3.10 in 1.0 # pys=select_pys(min_version="3.7", max_version="3.10"), # pkgs={"vertica-python": ["~=1.0", latest]}, @@ -470,24 +404,14 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="falcon", command="pytest {cmdargs} tests/contrib/falcon", - venvs=[ - # FIXME: tests fail on Python 2.7 with falcon 2.0 - # Venv( - # # falcon dropped support for Python 2.7 in 3.0 - # pys="2.7", - # pkgs={"falcon": "~=2.0"}, - # ), - Venv( - pys=select_pys(min_version="3.5"), - pkgs={ - "falcon": [ - "~=3.0.0", - "~=3.0", # latest 3.x - latest, - ] - }, - ), - ], + pys=select_pys(min_version="3.7"), + pkgs={ + "falcon": [ + "~=3.0.0", + "~=3.0", # latest 3.x + latest, + ] + }, ), Venv( name="bottle", @@ -535,7 +459,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "pytest-mock": "==2.0.0", }, venvs=[ - Venv(pys=select_pys(max_version="3.6")), # exceptiongroup latest specified to avoid riot bug: https://github.com/DataDog/riot/issues/211 Venv(pys="3.7", pkgs={"exceptiongroup": latest}), ], @@ -552,22 +475,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "kombu": "~=4.4", }, ), - Venv( - # celery dropped support for Python 3.6 in 5.2 - pys="3.6", - env={ - # https://docs.celeryproject.org/en/v5.0.5/userguide/testing.html#enabling - "PYTEST_PLUGINS": "celery.contrib.pytest", - }, - pkgs={ - "celery": [ - "~=5.0.0", - "~=5.1.0", - ], - "redis": "~=3.5", - "importlib_metadata": "<5.0", # kombu using deprecated shims removed in importlib_metadata 5.0 - }, - ), # Celery 5.x wants Python 3.6+ # Split into <3.8 and >=3.8 to pin importlib_metadata dependency for kombu Venv( @@ -617,21 +524,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): ), ], ), - Venv( - name="pylons", - command="python -m pytest {cmdargs} tests/contrib/pylons", - venvs=[ - Venv( - pys="2.7", - pkgs={ - "pylons": ">=1.0,<1.1", - "decorator": "<5", - "pastedeploy": "<3", - "pyrsistent": latest, - }, - ), - ], - ), Venv( name="cherrypy", command="python -m pytest {cmdargs} tests/contrib/cherrypy", @@ -647,10 +539,8 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): }, ), Venv( - # cherrypy dropped support for Python 2.7 in 18.0 - # cherrypy dropped support for Python 3.5 in 18.7 # cherrypy added support for Python 3.11 in 18.7 - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "cherrypy": [">=18.0,<19", latest], "more_itertools": "<8.11.0", @@ -665,11 +555,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "mongoengine": latest, }, venvs=[ - Venv( - # pymongo dropped support for Python 2.7/3.5/3.6 in 4.0 - pys=select_pys(max_version="3.6"), - pkgs={"pymongo": ["~=3.4", "~=3.11", "~=3.13"]}, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={"pymongo": ["~=3.11", "~=4.0", latest]} ), @@ -707,19 +592,9 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "DD_IAST_REQUEST_SAMPLING": "100", # Override default 30% to analyze all IAST requests }, venvs=[ - Venv( - # django dropped support for Python 2.7 in 2.0 - pys="2.7", - pkgs={"django": "~=1.11"}, - ), - Venv( - # django dropped support for Python 3.5 in 3.0 - pys="3.5", - pkgs={"django": "~=2.2"}, - ), Venv( # django dropped support for Python 3.6/3.7 in 4.0 - pys=select_pys(min_version="3.6", max_version="3.7"), + pys=select_pys(max_version="3.7"), pkgs={ "django": "~=3.2", "channels": ["~=3.0", latest], @@ -762,14 +637,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): }, venvs=[ Venv( - pys="3.5", - pkgs={ - "django_hosts": "~=4.0", - "django": "~=2.2", - }, - ), - Venv( - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "django_hosts": "~=4.0", "django": "~=3.2", @@ -789,32 +657,16 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/djangorestframework", pkgs={"pytest-django": "==3.10.0"}, venvs=[ - Venv( - # djangorestframework dropped support for Python 2.7 in 3.10.0 - pys="2.7", - pkgs={ - "django": "==1.11", - "djangorestframework": "~=3.9.3", - }, - ), - Venv( - # djangorestframework dropped support for Python 3.5 in 3.13.0 - pys="3.5", - pkgs={ - "django": ">=2.2,<2.3", - "djangorestframework": "~=3.12", - }, - ), Venv( # djangorestframework dropped support for Django 2.x in 3.14 - pys=select_pys(min_version="3.6", max_version="3.9"), + pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={ "django": ">=2.2,<2.3", "djangorestframework": ["==3.12.4", "==3.13.1"], }, ), Venv( - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "django": "~=3.2", "djangorestframework": ">=3.11,<3.12", @@ -889,7 +741,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/elasticsearch/test_es8_patch.py", venvs=[ Venv( - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "elasticsearch8": [latest], }, @@ -900,16 +752,8 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): name="elasticsearch-opensearch", # avoid running tests in ElasticsearchPatchTest, only run tests with OpenSearchPatchTest configurations command="pytest {cmdargs} tests/contrib/elasticsearch/test_opensearch.py -k 'not ElasticsearchPatchTest'", - venvs=[ - Venv( - pys=select_pys(max_version="3.5"), - pkgs={"opensearch-py[requests]": ["~=1.1.0", "~=2.0.0"]}, - ), - Venv( - pys=select_pys(min_version="3.6"), - pkgs={"opensearch-py[requests]": ["~=1.1.0", "~=2.0.0", latest]}, - ), - ], + pys=select_pys(), + pkgs={"opensearch-py[requests]": ["~=1.1.0", "~=2.0.0", latest]}, ), Venv( name="flask", @@ -951,21 +795,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): }, ), # Flask >= 2.0.0 - Venv( - # flask dropped support for Python 3.6 in 2.1 - pys="3.6", - pkgs={"flask": "~=2.0.0"}, - ), - Venv( - # flask dropped support for Python 3.6 in 2.1 - pys="3.6", - command="python tests/ddtrace_run.py pytest {cmdargs} tests/contrib/flask_autopatch", - env={ - "DD_SERVICE": "test.flask.service", - "DD_PATCH_MODULES": "jinja2:false", - }, - pkgs={"flask": "~=2.0.0"}, - ), Venv( # flask dropped support for Python 2.7/3.5 in 2.0 # flask added support for Python 3.10/3.11 in 2.0 @@ -1054,35 +883,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv(pys=select_pys(min_version="3.8", max_version="3.9"), pkgs={"exceptiongroup": latest}), ], ), - Venv( - # flask-caching dropped support for Python 3.5 in 1.8 - pys="3.5", - pkgs={ - "flask": "~=1.0.0", - "flask-caching": "~=1.7.0", - # https://github.com/pallets/itsdangerous/issues/290 - # DEV: Breaking change made in 2.0 release - "itsdangerous": "<2.0", - # https://github.com/pallets/markupsafe/issues/282 - # DEV: Breaking change made in 2.1.0 release - "markupsafe": "<2.0", - }, - ), - Venv( - # flask-caching dropped support for Python 3.6 in 1.11 - pys="3.6", - pkgs={ - "flask": "~=1.0.0", - "flask-caching": "~=1.10.0", - # https://github.com/pallets/itsdangerous/issues/290 - # DEV: Breaking change made in 2.0 release - "itsdangerous": "<2.0", - # https://github.com/pallets/markupsafe/issues/282 - # DEV: Breaking change made in 2.1.0 release - "markupsafe": "<2.0", - "Jinja2": "~=2.11.0", - }, - ), Venv( pys=select_pys(min_version="3.7"), pkgs={ @@ -1115,16 +915,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): name="mysql", command="pytest {cmdargs} tests/contrib/mysql", venvs=[ - Venv( - # mysql-connector-python dropped support for Python 2.7/3.5 in 8.0.24 - pys=select_pys(max_version="3.5"), - pkgs={"mysql-connector-python": ["==8.0.5", "==8.0.23"]}, - ), - Venv( - # mysql-connector-python dropped support for Python 3.6 in 8.0.29 - pys="3.6", - pkgs={"mysql-connector-python": ["==8.0.5", "==8.0.29"]}, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={"mysql-connector-python": ["==8.0.5", latest]}, @@ -1146,17 +936,11 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/psycopg2", venvs=[ Venv( - # psycopg2-binary dropped support for Python 2.7 in 2.9 - pys="2.7", - # DEV: Use `psycopg2-binary` so we don't need PostgreSQL dev headers - pkgs={"psycopg2-binary": "~=2.8.0"}, - ), - Venv( - pys=select_pys(min_version="3.6", max_version="3.8"), + pys=select_pys(min_version="3.7", max_version="3.8"), pkgs={"psycopg2-binary": "~=2.8.0"}, ), Venv( - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), # psycopg2-binary added support for Python 3.9/3.10 in 2.9.1 # psycopg2-binary added support for Python 3.11 in 2.9.2 pkgs={"psycopg2-binary": ["~=2.9.2", latest]}, @@ -1169,7 +953,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): pkgs={"pytest-asyncio": latest}, venvs=[ Venv( - pys=select_pys(min_version="3.6", max_version="3.11"), + pys=select_pys(min_version="3.7", max_version="3.11"), # Python 3.6 supported up to 3.1.0 pkgs={"psycopg": ["~=3.0.18"]}, ), @@ -1200,16 +984,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/pynamodb", venvs=[ Venv( - # pynamodb dropped support for Python 2.7/3.5 in 4.4 - pys=select_pys(max_version="3.5"), - pkgs={ - "pynamodb": ["~=4.3.0"], - "moto": ">=0.0,<1.0", - "rsa": "<4.7.1", - }, - ), - Venv( - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "pynamodb": ["~=5.0", "~=5.3", latest], "moto": ">=1.0,<2.0", @@ -1232,11 +1007,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "databases": latest, }, venvs=[ - Venv( - # starlette dropped support for Python 3.6 in 0.20 - pys="3.6", - pkgs={"starlette": ["~=0.14", "~=0.19"]}, - ), Venv( # starlette added support for Python 3.9 in 0.14 pys=select_pys(min_version="3.7", max_version="3.9"), @@ -1260,15 +1030,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): venvs=[ Venv( venvs=[ - Venv( - # sqlalchemy dropped support for Python 2.7/3.5/3.6 in 2.0 - pys=select_pys(max_version="3.6"), - pkgs={ - "sqlalchemy": ["<2.0"], - "psycopg2-binary": "~=2.8.0", - "mysql-connector-python": "<8.0.24", - }, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={ @@ -1305,23 +1066,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/requests", venvs=[ Venv( - # requests dropped support for Python 2.7 in 2.28 - pys="2.7", - pkgs={ - "requests-mock": ">=1.4", - "requests": ["~=2.26", "~=2.27"], - }, - ), - Venv( - # requests dropped support for Python 3.5 in 2.26 - pys="3.5", - pkgs={ - "requests-mock": ">=1.4", - "requests": ["~=2.20", "~=2.25"], - }, - ), - Venv( - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "requests-mock": ">=1.4", "requests": [ @@ -1366,55 +1111,22 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): ), ], ), - Venv( - name="boto", - command="pytest {cmdargs} tests/contrib/boto", - venvs=[Venv(pys=select_pys(max_version="3.6"), pkgs={"boto": latest, "moto": "<1.0.0"})], - ), Venv( name="botocore", command="pytest {cmdargs} tests/contrib/botocore", venvs=[ Venv(pys=select_pys(min_version="3.8"), pkgs={"moto[all]": latest, "botocore": latest}), Venv( - pys=["2.7"], - pkgs={ - "moto": "~=1.0", - "botocore": "~=1.20.0", - "python-jose[cryptography]": "==3.1.0", - "rsa": "<4.7.1", - }, - ), - Venv( + pys=["3.7"], pkgs={ "cffi": "==1.14.0", "cfn-lint": "==0.33.2", "jinja2": "~=2.11.0", "python-jose[cryptography]": "==3.1.0", + "moto[all]": "~=2.0", + "graphql-core": "~=3.1.0", + "markupsafe": "<2.0", }, - venvs=[ - Venv( - pys=["3.5"], - pkgs={ - "moto[all]": "~=1.0", - }, - ), - Venv( - pys=["3.6"], - pkgs={ - "moto[all]": "~=2.0", - "graphql-core": "~=3.1.0", - }, - venvs=[ - Venv( - pys=["3.7"], - pkgs={ - "markupsafe": "<2.0", - }, - ), - ], - ), - ], ), ], ), @@ -1426,17 +1138,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): }, venvs=[ Venv( - # mongoengine dropped support for Python 2.7 in 0.20 - pys="2.7", - pkgs={"mongoengine": "~=0.19"}, - ), - Venv( - # mongoengine dropped support for Python 3.5 in 0.22 - pys="3.5", - pkgs={"mongoengine": "<0.22"}, - ), - Venv( - pys=select_pys(min_version="3.6", max_version="3.8"), + pys=select_pys(min_version="3.7", max_version="3.8"), pkgs={"mongoengine": ["~=0.23", latest]}, ), Venv( @@ -1453,7 +1155,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "httpx": latest, "asgiref": ["~=3.0.0", "~=3.0", latest], }, - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), command="pytest {cmdargs} tests/contrib/asgi", ), Venv( @@ -1461,7 +1163,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/mariadb", venvs=[ Venv( - pys=select_pys(min_version="3.6", max_version="3.10"), + pys=select_pys(min_version="3.7", max_version="3.10"), pkgs={ "mariadb": [ "~=1.0.0", @@ -1477,20 +1179,13 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): name="pymysql", command="pytest {cmdargs} tests/contrib/pymysql", venvs=[ - Venv( - # pymysql dropped support for Python 2.7/3.5 in 1.0 - pys=select_pys(max_version="3.5"), - pkgs={ - "pymysql": "~=0.9", - }, - ), Venv( # pymysql added support for Python 3.8/3.9 in 0.10 pys=select_pys(min_version="3.8", max_version="3.9"), pkgs={"pymysql": "~=0.10"}, ), Venv( - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "pymysql": [ "~=1.0", @@ -1510,19 +1205,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): }, venvs=[ Venv( - # pyramid dropped support for Python 2.7/3.5 in 2.0 - # pserve_app has PasteDeploy dependency, but PasteDeploy>=3.0 is incompatible with Python 2.7 - # pyramid>=2.0 no longer supports Python 2.7 and 3.5 - pys=select_pys(max_version="3.5"), - pkgs={ - "pastedeploy": "<3.0", - "pyramid": [ - "~=1.10", - ], - }, - ), - Venv( - pys=select_pys(min_version="3.6", max_version="3.9"), + pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={ "pyramid": [ "~=1.10", @@ -1547,15 +1230,8 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): venvs=[ # async_generator 1.10 used because @asynccontextmanager was only available in Python 3.6+ # aiobotocore 1.x and higher require Python 3.6 or higher - # aiobotocore dropped Python 3.5 support in 0.12 - Venv( - pys="3.5", - pkgs={ - "aiobotocore": ["~=0.11"], - }, - ), Venv( - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "aiobotocore": ["~=1.4.2", "~=2.0.0", latest], }, @@ -1572,11 +1248,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "aiofiles": latest, }, venvs=[ - Venv( - # fastapi dropped support for Python 3.6 in 0.84 - pys="3.6", - pkgs={"fastapi": ["~=0.64.0", "~=0.83.0"]}, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.10"), pkgs={"fastapi": ["~=0.64.0", "~=0.90.0", latest]}, @@ -1602,16 +1273,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/pytest/", venvs=[ Venv( - pys=["2.7"], - # pytest==4.6 is last to support python 2.7 - pkgs={ - "pytest": ">=4.0,<=4.6", - "msgpack": latest, - "pytest-cov": "==2.12.1", - }, - ), - Venv( - pys=select_pys(min_version="3.5", max_version="3.9"), + pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={ "pytest": [ ">=6.0,<7.0", @@ -1655,7 +1317,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/asynctest/", venvs=[ Venv( - pys=select_pys(min_version="3.5", max_version="3.9"), + pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={ "pytest": [ ">=6.0,<7.0", @@ -1668,48 +1330,30 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="pytest-bdd", command="pytest {cmdargs} tests/contrib/pytest_bdd/", - pkgs={"msgpack": latest}, + pkgs={ + "msgpack": latest, + "more_itertools": "<8.11.0", + }, venvs=[ Venv( - pys=["2.7"], - # pytest-bdd==3.4 is last to support python 2.7 - pkgs={"pytest-bdd": ">=3.0,<3.5"}, + pys=select_pys(min_version="3.7", max_version="3.9"), + pkgs={ + "pytest-bdd": [ + ">=4.0,<5.0", + # FIXME: add support for v6.1 + ">=6.0,<6.1", + ] + }, ), Venv( + pys=select_pys(min_version="3.10"), pkgs={ - "more_itertools": "<8.11.0", + "pytest-bdd": [ + ">=4.0,<5.0", + # FIXME: add support for v6.1 + ">=6.0,<6.1", + ] }, - venvs=[ - Venv( - pys=["3.6"], - pkgs={"pytest-bdd": [">=4.0,<5.0"]}, - ), - Venv( - pys=select_pys(min_version="3.7", max_version="3.9"), - pkgs={ - "pytest-bdd": [ - ">=4.0,<5.0", - ">=6.0,<7.0", - ], - "typing-extensions": [ - latest, - ], - }, - ), - Venv( - pys=select_pys(min_version="3.10"), - pkgs={ - "pytest-bdd": [ - ">=4.0,<5.0", - ">=6.0,<7.0", - latest, - ], - "typing-extensions": [ - latest, - ], - }, - ), - ], ), ], ), @@ -1722,22 +1366,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): venvs=[ # Versions between 1.14 and 1.20 have known threading issues # See https://github.com/grpc/grpc/issues/18994 - Venv( - # grpcio dropped support for Python 2.7 in 1.27 - pys="2.7", - pkgs={"grpcio": ["~=1.26.0"]}, - ), - Venv( - # grpcio dropped support for Python 3.5 in 1.40, but aio module (not compatible with Python 3.5) - # was added in 1.32 - pys="3.5", - pkgs={"grpcio": ["~=1.31.0"]}, - ), - Venv( - # grpcio dropped support for Python 3.6 in 1.49 - pys="3.6", - pkgs={"grpcio": ["~=1.34.0", "~=1.48.0"]}, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={"grpcio": ["~=1.34.0", latest]}, @@ -1763,11 +1391,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "pytest-asyncio": latest, }, venvs=[ - Venv( - # grpcio dropped support for Python 3.6 in 1.49 - pys="3.6", - pkgs={"grpcio": ["~=1.34.0", "~=1.48.0"]}, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={"grpcio": ["~=1.34.0", latest]}, @@ -1788,7 +1411,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="graphene", command="pytest {cmdargs} tests/contrib/graphene", - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "graphene": ["~=3.0.0", latest], "pytest-asyncio": latest, @@ -1798,43 +1421,18 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="graphql", command="pytest {cmdargs} tests/contrib/graphql", - venvs=[ - Venv( - pys=["3.6"], - pkgs={ - "pytest-asyncio": latest, - "graphql-core": ["~=3.1.0"], - }, - ), - Venv( - pys=select_pys(min_version="3.7"), - pkgs={ - "pytest-asyncio": latest, - "graphql-core": ["~=3.1.0", "~=3.2.0", latest], - }, - ), - ], + pys=select_pys(min_version="3.7"), + pkgs={ + "pytest-asyncio": latest, + "graphql-core": ["~=3.1.0", "~=3.2.0", latest], + }, ), Venv( name="rq", command="pytest tests/contrib/rq", venvs=[ Venv( - # rq dropped support for Python 2.7 in 1.4.0 - pys="2.7", - pkgs={ - "rq": [ - "~=1.3.0", - ], - }, - ), - Venv( - # rq dropped support for Python 3.5 in 1.12 - pys="3.5", - pkgs={"rq": ["~=1.8.0", "~=1.11.1"]}, - ), - Venv( - pys=select_pys(min_version="3.6", max_version="3.8"), + pys=select_pys(min_version="3.7", max_version="3.8"), pkgs={ "rq": [ "~=1.8.0", @@ -1867,7 +1465,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): ), Venv( name="httpx", - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), command="pytest {cmdargs} tests/contrib/httpx", pkgs={ "pytest-asyncio": latest, @@ -1882,11 +1480,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): name="urllib3", command="pytest {cmdargs} tests/contrib/urllib3", venvs=[ - Venv( - # urllib3 to drop support for Python 2.7/3.5/3.6 in 2.0 - pys=select_pys(max_version="3.6"), - pkgs={"urllib3": ["~=1.26.4", "<2.0"]}, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.8"), pkgs={"urllib3": ["~=1.26.4", latest]}, @@ -1922,14 +1515,9 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/algoliasearch", venvs=[ Venv( - # algoliasearch dropped support for Python 2.7 in 3.0 - pys="2.7", - pkgs={ - "algoliasearch": ["~=2.5", "~=2.6"], - "pyrsistent": "~=0.14.0", - }, + pys=select_pys(min_version="3.7", max_version="3.8"), + pkgs={"algoliasearch": ["~=2.5", "~=2.6"]}, ), - Venv(pys=select_pys(min_version="3.5", max_version="3.8"), pkgs={"algoliasearch": ["~=2.5", "~=2.6"]}), Venv( # algoliasearch added support for Python 3.9, 3.10, 3.11 in 3.0 pys=select_pys(min_version="3.9"), @@ -1940,7 +1528,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="aiopg", command="pytest {cmdargs} tests/contrib/aiopg", - pys=select_pys(min_version="3.5", max_version="3.9"), + pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={ "sqlalchemy": latest, "aiopg": "~=0.16.0", @@ -1988,76 +1576,32 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/aiohttp", pkgs={ "pytest-aiohttp": [latest], + "pytest-asyncio": [latest], + "aiohttp": [ + "~=3.7", + latest, + ], + "yarl": "~=1.0", }, - venvs=[ - Venv( - pys="3.5", - pkgs={ - # aiohttp 3.8 dropped support for Python 3.5 - "aiohttp": ["~=2.3", "<3.8"], - "async-timeout": ["<4.0.0"], - }, - ), - Venv( - # pytest-asyncio is incompatible with aiohttp 3.0+ in Python 3.6 - pys="3.6", - pkgs={ - "aiohttp": [ - "~=3.7", - latest, - ], - "yarl": "~=1.0", - }, - ), - Venv( - pys=select_pys(min_version="3.7"), - pkgs={ - "pytest-asyncio": [latest], - "aiohttp": [ - "~=3.7", - latest, - ], - "yarl": "~=1.0", - }, - ), - ], + pys=select_pys(min_version="3.7"), ), Venv( name="aiohttp_jinja2", command="pytest {cmdargs} tests/contrib/aiohttp_jinja2", pkgs={ "pytest-aiohttp": [latest], + "pytest-asyncio": [latest], + "aiohttp": [ + "~=3.7", + latest, + ], + "aiohttp_jinja2": [ + "~=1.5.0", + latest, + ], + "jinja2": latest, }, - venvs=[ - Venv( - pys="3.6", - pkgs={ - "aiohttp": [ - "~=3.7", - latest, - ], - "aiohttp_jinja2": [ - "~=1.5.0", - latest, - ], - }, - ), - Venv( - pys=select_pys(min_version="3.7"), - pkgs={ - "pytest-asyncio": [latest], - "aiohttp": [ - "~=3.7", - latest, - ], - "aiohttp_jinja2": [ - "~=1.5.0", - latest, - ], - "jinja2": latest, - }, - ), - ], + pys=select_pys(min_version="3.7"), ), Venv( name="jinja2", @@ -2072,7 +1616,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): }, ), Venv( - pys=select_pys(min_version="3.6"), + pys=select_pys(min_version="3.7"), pkgs={ "jinja2": ["~=3.0.0", latest], }, @@ -2093,15 +1637,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): name="redis", venvs=[ Venv( - # redis dropped support for Python 2.7/3.5 in 4.0 - pys=select_pys(max_version="3.5"), - command="pytest {cmdargs} --ignore-glob='*asyncio*' tests/contrib/redis", - pkgs={ - "redis": ["~=3.5.3"], - }, - ), - Venv( - pys=select_pys(min_version="3.6", max_version="3.10"), + pys=select_pys(min_version="3.7", max_version="3.10"), command="pytest {cmdargs} tests/contrib/redis", pkgs={ "pytest-asyncio": latest, @@ -2125,7 +1661,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): ), Venv( name="aredis", - pys=select_pys(min_version="3.6", max_version="3.9"), + pys=select_pys(min_version="3.7", max_version="3.9"), command="pytest {cmdargs} tests/contrib/aredis", pkgs={ "pytest-asyncio": latest, @@ -2138,7 +1674,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): pkgs={"pytest-asyncio": latest}, venvs=[ Venv( - pys=select_pys(min_version="3.6", max_version="3.9"), + pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={"yaaredis": ["~=2.0.0", latest]}, ), Venv( @@ -2204,30 +1740,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/snowflake", pkgs={"responses": "~=0.16.0", "cryptography": "<39"}, venvs=[ - Venv( - # snowflake-connector-python dropped support for Python 2.7 in 2.2.0 - pys="2.7", - pkgs={ - "snowflake-connector-python": "~=2.1.0", - "pyOpenSSL": "~=19.1", - }, - ), - Venv( - # snowflake-connector-python dropped support for Python 3.5 in 2.3.0 - pys="3.5", - pkgs={ - "snowflake-connector-python": "~=2.2.0", - "pyOpenSSL": "~=19.1", - }, - ), - Venv( - # snowflake-connector-python dropped support for Python 3.6 in 2.7.5 - pys="3.6", - pkgs={ - "snowflake-connector-python": ["~=2.4.0", "~=2.7.4"], - "pyOpenSSL": "~=19.1", - }, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.8"), pkgs={"snowflake-connector-python": ["~=2.3.0", "~=2.9.0", latest]}, @@ -2260,7 +1772,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="aioredis", # aioredis was merged into redis as of v2.0.1, no longer maintained and does not support Python 3.11 onward - pys=select_pys(min_version="3.6", max_version="3.10"), + pys=select_pys(min_version="3.7", max_version="3.10"), command="pytest {cmdargs} tests/contrib/aioredis", pkgs={ "pytest-asyncio": latest, @@ -2279,11 +1791,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): }, venvs=[ # our test_asyncpg.py uses `yield` in an async function and is not compatible with Python 3.5 - Venv( - # asyncpg dropped support for Python 3.6 in 0.27 - pys="3.6", - pkgs={"asyncpg": ["~=0.23", "~=0.26"]}, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.8"), pkgs={"asyncpg": ["~=0.23", latest]}, @@ -2308,7 +1815,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="asyncio", command="pytest {cmdargs} tests/contrib/asyncio", - pys=select_pys(min_version="3.5"), + pys=select_pys(), pkgs={ "pytest-asyncio": latest, }, @@ -2317,21 +1824,13 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): name="futures", command="pytest {cmdargs} tests/contrib/futures", pkgs={"gevent": latest}, - venvs=[ - # futures is backported for 2.7 - Venv(pys=["2.7"], pkgs={"futures": ["~=3.0", "~=3.1", "~=3.2", "~=3.4"]}), - Venv( - pys=select_pys(min_version="3.5"), - ), - ], + pys=select_pys(), ), Venv( name="sqlite3", command="pytest {cmdargs} tests/contrib/sqlite3", venvs=[ - Venv( - pys=["2.7", "3.5", "3.6", "3.8", "3.9", "3.10", "3.11"], - ), + Venv(pys=select_pys(min_version="3.8")), Venv(pys=["3.7"], pkgs={"importlib-metadata": latest}), ], ), @@ -2346,7 +1845,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="dbapi_async", command="pytest {cmdargs} tests/contrib/dbapi_async", - pys=select_pys(min_version="3.6"), env={ "DD_IAST_REQUEST_SAMPLING": "100", # Override default 30% to analyze all IAST requests }, @@ -2354,10 +1852,9 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): "pytest-asyncio": latest, }, venvs=[ - Venv( - pys=["3.6", "3.8", "3.9", "3.10"], - ), - Venv(pys=["3.11"], pkgs={"attrs": latest}), + Venv(pys=["3.7"]), + Venv(pys=select_pys(min_version="3.8", max_version="3.10")), + Venv(pys=select_pys(min_version="3.11"), pkgs={"attrs": latest}), ], ), Venv( @@ -2365,15 +1862,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/dogpile_cache", venvs=[ Venv( - # dogpile.cache dropped support for Python 2.7/3.5 in 1.0 - pys=select_pys(max_version="3.5"), - pkgs={ - "dogpile.cache": ["~=0.8", "~=0.9"], - "decorator": "<5", - }, - ), - Venv( - pys=select_pys(min_version="3.6", max_version="3.10"), + pys=select_pys(min_version="3.7", max_version="3.10"), pkgs={ "dogpile.cache": [ "~=0.9", @@ -2466,12 +1955,12 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/opentracer/core", ), Venv( - pys=select_pys(min_version="3.5"), + pys=select_pys(min_version="3.7"), command="pytest {cmdargs} tests/opentracer/test_tracer_asyncio.py", pkgs={"pytest-asyncio": latest}, ), Venv( - pys=select_pys(min_version="3.5"), + pys=select_pys(min_version="3.7"), command="pytest {cmdargs} tests/opentracer/test_tracer_tornado.py", # TODO: update opentracing tests to be compatible with Tornado v6. # https://github.com/opentracing/opentracing-python/issues/136 @@ -2482,13 +1971,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( command="pytest {cmdargs} tests/opentracer/test_tracer_gevent.py", venvs=[ - Venv( - pys=select_pys(max_version="3.6"), - pkgs={ - "gevent": "~=1.2.0", - "greenlet": "~=1.0", - }, - ), Venv( pys=select_pys(min_version="3.7", max_version="3.8"), pkgs={ @@ -2546,16 +2028,9 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): name="pylibmc", command="pytest {cmdargs} tests/contrib/pylibmc", venvs=[ - Venv( - # pylibmc dropped support for Python 2.7/3.5 in 1.6.2 - pys=select_pys(max_version="3.5"), - pkgs={ - "pylibmc": "~=1.6.1", - }, - ), Venv( # pylibmc added support for Python 3.8/3.9/3.10 in 1.6.2 - pys=select_pys(min_version="3.6", max_version="3.10"), + pys=select_pys(min_version="3.7", max_version="3.10"), pkgs={ "pylibmc": ["~=1.6.2", latest], }, @@ -2572,18 +2047,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): name="kombu", command="pytest {cmdargs} tests/contrib/kombu", venvs=[ - Venv( - # kombu dropped support for Python 2.5/3.5/3.6 in 5.0 - pys=select_pys(max_version="3.6"), - pkgs={ - "kombu": [ - ">=4.0,<4.1", - ">=4.6,<4.7", - ], - # kombu using deprecated shims removed in importlib-metadata 5.0 pre-Python 3.8 - "importlib_metadata": "<5.0", - }, - ), # Kombu>=4.2 only supports Python 3.7+ Venv( pys="3.7", @@ -2612,23 +2075,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): name="tornado", command="python -m pytest {cmdargs} tests/contrib/tornado", venvs=[ - Venv( - # tornado dropped support for Python 2.7 in 6.0 - pys="2.7", - pkgs={ - "tornado": [ - "~=4.5", - # "~=5.1.1" # FIXME: tests fail on Python 2.7 with tornado 5.1.1 - ], - "futures": ["~=3.3", latest], - }, - ), - # FIXME: tests fail on Python 3.5/3.6 with tornado 5.1, 6.1 - # Venv( - # # tornado dropped support for Python 3.5/3.6 in 6.2 - # pys=select_pys(min_version="3.5", max_version="3.6"), - # pkgs={"tornado": ["~=5.1.1", "~=6.1"]}, - # ), Venv( # tornado added support for Python 3.7 in 5.1 pys="3.7", @@ -2651,12 +2097,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): command="pytest {cmdargs} tests/contrib/mysqldb", venvs=[ Venv( - # mysqlclient dropped support for Python 2.7/3.5 in 2.0 - pys=select_pys(max_version="3.5"), - pkgs={"mysqlclient": "~=1.4.6"}, - ), - Venv( - pys=select_pys(min_version="3.6", max_version="3.9"), + pys=select_pys(min_version="3.7", max_version="3.9"), pkgs={"mysqlclient": ["~=2.0", "~=2.1", latest]}, ), Venv( @@ -2687,7 +2128,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="molten", command="pytest {cmdargs} tests/contrib/molten", - pys=select_pys(min_version="3.6"), + pys=select_pys(), pkgs={ "cattrs": ["<23.1.1"], "molten": [">=1.0,<1.1", latest], @@ -2696,17 +2137,8 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( name="gunicorn", command="pytest {cmdargs} tests/contrib/gunicorn", - pkgs={"requests": latest, "gevent": latest}, - venvs=[ - Venv( - pys=select_pys(min_version="3.5"), - pkgs={"gunicorn": ["==20.0.4", latest]}, - ), - Venv( - pys="2.7", - pkgs={"gunicorn": ["==19.10.0"]}, - ), - ], + pkgs={"requests": latest, "gevent": latest, "gunicorn": ["==20.0.4", latest]}, + pys=select_pys(), ), Venv( name="kafka", @@ -2718,12 +2150,8 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): Venv( command="pytest {cmdargs} tests/contrib/kafka", venvs=[ - # confluent-kafka dropped official wheels for Python 2.7 in 1.8.2 - Venv(pys="2.7", pkgs={"confluent-kafka": "~=1.7.0"}), - # confluent-kafka>=1.7 has issues building on linux with Python 3.5 - Venv(pys="3.5", pkgs={"confluent-kafka": "~=1.5.0"}), Venv( - pys=select_pys(min_version="3.6", max_version="3.10"), + pys=select_pys(min_version="3.7", max_version="3.10"), pkgs={"confluent-kafka": ["~=1.9.2", latest]}, ), # confluent-kafka added support for Python 3.11 in 2.0.2 @@ -2758,6 +2186,7 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): ), Venv( name="profile", + command="python -m tests.profiling.run pytest --no-cov --capture=no --benchmark-disable {cmdargs} tests/profiling", # noqa: E501 pkgs={ "gunicorn": latest, # @@ -2765,24 +2194,18 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): # See https://github.com/workhorsy/py-cpuinfo/issues/177 "pytest-benchmark": latest, "py-cpuinfo": "~=8.0.0", + "uwsgi": latest, + "pytest-asyncio": latest, }, venvs=[ - # Python 2.7 + # Python 3.7 Venv( - # uWSGI tests are not supported on Python 2.7 - command='python -m tests.profiling.run pytest --capture=no --benchmark-disable --ignore-glob="*asyncio*" --ignore=tests/profiling/test_uwsgi.py {cmdargs} tests/profiling', # noqa: E501 - pys="2.7", + pys="3.7", venvs=[ Venv( pkgs={ - "protobuf": latest, - } - ), - # Minimum requirements - Venv( - pkgs={ - "protobuf": "==3.0.0", - } + "protobuf": ["==3.8.0", latest], + }, ), # Gevent Venv( @@ -2795,9 +2218,8 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): venvs=[ Venv( pkgs={ - # gevent==1.1 requires greenlet<2 - "gevent": "==1.1.0", - "greenlet": "<2", + "gevent": "==1.4.0", + "greenlet": "==0.4.14", } ), Venv( @@ -2807,191 +2229,88 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION): ), ], ), - # Python 3.5+ + # Python 3.8 + 3.9 Venv( - command="python -m tests.profiling.run pytest --no-cov --capture=no --benchmark-disable {cmdargs} tests/profiling", # noqa: E501 - pkgs={ - "uwsgi": latest, - "pytest-asyncio": latest, - }, + pys=["3.8", "3.9"], venvs=[ - # Python 3.5-3.6 Venv( - pys=select_pys(min_version="3.5", max_version="3.6"), - venvs=[ - Venv( - pkgs={ - "protobuf": latest, - }, - ), - # Minimum requirements - Venv( - pkgs={ - "protobuf": "==3.8.0", - }, - create=True, # Needed bp Python 3.5 because of namespace packages - ), - # Gevent - Venv( - env={ - "DD_PROFILE_TEST_GEVENT": "1", - }, - pkgs={ - "gunicorn[gevent]": latest, - }, - venvs=[ - Venv( - pkgs={ - "gevent": "==1.4.0", - "greenlet": "==0.4.14", - } - ), - Venv( - pkgs={"gevent": latest}, - ), - ], - ), - ], + pkgs={ + "protobuf": ["==3.19.0", latest], + }, ), - # Python 3.7 + # Gevent Venv( - pys="3.7", + env={ + "DD_PROFILE_TEST_GEVENT": "1", + }, + pkgs={ + "gunicorn[gevent]": latest, + }, venvs=[ Venv( pkgs={ - "protobuf": latest, - }, - ), - # Minimum requirements - Venv( - pkgs={ - "protobuf": "==3.8.0", - }, + "gevent": "==20.6.1", + "greenlet": "==0.4.16", + } ), - # Gevent Venv( - env={ - "DD_PROFILE_TEST_GEVENT": "1", - }, - pkgs={ - "gunicorn[gevent]": latest, - }, - venvs=[ - Venv( - pkgs={ - "gevent": "==1.4.0", - "greenlet": "==0.4.14", - } - ), - Venv( - pkgs={"gevent": latest}, - ), - ], + pkgs={"gevent": latest}, ), ], ), - # Python 3.8 + 3.9 + ], + ), + # Python 3.10 + Venv( + pys="3.10", + venvs=[ Venv( - pys=["3.8", "3.9"], - venvs=[ - Venv( - pkgs={ - "protobuf": latest, - }, - ), - # Minimum requirements - Venv( - pkgs={ - "protobuf": "==3.19.0", - }, - ), - # Gevent - Venv( - env={ - "DD_PROFILE_TEST_GEVENT": "1", - }, - pkgs={ - "gunicorn[gevent]": latest, - }, - venvs=[ - Venv( - pkgs={ - "gevent": "==20.6.1", - "greenlet": "==0.4.16", - } - ), - Venv( - pkgs={"gevent": latest}, - ), - ], - ), - ], + pkgs={ + "protobuf": ["==3.19.0", latest], + }, ), - # Python 3.10 + # Gevent Venv( - pys="3.10", + env={ + "DD_PROFILE_TEST_GEVENT": "1", + }, + pkgs={ + "gunicorn[gevent]": latest, + }, venvs=[ Venv( pkgs={ - "protobuf": latest, - }, - ), - # Minimum requirements - Venv( - pkgs={ - "protobuf": "==3.19.0", - }, + "gevent": "==21.8.0", + "greenlet": "==1.1.0", + } ), - # Gevent Venv( - env={ - "DD_PROFILE_TEST_GEVENT": "1", - }, - pkgs={ - "gunicorn[gevent]": latest, - }, - venvs=[ - Venv( - pkgs={ - "gevent": "==21.8.0", - "greenlet": "==1.1.0", - } - ), - Venv( - pkgs={"gevent": latest}, - ), - ], + pkgs={"gevent": latest}, ), ], ), - # Python 3.11+ + ], + ), + # Python 3.11+ + Venv( + pys=select_pys(min_version="3.11"), + venvs=[ + Venv( + pkgs={ + "protobuf": ["==4.22.0", latest], + }, + ), + # Gevent Venv( - pys=select_pys(min_version="3.11"), + env={ + "DD_PROFILE_TEST_GEVENT": "1", + }, + pkgs={ + "gunicorn[gevent]": latest, + }, venvs=[ Venv( - pkgs={ - "protobuf": latest, - }, - ), - # Minimum requirements - Venv( - pkgs={ - "protobuf": "==4.22.0", - }, - ), - # Gevent - Venv( - env={ - "DD_PROFILE_TEST_GEVENT": "1", - }, - pkgs={ - "gunicorn[gevent]": latest, - }, - venvs=[ - Venv( - pkgs={"gevent": ["==22.10.2", latest]}, - ), - ], + pkgs={"gevent": ["==22.10.2", latest]}, ), ], ), diff --git a/setup.py b/setup.py index cdf11801523..1e3a0ec5c02 100644 --- a/setup.py +++ b/setup.py @@ -545,31 +545,20 @@ def get_ddup_ext(): "ddtrace.appsec.ddwaf": [os.path.join("libddwaf", "*", "lib", "libddwaf.*")], "ddtrace.appsec.iast._taint_tracking": ["CMakeLists.txt"], }, - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", + python_requires=">=3.7", zip_safe=False, # enum34 is an enum backport for earlier versions of python # funcsigs backport required for vendored debtcollector install_requires=[ "ddsketch>=2.0.1", - "enum34; python_version<'3.4'", - "funcsigs>=1.0.0; python_version=='2.7'", - "typing; python_version<'3.5'", "protobuf>=3; python_version>='3.7'", - "protobuf>=3,<4.0; python_version=='3.6'", - "protobuf>=3,<3.18; python_version<'3.6'", - "attrs>=20; python_version>'2.7'", - "attrs>=20,<22; python_version=='2.7'", - "contextlib2<1.0; python_version=='2.7'", - "cattrs<1.1; python_version<='3.6'", + "attrs>=20", "cattrs; python_version>='3.7'", "six>=1.12.0", "typing_extensions", "importlib_metadata; python_version<'3.8'", - "pathlib2; python_version<'3.5'", "xmltodict>=0.12", - "ipaddress; python_version<'3.7'", "envier", - "pep562; python_version<'3.7'", "opentelemetry-api>=1; python_version>='3.7'", ] + bytecode, @@ -598,10 +587,10 @@ def get_ddup_ext(): ], }, classifiers=[ + "Development Status :: 5 - Production/Stable", + "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python", - "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/tests/.suitespec.json b/tests/.suitespec.json index 01016df2623..c226bebdcf6 100644 --- a/tests/.suitespec.json +++ b/tests/.suitespec.json @@ -157,10 +157,6 @@ "ddtrace/contrib/pyramid/*", "tests/contrib/pyramid/*" ], - "pylons": [ - "ddtrace/contrib/pylons/*", - "tests/contrib/pylons/*" - ], "langchain": [ "ddtrace/contrib/langchain/*", "tests/contrib/langchain/*" @@ -249,11 +245,9 @@ "ddtrace/contrib/molten/*", "tests/contrib/molten/*" ], - "boto": [ - "ddtrace/contrib/boto/*", + "botocore": [ "ddtrace/contrib/botocore/*", "ddtrace/contrib/aiobotocore/*", - "tests/contrib/boto/*", "tests/contrib/botocore/*", "tests/contrib/aiobotocore/*" ], @@ -471,17 +465,11 @@ "vendor": [ "@vendor" ], - "boto": [ - "@bootstrap", - "@core", - "@tracing", - "@boto" - ], "botocore": [ "@bootstrap", "@core", "@tracing", - "@boto" + "@botocore" ], "test_logging": [ "@bootstrap", @@ -527,13 +515,6 @@ "@tracing", "@pg" ], - "pylons": [ - "@bootstrap", - "@core", - "@tracing", - "@appsec", - "@pylons" - ], "aiohttp": [ "@bootstrap", "@core", @@ -847,7 +828,7 @@ "@bootstrap", "@core", "@tracing", - "@boto" + "@aiobotocore" ], "aiomysql": [ "@bootstrap",