diff --git a/.github/actions/in-container/action.yml b/.github/actions/in-container/action.yml deleted file mode 100644 index eec1d4544..000000000 --- a/.github/actions/in-container/action.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: 'In container action' -description: 'Runs specified commands inside the specified container.' -inputs: - run: - description: 'Commands to run inside context' - required: true - shell: - description: 'shell to run command on inside docker' - default: 'bash --noprofile --norc -eo pipefail' - app: - description: 'docker-compose app to run command in' - required: true - default: 'web' - use_dev_image: - description: 'Can this use the current dev image or should it rebuild from scratch (still some layer caching benefits)' - default: 'false' - -runs: - using: "composite" - - steps: - - name: Build image from docker-compose - if: ${{ inputs.use_dev_image == 'false' }} - uses: ./.github/actions/cached-build - with: - branch: "master" - push_to_registry: false - - - name: construct docker command - shell: bash - run: | - if [ "$USE_DEV_IMAGE" = "true" ]; then - composeFiles="-f docker-compose.yml -f .devcontainer/docker-compose-extend-cached-image.yml" - else - composeFiles="-f docker-compose.yml" - fi - shellCommands='$@' - echo "docker-compose $composeFiles run --volume /home/runner:/home/runner/ ${{ inputs.app }} ${{ inputs.shell }} $shellCommands" > ${{ github.action_path }}/docker_command.sh - echo "${{ github.action_path }}" >> $GITHUB_PATH - env: - USE_DEV_IMAGE: ${{ inputs.use_dev_image}} - - - name: Run script in docker - shell: bash docker_command.sh {0} - run: | - ${{ inputs.run }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 70d2d13c8..2cfada1fb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,21 +3,21 @@ name: Lint on: + push: pull_request: - workflow_call: jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: black Lint + - name: Run black uses: psf/black@stable with: options: "--check --diff" src: "." version: "22.8.0" - - name: isort Lint + - name: Run isort uses: isort/isort-action@master - - name: flake8 Lint + - name: Run flake8 uses: py-actions/flake8@v2 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3b9e55c07..2c08ab2b6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,27 +11,24 @@ on: jobs: tests: runs-on: ubuntu-latest + container: + image: python:3.12 + env: + POETRY_VIRTUALENVS_CREATE: "false" steps: - - - name: checkout repo content + - name: Checkout repo content uses: actions/checkout@v2 - + - name: Install poetry + run: curl -sSL https://install.python-poetry.org | python3 - + - name: Install dependencies + run: ~/.local/bin/poetry export -f requirements.txt --output requirements.txt && pip install -r requirements.txt - name: Run django tests - uses: ./.github/actions/in-container - with: - use_dev_image: false - run: | - script/bootstrap - script/test --coverage - - # do this inside the docker container otherwise the paths don't work - - name: generate coverage xml - uses: ./.github/actions/in-container - with: - run: coverage xml - - # do this outside the docker container otherwise can't get repo details - - name: upload code coverage + run: | + script/bootstrap + coverage run --source=. --branch manage.py test + - name: Generate coverage xml + run: coverage xml + - name: Upload code coverage run: | less coverage.xml pip install codecov diff --git a/log.txt b/log.txt new file mode 100644 index 000000000..8d416add5 --- /dev/null +++ b/log.txt @@ -0,0 +1,1970 @@ +Creating virtualenv local-intelligence-hub-9TtSrW0h-py3.12 in /root/.cache/pypoetry/virtualenvs +[virtualenv] created app data folder /root/.local/share/virtualenv +[virtualenv] find interpreter for spec PythonSpec(path=/root/.local/share/pypoetry/venv/bin/python) +[filelock:filelock] Attempting to acquire lock 281473419434400 on /root/.local/share/virtualenv/py_info/1/4cd7ab41f5fca4b9b44701077e38c5ffd31fe66a6cab21e0214b68d958d0e462.lock +[filelock:filelock] Lock 281473419434400 acquired on /root/.local/share/virtualenv/py_info/1/4cd7ab41f5fca4b9b44701077e38c5ffd31fe66a6cab21e0214b68d958d0e462.lock +[virtualenv] get interpreter info via cmd: /usr/local/bin/python /root/.local/share/pypoetry/venv/lib/python3.12/site-packages/virtualenv/discovery/py_info.py CcG2OKdI3OVfaGn8f8ohrLGt4OFbvMbn suQPIBvyNH9vSAr1iwPabdEwIcENlh6B +[virtualenv] wrote python info of %s at (PosixPath('/usr/local/bin/python'), PosixPath('/root/.local/share/virtualenv/py_info/1/4cd7ab41f5fca4b9b44701077e38c5ffd31fe66a6cab21e0214b68d958d0e462.json')) +[filelock:filelock] Attempting to release lock 281473419434400 on /root/.local/share/virtualenv/py_info/1/4cd7ab41f5fca4b9b44701077e38c5ffd31fe66a6cab21e0214b68d958d0e462.lock +[filelock:filelock] Lock 281473419434400 released on /root/.local/share/virtualenv/py_info/1/4cd7ab41f5fca4b9b44701077e38c5ffd31fe66a6cab21e0214b68d958d0e462.lock +[virtualenv] proposed PythonInfo(spec=CPython3.12.2.final.0-64, system=/usr/local/bin/python, exe=/root/.local/share/pypoetry/venv/bin/python, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] accepted PythonInfo(spec=CPython3.12.2.final.0-64, system=/usr/local/bin/python, exe=/root/.local/share/pypoetry/venv/bin/python, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] filesystem is case-sensitive +[virtualenv] create virtual environment via CPython3Posix(dest=/root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12, clear=False, no_vcs_ignore=False, global=False) +[virtualenv] create folder /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/bin +[virtualenv] create folder /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/lib/python3.12/site-packages +[virtualenv] write /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +[virtualenv] symlink /usr/local/bin/python to /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/bin/python +[virtualenv] create virtualenv import hook file /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/lib/python3.12/site-packages/_virtualenv.pth +[virtualenv] create /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/lib/python3.12/site-packages/_virtualenv.py +[virtualenv] ============================== target debug ============================== +[virtualenv] debug via /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/bin/python /root/.local/share/pypoetry/venv/lib/python3.12/site-packages/virtualenv/create/debug.py +[virtualenv] { +[virtualenv] "sys": { +[virtualenv] "executable": "/root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/bin/python", +[virtualenv] "_base_executable": "/usr/local/bin/python3.12", +[virtualenv] "prefix": "/root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12", +[virtualenv] "base_prefix": "/usr/local", +[virtualenv] "real_prefix": null, +[virtualenv] "exec_prefix": "/root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12", +[virtualenv] "base_exec_prefix": "/usr/local", +[virtualenv] "path": [ +[virtualenv] "/usr/local/lib/python312.zip", +[virtualenv] "/usr/local/lib/python3.12", +[virtualenv] "/usr/local/lib/python3.12/lib-dynload", +[virtualenv] "/root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/lib/python3.12/site-packages" +[virtualenv] ], +[virtualenv] "meta_path": [ +[virtualenv] "", +[virtualenv] "", +[virtualenv] "", +[virtualenv] "" +[virtualenv] ], +[virtualenv] "fs_encoding": "utf-8", +[virtualenv] "io_encoding": "utf-8" +[virtualenv] }, +[virtualenv] "version": "3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]", +[virtualenv] "makefile_filename": "/usr/local/lib/python3.12/config-3.12-aarch64-linux-gnu/Makefile", +[virtualenv] "os": "", +[virtualenv] "site": "", +[virtualenv] "datetime": "", +[virtualenv] "math": "", +[virtualenv] "json": "" +[virtualenv] } +[virtualenv] add seed packages via FromAppData(download=False, pip=bundle, via=copy, app_data_dir=/root/.local/share/virtualenv) +[virtualenv] install pip from wheel /root/.local/share/pypoetry/venv/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-24.0-py3-none-any.whl via CopyPipInstall +[filelock:filelock] Attempting to acquire lock 281473422552160 on /root/.local/share/virtualenv/wheel/3.12/image/1/CopyPipInstall/pip-24.0-py3-none-any.lock +[filelock:filelock] Lock 281473422552160 acquired on /root/.local/share/virtualenv/wheel/3.12/image/1/CopyPipInstall/pip-24.0-py3-none-any.lock +[virtualenv] build install image for pip-24.0-py3-none-any.whl to /root/.local/share/virtualenv/wheel/3.12/image/1/CopyPipInstall/pip-24.0-py3-none-any +[distlib:distlib.util] changing mode of /tmp/tmpn3gu47dd/pip to 755 +[distlib:distlib.util] changing mode of /tmp/tmpn3gu47dd/pip-3.12 to 755 +[distlib:distlib.util] changing mode of /tmp/tmpn3gu47dd/pip3 to 755 +[distlib:distlib.util] changing mode of /tmp/tmpn3gu47dd/pip3.12 to 755 +[filelock:filelock] Attempting to release lock 281473422552160 on /root/.local/share/virtualenv/wheel/3.12/image/1/CopyPipInstall/pip-24.0-py3-none-any.lock +[filelock:filelock] Lock 281473422552160 released on /root/.local/share/virtualenv/wheel/3.12/image/1/CopyPipInstall/pip-24.0-py3-none-any.lock +[virtualenv] copy directory /root/.local/share/virtualenv/wheel/3.12/image/1/CopyPipInstall/pip-24.0-py3-none-any/pip-24.0.dist-info to /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/lib/python3.12/site-packages/pip-24.0.dist-info +[virtualenv] copy directory /root/.local/share/virtualenv/wheel/3.12/image/1/CopyPipInstall/pip-24.0-py3-none-any/pip to /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/lib/python3.12/site-packages/pip +[virtualenv] copy /root/.local/share/virtualenv/wheel/3.12/image/1/CopyPipInstall/pip-24.0-py3-none-any/pip-24.0.virtualenv to /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/lib/python3.12/site-packages/pip-24.0.virtualenv +[distlib:distlib.util] changing mode of /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/bin/pip to 755 +[distlib:distlib.util] changing mode of /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/bin/pip-3.12 to 755 +[distlib:distlib.util] changing mode of /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/bin/pip3 to 755 +[distlib:distlib.util] changing mode of /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/bin/pip3.12 to 755 +[virtualenv] generated console scripts pip3 pip3.12 pip pip-3.12 +[virtualenv] add activators for Bash, CShell, Fish, Nushell, PowerShell, Python +[virtualenv] write /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +[virtualenv] prompt = local-intelligence-hub-py3.12 +Using virtualenv: /root/.cache/pypoetry/virtualenvs/local-intelligence-hub-9TtSrW0h-py3.12 +Installing dependencies from lock file + +Finding the necessary packages for the current system + +Package operations: 88 installs, 0 updates, 0 removals + + - Installing asgiref (3.7.2) +Checking if keyring is available + - Installing six (1.16.0) + - Installing sqlparse (0.4.4) +Checking if keyring is available +Checking if keyring is available +[keyring:keyring.backend] Loading KWallet +[keyring:keyring.backend] Loading KWallet +[keyring:keyring.backend] Loading SecretService +[keyring:keyring.backend] Loading KWallet +[keyring:keyring.backend] Loading SecretService +[keyring:keyring.backend] Loading SecretService +[keyring:keyring.backend] Loading Windows +[keyring:keyring.backend] Loading Windows +[keyring:keyring.backend] Loading Windows +[keyring:keyring.backend] Loading chainer +[keyring:keyring.backend] Loading chainer +[keyring:keyring.backend] Loading chainer +[keyring:keyring.backend] Loading libsecret +[keyring:keyring.backend] Loading libsecret +[keyring:keyring.backend] Loading libsecret +[keyring:keyring.backend] Loading macOS +[keyring:keyring.backend] Loading macOS +[keyring:keyring.backend] Loading macOS +Backend 'fail Keyring' is not suitable +Backend 'fail Keyring' is not suitable +No valid keyring backend was found +No valid keyring backend was found +Backend 'fail Keyring' is not suitable +Creating new session for pypi.org +Creating new session for pypi.org +No valid keyring backend was found +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (1): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (1): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (2): pypi.org:443 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/asgiref/3.7.2/json HTTP/1.1" 200 4434 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/six/1.16.0/json HTTP/1.1" 200 1553 +[filelock:filelock] Attempting to acquire lock 281473405797152 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/a/7/1/5/8a715f7134026bd14adaca80fd9383bc87a1a536f3aafbed97fb3cb3.lock +[filelock:filelock] Attempting to acquire lock 281473387977744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/0/a/3/d/2/0a3d25d87fafdf016ee0ce5af0b8840c4088c048fdaea00685df55b3.lock +[filelock:filelock] Lock 281473405797152 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/a/7/1/5/8a715f7134026bd14adaca80fd9383bc87a1a536f3aafbed97fb3cb3.lock +[filelock:filelock] Lock 281473387977744 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/0/a/3/d/2/0a3d25d87fafdf016ee0ce5af0b8840c4088c048fdaea00685df55b3.lock +[filelock:filelock] Attempting to release lock 281473405797152 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/a/7/1/5/8a715f7134026bd14adaca80fd9383bc87a1a536f3aafbed97fb3cb3.lock +[filelock:filelock] Attempting to release lock 281473387977744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/0/a/3/d/2/0a3d25d87fafdf016ee0ce5af0b8840c4088c048fdaea00685df55b3.lock +[filelock:filelock] Lock 281473405797152 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/a/7/1/5/8a715f7134026bd14adaca80fd9383bc87a1a536f3aafbed97fb3cb3.lock +[filelock:filelock] Lock 281473387977744 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/0/a/3/d/2/0a3d25d87fafdf016ee0ce5af0b8840c4088c048fdaea00685df55b3.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/sqlparse/0.4.4/json HTTP/1.1" 200 2138 +[filelock:filelock] Attempting to acquire lock 281473387980912 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/2/2/3/9/e223995de81db43be3bf6c3456e2b0e126694050f89c02a301077ad9.lock +[filelock:filelock] Lock 281473387980912 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/2/2/3/9/e223995de81db43be3bf6c3456e2b0e126694050f89c02a301077ad9.lock +[filelock:filelock] Attempting to release lock 281473387980912 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/2/2/3/9/e223995de81db43be3bf6c3456e2b0e126694050f89c02a301077ad9.lock +[filelock:filelock] Lock 281473387980912 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/2/2/3/9/e223995de81db43be3bf6c3456e2b0e126694050f89c02a301077ad9.lock +Checking if keyring is available +Checking if keyring is available +Backend 'fail Keyring' is not suitable +Backend 'fail Keyring' is not suitable +No valid keyring backend was found +No valid keyring backend was found +Creating new session for files.pythonhosted.org +Creating new session for files.pythonhosted.org +Creating new session for files.pythonhosted.org +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (1): files.pythonhosted.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (1): files.pythonhosted.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (1): files.pythonhosted.org:443 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl HTTP/1.1" 200 11053 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/9b/80/b9051a4a07ad231558fcd8ffc89232711b4e618c15cb7a392a17384bbeef/asgiref-3.7.2-py3-none-any.whl HTTP/1.1" 200 24140 +[filelock:filelock] Attempting to acquire lock 281473378672880 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/3/f/4/9/c/3f49c19c42525485da2c265d82244e942d3619ff5626136ee23992d0.lock +[filelock:filelock] Lock 281473378672880 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/3/f/4/9/c/3f49c19c42525485da2c265d82244e942d3619ff5626136ee23992d0.lock +[filelock:filelock] Attempting to release lock 281473378672880 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/3/f/4/9/c/3f49c19c42525485da2c265d82244e942d3619ff5626136ee23992d0.lock +[filelock:filelock] Lock 281473378672880 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/3/f/4/9/c/3f49c19c42525485da2c265d82244e942d3619ff5626136ee23992d0.lock +[filelock:filelock] Attempting to acquire lock 281473378375520 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/d/f/0/2/c/df02c9771177885833897508855543bfb1286d558fdd7eb67b41c3c9.lock +[filelock:filelock] Lock 281473378375520 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/d/f/0/2/c/df02c9771177885833897508855543bfb1286d558fdd7eb67b41c3c9.lock +[filelock:filelock] Attempting to release lock 281473378375520 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/d/f/0/2/c/df02c9771177885833897508855543bfb1286d558fdd7eb67b41c3c9.lock +[filelock:filelock] Lock 281473378375520 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/d/f/0/2/c/df02c9771177885833897508855543bfb1286d558fdd7eb67b41c3c9.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/98/5a/66d7c9305baa9f11857f247d4ba761402cea75db6058ff850ed7128957b7/sqlparse-0.4.4-py3-none-any.whl HTTP/1.1" 200 41183 +[filelock:filelock] Attempting to acquire lock 281473378665056 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/f/1/0/a/9f10aab702bd439277b3487e992e50513e11e5af1489cb3003ecbdd9.lock +[filelock:filelock] Lock 281473378665056 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/f/1/0/a/9f10aab702bd439277b3487e992e50513e11e5af1489cb3003ecbdd9.lock +[filelock:filelock] Attempting to release lock 281473378665056 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/f/1/0/a/9f10aab702bd439277b3487e992e50513e11e5af1489cb3003ecbdd9.lock +[filelock:filelock] Lock 281473378665056 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/f/1/0/a/9f10aab702bd439277b3487e992e50513e11e5af1489cb3003ecbdd9.lock + - Installing commonmark (0.9.1) + - Installing django (4.2.10) + - Installing graphql-core (3.2.3) + - Installing pygments (2.17.2) + - Installing python-dateutil (2.9.0.post0) + - Installing mypy-extensions (1.0.0) + - Installing typing-extensions (4.10.0) +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (3): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (4): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (5): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (6): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (7): pypi.org:443 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/commonmark/0.9.1/json HTTP/1.1" 200 3078 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/django/4.2.10/json HTTP/1.1" 200 2321 +[filelock:filelock] Attempting to acquire lock 281473378502848 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/a/c/3/e/dac3e53399df7a292c140014ed60f3315cd5a4fcf26d9c128d9820f2.lock +[filelock:filelock] Attempting to acquire lock 281473378503136 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/2/1/f/6/221f66bfb3574b684eae80396acaa1a42c054619d9ac09eed7f347fc.lock +[filelock:filelock] Lock 281473378502848 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/a/c/3/e/dac3e53399df7a292c140014ed60f3315cd5a4fcf26d9c128d9820f2.lock +[filelock:filelock] Lock 281473378503136 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/2/1/f/6/221f66bfb3574b684eae80396acaa1a42c054619d9ac09eed7f347fc.lock +[filelock:filelock] Attempting to release lock 281473378502848 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/a/c/3/e/dac3e53399df7a292c140014ed60f3315cd5a4fcf26d9c128d9820f2.lock +[filelock:filelock] Attempting to release lock 281473378503136 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/2/1/f/6/221f66bfb3574b684eae80396acaa1a42c054619d9ac09eed7f347fc.lock +[filelock:filelock] Lock 281473378502848 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/a/c/3/e/dac3e53399df7a292c140014ed60f3315cd5a4fcf26d9c128d9820f2.lock +[filelock:filelock] Lock 281473378503136 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/2/1/f/6/221f66bfb3574b684eae80396acaa1a42c054619d9ac09eed7f347fc.lock +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (2): files.pythonhosted.org:443 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/b1/92/dfd892312d822f36c55366118b95d914e5f16de11044a27cf10a7d71bbbf/commonmark-0.9.1-py2.py3-none-any.whl HTTP/1.1" 200 51068 +[filelock:filelock] Attempting to acquire lock 281473378502800 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/7/2/f/2/a72f2bcd61a857bd54307debb0d0e25cc169b9b643707c126ad90417.lock +[filelock:filelock] Lock 281473378502800 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/7/2/f/2/a72f2bcd61a857bd54307debb0d0e25cc169b9b643707c126ad90417.lock +[filelock:filelock] Attempting to release lock 281473378502800 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/7/2/f/2/a72f2bcd61a857bd54307debb0d0e25cc169b9b643707c126ad90417.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/graphql-core/3.2.3/json HTTP/1.1" 200 4813 +[filelock:filelock] Lock 281473378502800 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/7/2/f/2/a72f2bcd61a857bd54307debb0d0e25cc169b9b643707c126ad90417.lock +[filelock:filelock] Attempting to acquire lock 281473378673744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/f/6/2/2/bf622dbb985e6e6dd0117bd58aa6d8f17cdad44c6b27e735947b09b3.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/python-dateutil/2.9.0.post0/json HTTP/1.1" 200 3839 +[filelock:filelock] Lock 281473378673744 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/f/6/2/2/bf622dbb985e6e6dd0117bd58aa6d8f17cdad44c6b27e735947b09b3.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/mypy-extensions/1.0.0/json HTTP/1.1" 200 1193 +[filelock:filelock] Attempting to release lock 281473378673744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/f/6/2/2/bf622dbb985e6e6dd0117bd58aa6d8f17cdad44c6b27e735947b09b3.lock +[filelock:filelock] Lock 281473378673744 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/f/6/2/2/bf622dbb985e6e6dd0117bd58aa6d8f17cdad44c6b27e735947b09b3.lock +[filelock:filelock] Attempting to acquire lock 281473378509712 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/a/c/d/9/6acd9bbb37db3335c814dfecc692e8f4027f3fc3bf902ecc4865b95a.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/pygments/2.17.2/json HTTP/1.1" 200 1766 +[filelock:filelock] Lock 281473378509712 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/a/c/d/9/6acd9bbb37db3335c814dfecc692e8f4027f3fc3bf902ecc4865b95a.lock +[filelock:filelock] Attempting to acquire lock 281473409606064 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/6/d/3/8/16d38511f33e6b28463cc8707868b06ca54273aa5b730ce9018c1837.lock +[filelock:filelock] Attempting to release lock 281473378509712 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/a/c/d/9/6acd9bbb37db3335c814dfecc692e8f4027f3fc3bf902ecc4865b95a.lock +[filelock:filelock] Lock 281473409606064 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/6/d/3/8/16d38511f33e6b28463cc8707868b06ca54273aa5b730ce9018c1837.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/typing-extensions/4.10.0/json HTTP/1.1" 200 1958 +[filelock:filelock] Lock 281473378509712 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/a/c/d/9/6acd9bbb37db3335c814dfecc692e8f4027f3fc3bf902ecc4865b95a.lock +[filelock:filelock] Attempting to acquire lock 281473378513744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/6/0/0/3/c60034d0d0b576e66d8f20f1827f68130c5ed9330c52847cd1731d82.lock +[filelock:filelock] Attempting to release lock 281473409606064 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/6/d/3/8/16d38511f33e6b28463cc8707868b06ca54273aa5b730ce9018c1837.lock +[filelock:filelock] Lock 281473378513744 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/6/0/0/3/c60034d0d0b576e66d8f20f1827f68130c5ed9330c52847cd1731d82.lock +[filelock:filelock] Lock 281473409606064 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/6/d/3/8/16d38511f33e6b28463cc8707868b06ca54273aa5b730ce9018c1837.lock +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (3): files.pythonhosted.org:443 +[filelock:filelock] Attempting to release lock 281473378513744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/6/0/0/3/c60034d0d0b576e66d8f20f1827f68130c5ed9330c52847cd1731d82.lock +[filelock:filelock] Attempting to acquire lock 281473378509376 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/e/1/c/3/3e1c317891ca10441fb5a1c819e9f345d837f5623045eba122aa34d8.lock +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (4): files.pythonhosted.org:443 +[filelock:filelock] Lock 281473378513744 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/6/0/0/3/c60034d0d0b576e66d8f20f1827f68130c5ed9330c52847cd1731d82.lock +[filelock:filelock] Lock 281473378509376 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/e/1/c/3/3e1c317891ca10441fb5a1c819e9f345d837f5623045eba122aa34d8.lock +[filelock:filelock] Attempting to release lock 281473378509376 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/e/1/c/3/3e1c317891ca10441fb5a1c819e9f345d837f5623045eba122aa34d8.lock +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (5): files.pythonhosted.org:443 +[filelock:filelock] Lock 281473378509376 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/e/1/c/3/3e1c317891ca10441fb5a1c819e9f345d837f5623045eba122aa34d8.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/f8/39/e5143e7ec70939d2076c1165ae9d4a3815597019c4d797b7f959cf778600/graphql_core-3.2.3-py3-none-any.whl HTTP/1.1" 200 202921 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (6): files.pythonhosted.org:443 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/20/8c/498ce1ac30228f3bc36d4d427fe10268bd01e6f0361ead6c60b2b255c6b6/Django-4.2.10-py3-none-any.whl HTTP/1.1" 200 7991213 +[filelock:filelock] Attempting to acquire lock 281473378509568 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/2/b/a/3/52ba3575cf2adcb5b5340f0774f231e1adf78087a5d5556ab0ec2e0a.lock +[filelock:filelock] Lock 281473378509568 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/2/b/a/3/52ba3575cf2adcb5b5340f0774f231e1adf78087a5d5556ab0ec2e0a.lock +[filelock:filelock] Attempting to release lock 281473378509568 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/2/b/a/3/52ba3575cf2adcb5b5340f0774f231e1adf78087a5d5556ab0ec2e0a.lock +[filelock:filelock] Lock 281473378509568 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/2/b/a/3/52ba3575cf2adcb5b5340f0774f231e1adf78087a5d5556ab0ec2e0a.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl HTTP/1.1" 200 4695 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/f9/de/dc04a3ea60b22624b51c703a84bbe0184abcd1d0b9bc8074b5d6b7ab90bb/typing_extensions-4.10.0-py3-none-any.whl HTTP/1.1" 200 33926 +[filelock:filelock] Attempting to acquire lock 281473378508176 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/9/a/2/0/29a2015427f050434cf009942d28781267bb61775c1cf35f5def4b8a.lock +[filelock:filelock] Lock 281473378508176 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/9/a/2/0/29a2015427f050434cf009942d28781267bb61775c1cf35f5def4b8a.lock +[filelock:filelock] Attempting to release lock 281473378508176 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/9/a/2/0/29a2015427f050434cf009942d28781267bb61775c1cf35f5def4b8a.lock +[filelock:filelock] Lock 281473378508176 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/9/a/2/0/29a2015427f050434cf009942d28781267bb61775c1cf35f5def4b8a.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl HTTP/1.1" 200 229892 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/97/9c/372fef8377a6e340b1704768d20daaded98bf13282b5327beb2e2fe2c7ef/pygments-2.17.2-py3-none-any.whl HTTP/1.1" 200 1179756 +[filelock:filelock] Attempting to acquire lock 281473387980528 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/0/3/6/c/b036cf374473e954a7d0dbda4450875db8d8471b1d6496d711fe9441.lock +[filelock:filelock] Lock 281473387980528 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/0/3/6/c/b036cf374473e954a7d0dbda4450875db8d8471b1d6496d711fe9441.lock +[filelock:filelock] Attempting to release lock 281473387980528 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/0/3/6/c/b036cf374473e954a7d0dbda4450875db8d8471b1d6496d711fe9441.lock +[filelock:filelock] Lock 281473387980528 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/0/3/6/c/b036cf374473e954a7d0dbda4450875db8d8471b1d6496d711fe9441.lock +[filelock:filelock] Attempting to acquire lock 281473378505968 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/d/0/6/d/7d06ddc2f8070ce09a5a2290e2020c460e8ab32b6a2c6b69fc06e979.lock +[filelock:filelock] Lock 281473378505968 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/d/0/6/d/7d06ddc2f8070ce09a5a2290e2020c460e8ab32b6a2c6b69fc06e979.lock +[filelock:filelock] Attempting to acquire lock 281473378510528 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/8/4/8/7/a8487966cfc6fa37d61358c9f4411a76c81fd718496467ba8ba9f6c8.lock +[filelock:filelock] Attempting to release lock 281473378505968 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/d/0/6/d/7d06ddc2f8070ce09a5a2290e2020c460e8ab32b6a2c6b69fc06e979.lock +[filelock:filelock] Lock 281473378505968 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/d/0/6/d/7d06ddc2f8070ce09a5a2290e2020c460e8ab32b6a2c6b69fc06e979.lock +[filelock:filelock] Lock 281473378510528 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/8/4/8/7/a8487966cfc6fa37d61358c9f4411a76c81fd718496467ba8ba9f6c8.lock +[filelock:filelock] Attempting to release lock 281473378510528 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/8/4/8/7/a8487966cfc6fa37d61358c9f4411a76c81fd718496467ba8ba9f6c8.lock +[filelock:filelock] Lock 281473378510528 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/8/4/8/7/a8487966cfc6fa37d61358c9f4411a76c81fd718496467ba8ba9f6c8.lock +[filelock:filelock] Attempting to acquire lock 281473422550288 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/8/f/a/0/48fa0d4578838ded987947659abd74818200482c7bb22a0d0969311c.lock +[filelock:filelock] Lock 281473422550288 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/8/f/a/0/48fa0d4578838ded987947659abd74818200482c7bb22a0d0969311c.lock +[filelock:filelock] Attempting to release lock 281473422550288 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/8/f/a/0/48fa0d4578838ded987947659abd74818200482c7bb22a0d0969311c.lock +[filelock:filelock] Lock 281473422550288 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/8/f/a/0/48fa0d4578838ded987947659abd74818200482c7bb22a0d0969311c.lock + - Installing annotated-types (0.6.0) + - Installing attrs (23.2.0) + - Installing charset-normalizer (3.3.2) + - Installing certifi (2024.2.2) + - Installing django-stubs-ext (4.2.7) + - Installing click (8.1.7) + - Installing numpy (1.26.4) + - Installing psycopg-pool (3.2.1) + - Installing mypy (1.7.1) + - Installing django-appconf (1.0.6) + - Installing pytz (2024.1) + - Installing pydantic-core (2.16.3) + - Installing idna (3.6) + - Installing rjsmin (1.2.1) + - Installing rcssmin (1.1.1) +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (8): pypi.org:443 + - Installing rich (12.6.0) +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (9): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (10): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (11): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (12): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (13): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (14): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (15): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (16): pypi.org:443 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/charset-normalizer/3.3.2/json HTTP/1.1" 200 25556 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/click/8.1.7/json HTTP/1.1" 200 2076 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/attrs/23.2.0/json HTTP/1.1" 200 4265 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/numpy/1.26.4/json HTTP/1.1" 200 23541 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/certifi/2024.2.2/json HTTP/1.1" 200 1660 +[filelock:filelock] Attempting to acquire lock 281473137709408 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/a/8/f/f/1a8ff2f282c087cdf9cf873cda00681c0b40ab3160af3b1797069bd7.lock +[filelock:filelock] Attempting to acquire lock 281473137712096 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/6/0/e/8/760e82d05ae1c5a0dc2aceab8cd6f19922aba519a6de6de2028fa9c6.lock +[filelock:filelock] Lock 281473137709408 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/a/8/f/f/1a8ff2f282c087cdf9cf873cda00681c0b40ab3160af3b1797069bd7.lock +[filelock:filelock] Lock 281473137712096 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/6/0/e/8/760e82d05ae1c5a0dc2aceab8cd6f19922aba519a6de6de2028fa9c6.lock +[filelock:filelock] Attempting to acquire lock 281473137714592 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/c/6/9/3/8c69355026e9628255b060ae6953b74c192c8dd878dbae81cd0b0ffa.lock +[filelock:filelock] Attempting to release lock 281473137709408 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/a/8/f/f/1a8ff2f282c087cdf9cf873cda00681c0b40ab3160af3b1797069bd7.lock +[filelock:filelock] Attempting to release lock 281473137712096 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/6/0/e/8/760e82d05ae1c5a0dc2aceab8cd6f19922aba519a6de6de2028fa9c6.lock +[filelock:filelock] Lock 281473137714592 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/c/6/9/3/8c69355026e9628255b060ae6953b74c192c8dd878dbae81cd0b0ffa.lock +[filelock:filelock] Lock 281473137709408 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/a/8/f/f/1a8ff2f282c087cdf9cf873cda00681c0b40ab3160af3b1797069bd7.lock +[filelock:filelock] Lock 281473137712096 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/6/0/e/8/760e82d05ae1c5a0dc2aceab8cd6f19922aba519a6de6de2028fa9c6.lock +[filelock:filelock] Attempting to release lock 281473137714592 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/c/6/9/3/8c69355026e9628255b060ae6953b74c192c8dd878dbae81cd0b0ffa.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/annotated-types/0.6.0/json HTTP/1.1" 200 5896 +[filelock:filelock] Lock 281473137714592 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/c/6/9/3/8c69355026e9628255b060ae6953b74c192c8dd878dbae81cd0b0ffa.lock +[filelock:filelock] Attempting to acquire lock 281473137652368 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/8/b/a/8/28ba8a2be72657c68af311ff52c841cf7fa8c0e91224ae899e0711fe.lock +[filelock:filelock] Lock 281473137652368 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/8/b/a/8/28ba8a2be72657c68af311ff52c841cf7fa8c0e91224ae899e0711fe.lock +[filelock:filelock] Attempting to acquire lock 281473137710464 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/d/8/6/1/6d86192f8fbccdcc786e2f9ab3ea13d0d9ae1e890821f07f831faf87.lock +[filelock:filelock] Attempting to release lock 281473137652368 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/8/b/a/8/28ba8a2be72657c68af311ff52c841cf7fa8c0e91224ae899e0711fe.lock +[filelock:filelock] Lock 281473137710464 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/d/8/6/1/6d86192f8fbccdcc786e2f9ab3ea13d0d9ae1e890821f07f831faf87.lock +[filelock:filelock] Lock 281473137652368 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/8/b/a/8/28ba8a2be72657c68af311ff52c841cf7fa8c0e91224ae899e0711fe.lock +[filelock:filelock] Attempting to release lock 281473137710464 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/d/8/6/1/6d86192f8fbccdcc786e2f9ab3ea13d0d9ae1e890821f07f831faf87.lock +[filelock:filelock] Lock 281473137710464 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/d/8/6/1/6d86192f8fbccdcc786e2f9ab3ea13d0d9ae1e890821f07f831faf87.lock +Skipping wheel numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137706912 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/3/0/8/7/a30872b5716950b4b29b0627ee9679eeefc2f88505234033431621a1.lock +Skipping wheel numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137706912 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/3/0/8/7/a30872b5716950b4b29b0627ee9679eeefc2f88505234033431621a1.lock +Skipping wheel numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473137706912 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/3/0/8/7/a30872b5716950b4b29b0627ee9679eeefc2f88505234033431621a1.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/e0/44/827b2a91a5816512fcaf3cc4ebc465ccd5d598c45cefa6703fcf4a79018f/attrs-23.2.0-py3-none-any.whl HTTP/1.1" 200 60752 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl HTTP/1.1" 200 97941 +Skipping wheel numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137706912 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/3/0/8/7/a30872b5716950b4b29b0627ee9679eeefc2f88505234033431621a1.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/ba/06/a07f096c664aeb9f01624f858c3add0a4e913d6c96257acb4fce61e7de14/certifi-2024.2.2-py3-none-any.whl HTTP/1.1" 200 163774 +Skipping wheel numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/28/78/d31230046e58c207284c6b2c4e8d96e6d3cb4e52354721b944d3e1ee4aa5/annotated_types-0.6.0-py3-none-any.whl HTTP/1.1" 200 12360 +Skipping wheel numpy-1.26.4-cp310-cp310-win32.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137705760 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/3/5/1/4/e3514f4c1fd1aff417bcf78a683f64e5f53dccc56b1bf8878447a782.lock +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473388254544 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/e/2/d/8/2e2d841f57ca6a43dfc96af93374304dda5b757176df2cce7ca2b18d.lock +[filelock:filelock] Attempting to acquire lock 281473388260880 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/b/9/5/f/4b95f342ad96b3f181c58ecc742a5263d12dfc47d5658390eb0f30e0.lock +[filelock:filelock] Lock 281473137705760 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/3/5/1/4/e3514f4c1fd1aff417bcf78a683f64e5f53dccc56b1bf8878447a782.lock +Skipping wheel numpy-1.26.4-cp310-cp310-win_amd64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388254544 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/e/2/d/8/2e2d841f57ca6a43dfc96af93374304dda5b757176df2cce7ca2b18d.lock +[filelock:filelock] Lock 281473388260880 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/b/9/5/f/4b95f342ad96b3f181c58ecc742a5263d12dfc47d5658390eb0f30e0.lock +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473137705760 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/3/5/1/4/e3514f4c1fd1aff417bcf78a683f64e5f53dccc56b1bf8878447a782.lock +[filelock:filelock] Attempting to release lock 281473388254544 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/e/2/d/8/2e2d841f57ca6a43dfc96af93374304dda5b757176df2cce7ca2b18d.lock +Skipping wheel numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473388260832 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/6/9/8/c/7/698c7c11b59e422d3f535a8b92e8203524b386f4f2292205cebce883.lock +[filelock:filelock] Attempting to release lock 281473388260880 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/b/9/5/f/4b95f342ad96b3f181c58ecc742a5263d12dfc47d5658390eb0f30e0.lock +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137705760 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/3/5/1/4/e3514f4c1fd1aff417bcf78a683f64e5f53dccc56b1bf8878447a782.lock +[filelock:filelock] Lock 281473388254544 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/e/2/d/8/2e2d841f57ca6a43dfc96af93374304dda5b757176df2cce7ca2b18d.lock +Skipping wheel numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388260832 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/6/9/8/c/7/698c7c11b59e422d3f535a8b92e8203524b386f4f2292205cebce883.lock +[filelock:filelock] Lock 281473388260880 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/b/9/5/f/4b95f342ad96b3f181c58ecc742a5263d12dfc47d5658390eb0f30e0.lock +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473388260832 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/6/9/8/c/7/698c7c11b59e422d3f535a8b92e8203524b386f4f2292205cebce883.lock +[filelock:filelock] Lock 281473388260832 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/6/9/8/c/7/698c7c11b59e422d3f535a8b92e8203524b386f4f2292205cebce883.lock +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp311-cp311-win32.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp311-cp311-win_amd64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-win32.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp312-cp312-win32.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment + - Installing sniffio (1.3.1) +Skipping wheel numpy-1.26.4-cp312-cp312-win_amd64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/django-stubs-ext/4.2.7/json HTTP/1.1" 200 2221 +Skipping wheel numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-win32.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473388258432 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/0/1/0/1/1010154dbe55ebfa4a011da6745c6edc27fc1c47ffceab6a0681592b.lock +Skipping wheel charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/sniffio/1.3.1/json HTTP/1.1" 200 2140 +Skipping wheel numpy-1.26.4-cp39-cp39-win32.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388258432 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/0/1/0/1/1010154dbe55ebfa4a011da6745c6edc27fc1c47ffceab6a0681592b.lock +Skipping wheel numpy-1.26.4-cp39-cp39-win_amd64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473388258432 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/0/1/0/1/1010154dbe55ebfa4a011da6745c6edc27fc1c47ffceab6a0681592b.lock +[filelock:filelock] Lock 281473388258432 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/0/1/0/1/1010154dbe55ebfa4a011da6745c6edc27fc1c47ffceab6a0681592b.lock +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137710896 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/a/4/6/d/aa46d5e73597af8efd06dfc8f5633685b2f957efb630588a50b28eef.lock +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-win32.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl as this is not supported by the current environment + - Installing strawberry-graphql (0.219.2) +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137710896 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/a/4/6/d/aa46d5e73597af8efd06dfc8f5633685b2f957efb630588a50b28eef.lock +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/21/be/e87631afa766a101877758495bec4108fdaa20ba65a2e80bc02cfa874985/django_stubs_ext-4.2.7-py3-none-any.whl HTTP/1.1" 200 8865 +[filelock:filelock] Attempting to release lock 281473137710896 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/a/4/6/d/aa46d5e73597af8efd06dfc8f5633685b2f957efb630588a50b28eef.lock +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/strawberry-graphql/0.219.2/json HTTP/1.1" 200 3496 +[filelock:filelock] Lock 281473137710896 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/a/4/6/d/aa46d5e73597af8efd06dfc8f5633685b2f957efb630588a50b28eef.lock + - Installing text-unidecode (1.3) + - Installing types-pytz (2024.1.0.20240203) +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473388252144 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/5/b/a/a/25baa896963852aee6275f2c489d67fba4eec733792cc0045dc107b6.lock +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-win32.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137709696 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/9/0/8/f/a908f247792285701b0f4f967a71a540add1facdc2e78ae48c0aaeec.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/79/f8/97f10e6755e2a7d027ca783f63044d5b1bc1ae7acb12afe6a9b4286eac17/numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl HTTP/1.1" 200 13925109 +Skipping wheel charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388252144 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/5/b/a/a/25baa896963852aee6275f2c489d67fba4eec733792cc0045dc107b6.lock +[filelock:filelock] Lock 281473137709696 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/9/0/8/f/a908f247792285701b0f4f967a71a540add1facdc2e78ae48c0aaeec.lock +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473388252144 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/5/b/a/a/25baa896963852aee6275f2c489d67fba4eec733792cc0045dc107b6.lock +[filelock:filelock] Lock 281473388252144 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/5/b/a/a/25baa896963852aee6275f2c489d67fba4eec733792cc0045dc107b6.lock +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473137709696 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/9/0/8/f/a908f247792285701b0f4f967a71a540add1facdc2e78ae48c0aaeec.lock + - Installing types-pyyaml (6.0.12.12) +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137709696 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/9/0/8/f/a908f247792285701b0f4f967a71a540add1facdc2e78ae48c0aaeec.lock +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl HTTP/1.1" 200 10235 +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473388255264 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/6/6/8/0/4/6680465c66f90d5dba7423aa175d72f390d4883736cee302491f10f1.lock +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/types-pyyaml/6.0.12.12/json HTTP/1.1" 200 1426 +[filelock:filelock] Lock 281473388255264 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/6/6/8/0/4/6680465c66f90d5dba7423aa175d72f390d4883736cee302491f10f1.lock +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473388255264 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/6/6/8/0/4/6680465c66f90d5dba7423aa175d72f390d4883736cee302491f10f1.lock +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473388259488 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/c/0/d/9/3c0d993fef7ad06d2d4dbc4b2a9091f07ef32794322795d6e2de5a00.lock +[filelock:filelock] Lock 281473388259488 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/c/0/d/9/3c0d993fef7ad06d2d4dbc4b2a9091f07ef32794322795d6e2de5a00.lock +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-win32.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388255264 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/6/6/8/0/4/6680465c66f90d5dba7423aa175d72f390d4883736cee302491f10f1.lock +[filelock:filelock] Attempting to release lock 281473388259488 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/c/0/d/9/3c0d993fef7ad06d2d4dbc4b2a9091f07ef32794322795d6e2de5a00.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/a8/36/f0976d23f5578099415a8bd60b16133ae4fc99bca47d11dea81d1d6f792d/strawberry_graphql-0.219.2-py3-none-any.whl HTTP/1.1" 200 285526 +Skipping wheel charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388259488 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/c/0/d/9/3c0d993fef7ad06d2d4dbc4b2a9091f07ef32794322795d6e2de5a00.lock +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-win32.whl as this is not supported by the current environment +Skipping wheel charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl as this is not supported by the current environment + - Installing urllib3 (2.2.1) +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/9d/df/aabb870a04254ceb8a406b0a4222c1b14f7fdf3d2d7633ba49364aca27f3/types_PyYAML-6.0.12.12-py3-none-any.whl HTTP/1.1" 200 14923 +[filelock:filelock] Attempting to acquire lock 281473137645024 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/0/c/b/6/e0cb633ef874870e287250dad5cb65a7b77d53b6a4e5e3d5d1163f73.lock +[filelock:filelock] Attempting to acquire lock 281473137652032 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/7/8/a/d/078ad073ffabd5f5e032c6fb4ce022c7a76209b2c25cea2ed3defe91.lock +[filelock:filelock] Lock 281473137645024 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/0/c/b/6/e0cb633ef874870e287250dad5cb65a7b77d53b6a4e5e3d5d1163f73.lock +[filelock:filelock] Lock 281473137652032 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/7/8/a/d/078ad073ffabd5f5e032c6fb4ce022c7a76209b2c25cea2ed3defe91.lock +[filelock:filelock] Attempting to release lock 281473137645024 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/0/c/b/6/e0cb633ef874870e287250dad5cb65a7b77d53b6a4e5e3d5d1163f73.lock +[filelock:filelock] Lock 281473137645024 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/0/c/b/6/e0cb633ef874870e287250dad5cb65a7b77d53b6a4e5e3d5d1163f73.lock +[filelock:filelock] Attempting to release lock 281473137652032 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/7/8/a/d/078ad073ffabd5f5e032c6fb4ce022c7a76209b2c25cea2ed3defe91.lock +[filelock:filelock] Lock 281473137652032 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/7/8/a/d/078ad073ffabd5f5e032c6fb4ce022c7a76209b2c25cea2ed3defe91.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/99/b0/9c365f6d79a9f0f3c379ddb40a256a67aa69c59609608fe7feb6235896e1/charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl HTTP/1.1" 200 137275 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/urllib3/2.2.1/json HTTP/1.1" 200 3199 +[filelock:filelock] Attempting to acquire lock 281473137718384 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/3/3/2/d/2332da5ae322eda2d300109efbb9a3f7c5a5f271def9b21f15ef9bc2.lock +[filelock:filelock] Lock 281473137718384 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/3/3/2/d/2332da5ae322eda2d300109efbb9a3f7c5a5f271def9b21f15ef9bc2.lock +[filelock:filelock] Attempting to release lock 281473137718384 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/3/3/2/d/2332da5ae322eda2d300109efbb9a3f7c5a5f271def9b21f15ef9bc2.lock +[filelock:filelock] Lock 281473137718384 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/3/3/2/d/2332da5ae322eda2d300109efbb9a3f7c5a5f271def9b21f15ef9bc2.lock +[filelock:filelock] Attempting to acquire lock 281473137641952 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/1/1/3/2/811327789d70e2ce0eb175a1b2d65d41163a82c54cad10ebbe321305.lock +[filelock:filelock] Lock 281473137641952 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/1/1/3/2/811327789d70e2ce0eb175a1b2d65d41163a82c54cad10ebbe321305.lock +[filelock:filelock] Attempting to release lock 281473137641952 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/1/1/3/2/811327789d70e2ce0eb175a1b2d65d41163a82c54cad10ebbe321305.lock +[filelock:filelock] Lock 281473137641952 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/1/1/3/2/811327789d70e2ce0eb175a1b2d65d41163a82c54cad10ebbe321305.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/types-pytz/2024.1.0.20240203/json HTTP/1.1" 200 1496 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/text-unidecode/1.3/json HTTP/1.1" 200 1737 +[filelock:filelock] Attempting to acquire lock 281473388257184 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/6/b/6/8/26b6831572766cad8ec5c411dff982f64ee6bb598fac02b7b17abb59.lock +[filelock:filelock] Lock 281473388257184 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/6/b/6/8/26b6831572766cad8ec5c411dff982f64ee6bb598fac02b7b17abb59.lock +[filelock:filelock] Attempting to acquire lock 281473388286352 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/8/a/a/a/78aaa627fecbb9af422c894a25b4d920fcd3309f2c97e8dbeebbf05d.lock +[filelock:filelock] Attempting to release lock 281473388257184 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/6/b/6/8/26b6831572766cad8ec5c411dff982f64ee6bb598fac02b7b17abb59.lock +[filelock:filelock] Lock 281473388286352 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/8/a/a/a/78aaa627fecbb9af422c894a25b4d920fcd3309f2c97e8dbeebbf05d.lock +[filelock:filelock] Lock 281473388257184 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/6/b/6/8/26b6831572766cad8ec5c411dff982f64ee6bb598fac02b7b17abb59.lock +[filelock:filelock] Attempting to release lock 281473388286352 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/8/a/a/a/78aaa627fecbb9af422c894a25b4d920fcd3309f2c97e8dbeebbf05d.lock +[filelock:filelock] Lock 281473388286352 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/8/a/a/a/78aaa627fecbb9af422c894a25b4d920fcd3309f2c97e8dbeebbf05d.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/a2/73/a68704750a7679d0b6d3ad7aa8d4da8e14e151ae82e6fee774e6e0d05ec8/urllib3-2.2.1-py3-none-any.whl HTTP/1.1" 200 121067 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl HTTP/1.1" 200 78154 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/fc/6c/42a83a27bef09295b8d26866d690fd50d53b7fa27a961779daf0bb8f3b0c/types_pytz-2024.1.0.20240203-py3-none-any.whl HTTP/1.1" 200 5072 +[filelock:filelock] Attempting to acquire lock 281473137746640 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/d/b/0/b/5db0b129777d880b603967c82108016999e85ca4915a1a1ef56b9dc5.lock +[filelock:filelock] Lock 281473137746640 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/d/b/0/b/5db0b129777d880b603967c82108016999e85ca4915a1a1ef56b9dc5.lock +[filelock:filelock] Attempting to acquire lock 281473137705328 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/a/a/d/3/4aad339416e8026d1fa8b230a91e72b9dbcc20ce7675dd245fc4d95c.lock +[filelock:filelock] Attempting to release lock 281473137746640 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/d/b/0/b/5db0b129777d880b603967c82108016999e85ca4915a1a1ef56b9dc5.lock +[filelock:filelock] Lock 281473137705328 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/a/a/d/3/4aad339416e8026d1fa8b230a91e72b9dbcc20ce7675dd245fc4d95c.lock +[filelock:filelock] Lock 281473137746640 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/d/b/0/b/5db0b129777d880b603967c82108016999e85ca4915a1a1ef56b9dc5.lock +[filelock:filelock] Attempting to release lock 281473137705328 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/a/a/d/3/4aad339416e8026d1fa8b230a91e72b9dbcc20ce7675dd245fc4d95c.lock +[filelock:filelock] Lock 281473137705328 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/a/a/d/3/4aad339416e8026d1fa8b230a91e72b9dbcc20ce7675dd245fc4d95c.lock +[filelock:filelock] Attempting to acquire lock 281473388258768 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/6/d/c/5/16dc56ee28351df8921e7f9bf0a91c25e55f32362acd800d8f824e00.lock +[filelock:filelock] Lock 281473388258768 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/6/d/c/5/16dc56ee28351df8921e7f9bf0a91c25e55f32362acd800d8f824e00.lock +[filelock:filelock] Attempting to release lock 281473388258768 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/6/d/c/5/16dc56ee28351df8921e7f9bf0a91c25e55f32362acd800d8f824e00.lock +[filelock:filelock] Lock 281473388258768 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/6/d/c/5/16dc56ee28351df8921e7f9bf0a91c25e55f32362acd800d8f824e00.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/mypy/1.7.1/json HTTP/1.1" 200 5314 +[filelock:filelock] Attempting to acquire lock 281473137678032 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/8/9/2/4/28924e0cecda58cdb8c538408d0b2e24d063a4b2ffd857753f1cb1cd.lock +[filelock:filelock] Lock 281473137678032 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/8/9/2/4/28924e0cecda58cdb8c538408d0b2e24d063a4b2ffd857753f1cb1cd.lock +[filelock:filelock] Attempting to release lock 281473137678032 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/8/9/2/4/28924e0cecda58cdb8c538408d0b2e24d063a4b2ffd857753f1cb1cd.lock +[filelock:filelock] Lock 281473137678032 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/8/9/2/4/28924e0cecda58cdb8c538408d0b2e24d063a4b2ffd857753f1cb1cd.lock +Skipping wheel mypy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp310-cp310-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp310-cp310-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp310-cp310-win_amd64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp311-cp311-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp311-cp311-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp311-cp311-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp311-cp311-win_amd64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp312-cp312-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp312-cp312-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp312-cp312-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp312-cp312-win_amd64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp38-cp38-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp38-cp38-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp38-cp38-win_amd64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp39-cp39-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel mypy-1.7.1-cp39-cp39-win_amd64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/idna/3.6/json HTTP/1.1" 200 4609 +[filelock:filelock] Attempting to acquire lock 281473137676400 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/b/0/b/3/2b0b3274f952f1ccb69a056b0f414c74a63cdf6658180795ba506c03.lock +[filelock:filelock] Lock 281473137676400 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/b/0/b/3/2b0b3274f952f1ccb69a056b0f414c74a63cdf6658180795ba506c03.lock +[filelock:filelock] Attempting to release lock 281473137676400 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/b/0/b/3/2b0b3274f952f1ccb69a056b0f414c74a63cdf6658180795ba506c03.lock +[filelock:filelock] Lock 281473137676400 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/b/0/b/3/2b0b3274f952f1ccb69a056b0f414c74a63cdf6658180795ba506c03.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/pydantic-core/2.16.3/json HTTP/1.1" 200 14828 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/10/df/92bb67911c6c1d3faa46e4c9a5d0a93dd343dcf56022d1fb97a0c0ee65eb/mypy-1.7.1-py3-none-any.whl HTTP/1.1" 200 2542516 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/c2/e7/a82b05cf63a603df6e68d59ae6a68bf5064484a0718ea5033660af4b54a9/idna-3.6-py3-none-any.whl HTTP/1.1" 200 61567 +[filelock:filelock] Attempting to acquire lock 281473137720592 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/5/f/0/8/d/5f08d21132d6255f429c540eadc3571881df6693c232e45dacc8a0d2.lock +[filelock:filelock] Lock 281473137720592 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/5/f/0/8/d/5f08d21132d6255f429c540eadc3571881df6693c232e45dacc8a0d2.lock +[filelock:filelock] Attempting to acquire lock 281473388256800 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/f/6/1/5/ff6155ddc40ff0666026b1b3ef8a3e2492d9c5b85226dad106b71511.lock +[filelock:filelock] Attempting to release lock 281473137720592 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/5/f/0/8/d/5f08d21132d6255f429c540eadc3571881df6693c232e45dacc8a0d2.lock +[filelock:filelock] Attempting to acquire lock 281473388255792 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/7/f/f/0/47ff0cb2aee0006aac563b2bce47c589e9e4f683d64d34f4bb7e4733.lock +[filelock:filelock] Lock 281473388256800 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/f/6/1/5/ff6155ddc40ff0666026b1b3ef8a3e2492d9c5b85226dad106b71511.lock +[filelock:filelock] Lock 281473137720592 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/5/f/0/8/d/5f08d21132d6255f429c540eadc3571881df6693c232e45dacc8a0d2.lock +[filelock:filelock] Lock 281473388255792 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/7/f/f/0/47ff0cb2aee0006aac563b2bce47c589e9e4f683d64d34f4bb7e4733.lock +Skipping wheel pydantic_core-2.16.3-cp310-cp310-macosx_10_12_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp310-cp310-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473388255792 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/7/f/f/0/47ff0cb2aee0006aac563b2bce47c589e9e4f683d64d34f4bb7e4733.lock +Skipping wheel pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388255792 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/7/f/f/0/47ff0cb2aee0006aac563b2bce47c589e9e4f683d64d34f4bb7e4733.lock +Skipping wheel pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp310-none-win32.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp310-none-win_amd64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-macosx_10_12_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-none-win32.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-none-win_amd64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp311-none-win_arm64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-cp312-macosx_10_12_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-cp312-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-none-win32.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-none-win_amd64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp312-none-win_arm64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-macosx_10_12_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-none-win32.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp38-none-win_amd64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-cp39-macosx_10_12_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-cp39-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473388256800 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/f/6/1/5/ff6155ddc40ff0666026b1b3ef8a3e2492d9c5b85226dad106b71511.lock +Skipping wheel pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388256800 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/f/6/1/5/ff6155ddc40ff0666026b1b3ef8a3e2492d9c5b85226dad106b71511.lock +Skipping wheel pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-none-win32.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-cp39-none-win_amd64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp310-pypy310_pp73-win_amd64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel pydantic_core-2.16.3-pp39-pypy39_pp73-win_amd64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/3c/82/b79a75a6f5b19f7f43b08671f6b818a335b5d970b9e50a39acd3f07aed32/pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl HTTP/1.1" 200 1858820 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/django-appconf/1.0.6/json HTTP/1.1" 200 2700 +[filelock:filelock] Attempting to acquire lock 281473137746496 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/a/5/1/d/2a51de22067f8dceb229ac5c20869e0c533e258d2bdd5f870ced9596.lock +[filelock:filelock] Lock 281473137746496 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/a/5/1/d/2a51de22067f8dceb229ac5c20869e0c533e258d2bdd5f870ced9596.lock +[filelock:filelock] Attempting to release lock 281473137746496 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/a/5/1/d/2a51de22067f8dceb229ac5c20869e0c533e258d2bdd5f870ced9596.lock +[filelock:filelock] Lock 281473137746496 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/a/5/1/d/2a51de22067f8dceb229ac5c20869e0c533e258d2bdd5f870ced9596.lock +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/rcssmin/1.1.1/json HTTP/1.1" 200 5895 +[filelock:filelock] Attempting to acquire lock 281473137745392 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/0/e/3/7/a0e3724c4adf51f2f469c1bdf9a1089b069d85495f9d4c904179fed3.lock +[filelock:filelock] Lock 281473137745392 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/0/e/3/7/a0e3724c4adf51f2f469c1bdf9a1089b069d85495f9d4c904179fed3.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/rjsmin/1.2.1/json HTTP/1.1" 200 5837 +[filelock:filelock] Attempting to release lock 281473137745392 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/0/e/3/7/a0e3724c4adf51f2f469c1bdf9a1089b069d85495f9d4c904179fed3.lock +[filelock:filelock] Lock 281473137745392 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/0/e/3/7/a0e3724c4adf51f2f469c1bdf9a1089b069d85495f9d4c904179fed3.lock +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/psycopg-pool/3.2.1/json HTTP/1.1" 200 1660 +Skipping wheel rcssmin-1.1.1-cp27-cp27m-manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp27-cp27m-manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp27-cp27mu-manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp310-cp310-manylinux1_i686.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137744192 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/9/4/d/d/d94dda3cf3acfec150af2957cd79b58004ef6d4c0c8d96659b0b2c54.lock +Skipping wheel rcssmin-1.1.1-cp310-cp310-manylinux1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137512416 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/d/b/1/8/adb188100d69d529c549202c74a38cc059ec5477a3e426c4bc580e3c.lock +[filelock:filelock] Lock 281473137744192 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/9/4/d/d/d94dda3cf3acfec150af2957cd79b58004ef6d4c0c8d96659b0b2c54.lock +Skipping wheel rcssmin-1.1.1-cp310-cp310-manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137512416 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/d/b/1/8/adb188100d69d529c549202c74a38cc059ec5477a3e426c4bc580e3c.lock +Skipping wheel rcssmin-1.1.1-cp311-cp311-manylinux1_i686.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473137744192 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/9/4/d/d/d94dda3cf3acfec150af2957cd79b58004ef6d4c0c8d96659b0b2c54.lock +Skipping wheel rcssmin-1.1.1-cp311-cp311-manylinux1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137744192 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/9/4/d/d/d94dda3cf3acfec150af2957cd79b58004ef6d4c0c8d96659b0b2c54.lock +[filelock:filelock] Attempting to release lock 281473137512416 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/d/b/1/8/adb188100d69d529c549202c74a38cc059ec5477a3e426c4bc580e3c.lock +Skipping wheel rcssmin-1.1.1-cp311-cp311-manylinux2014_aarch64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +[filelock:filelock] Lock 281473137512416 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/d/b/1/8/adb188100d69d529c549202c74a38cc059ec5477a3e426c4bc580e3c.lock +Skipping wheel rcssmin-1.1.1-cp36-cp36m-manylinux1_i686.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/rich/12.6.0/json HTTP/1.1" 200 7000 +Skipping wheel rjsmin-1.2.1-cp27-cp27m-manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp36-cp36m-manylinux1_x86_64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +Skipping wheel rjsmin-1.2.1-cp27-cp27m-manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel rjsmin-1.2.1-cp27-cp27mu-manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp37-cp37m-manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel rjsmin-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137651072 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/f/b/8/b/1fb8bd575403cb9b8da131621b3abb7f37ec00c6581f77f2cd7b0ef4.lock +Skipping wheel rcssmin-1.1.1-cp37-cp37m-manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel rjsmin-1.2.1-cp310-cp310-manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137651072 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/f/b/8/b/1fb8bd575403cb9b8da131621b3abb7f37ec00c6581f77f2cd7b0ef4.lock +Skipping wheel rjsmin-1.2.1-cp310-cp310-manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp38-cp38-manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel rjsmin-1.2.1-cp310-cp310-manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473137651072 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/f/b/8/b/1fb8bd575403cb9b8da131621b3abb7f37ec00c6581f77f2cd7b0ef4.lock +Skipping wheel rcssmin-1.1.1-cp38-cp38-manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel rjsmin-1.2.1-cp311-cp311-manylinux1_i686.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137651072 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/f/b/8/b/1fb8bd575403cb9b8da131621b3abb7f37ec00c6581f77f2cd7b0ef4.lock +Skipping wheel rcssmin-1.1.1-cp38-cp38-manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel rjsmin-1.2.1-cp311-cp311-manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp39-cp39-manylinux1_i686.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +Skipping wheel rjsmin-1.2.1-cp311-cp311-manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel rcssmin-1.1.1-cp39-cp39-manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel rjsmin-1.2.1-cp36-cp36m-manylinux1_i686.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/c0/98/1cb3d9e8b1c6d0a74539b998474796fc5c0c0888b6201e5c95ba2f7a0677/django_appconf-1.0.6-py3-none-any.whl HTTP/1.1" 200 6424 +Skipping wheel rcssmin-1.1.1-cp39-cp39-manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel rjsmin-1.2.1-cp36-cp36m-manylinux1_x86_64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/pytz/2024.1/json HTTP/1.1" 200 8189 +Skipping wheel rjsmin-1.2.1-cp36-cp36m-manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473405802864 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/1/d/d/7/f1dd708c5f4f6b44f7b8948ed4e8b7950f7b42145139fd0639c00cd5.lock +Skipping wheel rjsmin-1.2.1-cp37-cp37m-manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel rjsmin-1.2.1-cp37-cp37m-manylinux1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473405802864 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/1/d/d/7/f1dd708c5f4f6b44f7b8948ed4e8b7950f7b42145139fd0639c00cd5.lock +Skipping wheel rjsmin-1.2.1-cp37-cp37m-manylinux2014_aarch64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/cc/39/9d0986d5a136d350ea031f7f360e0d3059924c502647530b08de82e4a663/psycopg_pool-3.2.1-py3-none-any.whl HTTP/1.1" 200 37731 +Skipping wheel rjsmin-1.2.1-cp38-cp38-manylinux1_i686.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/32/60/81ac2e7d1e3b861ab478a72e3b20fc91c4302acd2274822e493758941829/rich-12.6.0-py3-none-any.whl HTTP/1.1" 200 237505 +[filelock:filelock] Attempting to acquire lock 281473378678064 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/9/5/5/4/e95543a2f0667d95b46637b4124f1f4ef5cfbe6d79a890a909df50f9.lock +[filelock:filelock] Attempting to release lock 281473405802864 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/1/d/d/7/f1dd708c5f4f6b44f7b8948ed4e8b7950f7b42145139fd0639c00cd5.lock +Skipping wheel rjsmin-1.2.1-cp38-cp38-manylinux1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473378678064 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/9/5/5/4/e95543a2f0667d95b46637b4124f1f4ef5cfbe6d79a890a909df50f9.lock +Skipping wheel rjsmin-1.2.1-cp38-cp38-manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473405802864 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/1/d/d/7/f1dd708c5f4f6b44f7b8948ed4e8b7950f7b42145139fd0639c00cd5.lock +Skipping wheel rjsmin-1.2.1-cp39-cp39-manylinux1_i686.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473378670912 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/6/a/8/2/46a82e8be6e342beb8f9066e3aba97365c51ec73812475b3259ebe8b.lock +[filelock:filelock] Attempting to release lock 281473378678064 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/9/5/5/4/e95543a2f0667d95b46637b4124f1f4ef5cfbe6d79a890a909df50f9.lock +Skipping wheel rjsmin-1.2.1-cp39-cp39-manylinux1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473378678064 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/9/5/5/4/e95543a2f0667d95b46637b4124f1f4ef5cfbe6d79a890a909df50f9.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/77/2b/c9b076bb97042a3e013684abc40cfd56a3c15d40291f51523b59824e5155/rcssmin-1.1.1.tar.gz HTTP/1.1" 200 582247 +Skipping wheel rjsmin-1.2.1-cp39-cp39-manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473378670912 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/6/a/8/2/46a82e8be6e342beb8f9066e3aba97365c51ec73812475b3259ebe8b.lock +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +[filelock:filelock] Attempting to release lock 281473378670912 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/6/a/8/2/46a82e8be6e342beb8f9066e3aba97365c51ec73812475b3259ebe8b.lock +[filelock:filelock] Lock 281473378670912 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/6/a/8/2/46a82e8be6e342beb8f9066e3aba97365c51ec73812475b3259ebe8b.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/8c/76/f0236a34a2c7f49f5b1f59f4b6fda769fc2bf7f90d0aac4cbebbb465646d/rjsmin-1.2.1.tar.gz HTTP/1.1" 200 420696 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/9c/3d/a121f284241f08268b21359bd425f7d4825cffc5ac5cd0e1b3d82ffd2b10/pytz-2024.1-py2.py3-none-any.whl HTTP/1.1" 200 505474 +[filelock:filelock] Attempting to acquire lock 281473137747408 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/2/e/7/0/42e70c5d9cabb9a0365b5e3b94b34a1feb7fa038c43dd842df2c544b.lock +[filelock:filelock] Lock 281473137747408 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/2/e/7/0/42e70c5d9cabb9a0365b5e3b94b34a1feb7fa038c43dd842df2c544b.lock +[filelock:filelock] Attempting to release lock 281473137747408 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/2/e/7/0/42e70c5d9cabb9a0365b5e3b94b34a1feb7fa038c43dd842df2c544b.lock +[filelock:filelock] Lock 281473137747408 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/2/e/7/0/42e70c5d9cabb9a0365b5e3b94b34a1feb7fa038c43dd842df2c544b.lock +[filelock:filelock] Attempting to acquire lock 281473137645792 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/3/a/5/2/83a52b1f9ca31eb8d1fe2cbbe3c093f464e98aee4a6a58e08d4c5e95.lock +[filelock:filelock] Lock 281473137645792 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/3/a/5/2/83a52b1f9ca31eb8d1fe2cbbe3c093f464e98aee4a6a58e08d4c5e95.lock +[filelock:filelock] Attempting to release lock 281473137645792 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/3/a/5/2/83a52b1f9ca31eb8d1fe2cbbe3c093f464e98aee4a6a58e08d4c5e95.lock +[filelock:filelock] Lock 281473137645792 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/3/a/5/2/83a52b1f9ca31eb8d1fe2cbbe3c093f464e98aee4a6a58e08d4c5e95.lock +[filelock:filelock] Attempting to acquire lock 281473137515296 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/7/f/7/a/27f7a5520cb52e6deb731f5f5acaaf944d61909395ef5fd2aa797cf9.lock +[filelock:filelock] Lock 281473137515296 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/7/f/7/a/27f7a5520cb52e6deb731f5f5acaaf944d61909395ef5fd2aa797cf9.lock +[filelock:filelock] Attempting to release lock 281473137515296 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/7/f/7/a/27f7a5520cb52e6deb731f5f5acaaf944d61909395ef5fd2aa797cf9.lock +[filelock:filelock] Lock 281473137515296 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/7/f/7/a/27f7a5520cb52e6deb731f5f5acaaf944d61909395ef5fd2aa797cf9.lock +[filelock:filelock] Attempting to acquire lock 281473388253440 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/d/f/5/8/2df581f9607776291dff47f1ca99ac91a36cf23ebd5ffc50ce195cb5.lock +[filelock:filelock] Lock 281473388253440 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/d/f/5/8/2df581f9607776291dff47f1ca99ac91a36cf23ebd5ffc50ce195cb5.lock +[filelock:filelock] Attempting to release lock 281473388253440 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/d/f/5/8/2df581f9607776291dff47f1ca99ac91a36cf23ebd5ffc50ce195cb5.lock +[filelock:filelock] Lock 281473388253440 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/d/f/5/8/2df581f9607776291dff47f1ca99ac91a36cf23ebd5ffc50ce195cb5.lock +[filelock:filelock] Attempting to acquire lock 281473137720448 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/9/4/b/f/194bfbd4f021fc3ab6034ca69164aaed7c63e992d073480bc98442c1.lock +[filelock:filelock] Lock 281473137720448 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/9/4/b/f/194bfbd4f021fc3ab6034ca69164aaed7c63e992d073480bc98442c1.lock +[filelock:filelock] Attempting to release lock 281473137720448 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/9/4/b/f/194bfbd4f021fc3ab6034ca69164aaed7c63e992d073480bc98442c1.lock +[filelock:filelock] Lock 281473137720448 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/9/4/b/f/194bfbd4f021fc3ab6034ca69164aaed7c63e992d073480bc98442c1.lock +[filelock:filelock] Attempting to acquire lock 281473137789840 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/c/b/e/b/b/cbebb5595b9bad92125ab4e858e71f057a9b8b2d913719dc2f3ac166.lock +[filelock:filelock] Lock 281473137789840 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/c/b/e/b/b/cbebb5595b9bad92125ab4e858e71f057a9b8b2d913719dc2f3ac166.lock +[filelock:filelock] Attempting to release lock 281473137789840 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/c/b/e/b/b/cbebb5595b9bad92125ab4e858e71f057a9b8b2d913719dc2f3ac166.lock +[filelock:filelock] Lock 281473137789840 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/c/b/e/b/b/cbebb5595b9bad92125ab4e858e71f057a9b8b2d913719dc2f3ac166.lock +[virtualenv] find interpreter for spec PythonSpec(path=/usr/local/bin/python3.12) +[filelock:filelock] Attempting to acquire lock 281473137511792 on /root/.local/share/virtualenv/py_info/1/f1062708a37074d70712b695aadee582e0b0b9f95f45576b5521424137d05fec.lock +[filelock:filelock] Lock 281473137511792 acquired on /root/.local/share/virtualenv/py_info/1/f1062708a37074d70712b695aadee582e0b0b9f95f45576b5521424137d05fec.lock +[virtualenv] get interpreter info via cmd: /usr/local/bin/python3.12 /root/.local/share/pypoetry/venv/lib/python3.12/site-packages/virtualenv/discovery/py_info.py TCtjB3lwY2zxdyBsNSRWwpkCgl0GYrxJ 77YelWp1FlW5JIn5XRKoX2aquHTCUdd6 +[virtualenv] wrote python info of %s at (PosixPath('/usr/local/bin/python3.12'), PosixPath('/root/.local/share/virtualenv/py_info/1/f1062708a37074d70712b695aadee582e0b0b9f95f45576b5521424137d05fec.json')) +[filelock:filelock] Attempting to release lock 281473137511792 on /root/.local/share/virtualenv/py_info/1/f1062708a37074d70712b695aadee582e0b0b9f95f45576b5521424137d05fec.lock +[filelock:filelock] Lock 281473137511792 released on /root/.local/share/virtualenv/py_info/1/f1062708a37074d70712b695aadee582e0b0b9f95f45576b5521424137d05fec.lock +[virtualenv] proposed PythonInfo(spec=CPython3.12.2.final.0-64, exe=/usr/local/bin/python3.12, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] accepted PythonInfo(spec=CPython3.12.2.final.0-64, exe=/usr/local/bin/python3.12, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] create virtual environment via CPython3Posix(dest=/tmp/tmpkl5ebmgf/.venv, clear=False, no_vcs_ignore=False, global=False) +[virtualenv] create folder /tmp/tmpkl5ebmgf/.venv/bin +[virtualenv] create folder /tmp/tmpkl5ebmgf/.venv/lib/python3.12/site-packages +[virtualenv] write /tmp/tmpkl5ebmgf/.venv/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +[virtualenv] symlink /usr/local/bin/python3.12 to /tmp/tmpkl5ebmgf/.venv/bin/python +[virtualenv] create virtualenv import hook file /tmp/tmpkl5ebmgf/.venv/lib/python3.12/site-packages/_virtualenv.pth +[virtualenv] create /tmp/tmpkl5ebmgf/.venv/lib/python3.12/site-packages/_virtualenv.py +[virtualenv] ============================== target debug ============================== +[virtualenv] debug via /tmp/tmpkl5ebmgf/.venv/bin/python /root/.local/share/pypoetry/venv/lib/python3.12/site-packages/virtualenv/create/debug.py +[virtualenv] { +[virtualenv] "sys": { +[virtualenv] "executable": "/tmp/tmpkl5ebmgf/.venv/bin/python", +[virtualenv] "_base_executable": "/usr/local/bin/python3.12", +[virtualenv] "prefix": "/tmp/tmpkl5ebmgf/.venv", +[virtualenv] "base_prefix": "/usr/local", +[virtualenv] "real_prefix": null, +[virtualenv] "exec_prefix": "/tmp/tmpkl5ebmgf/.venv", +[virtualenv] "base_exec_prefix": "/usr/local", +[virtualenv] "path": [ +[virtualenv] "/usr/local/lib/python312.zip", +[virtualenv] "/usr/local/lib/python3.12", +[virtualenv] "/usr/local/lib/python3.12/lib-dynload", +[virtualenv] "/tmp/tmpkl5ebmgf/.venv/lib/python3.12/site-packages" +[virtualenv] ], +[virtualenv] "meta_path": [ +[virtualenv] "", +[virtualenv] "", +[virtualenv] "", +[virtualenv] "" +[virtualenv] ], +[virtualenv] "fs_encoding": "utf-8", +[virtualenv] "io_encoding": "utf-8" +[virtualenv] }, +[virtualenv] "version": "3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]", +[virtualenv] "makefile_filename": "/usr/local/lib/python3.12/config-3.12-aarch64-linux-gnu/Makefile", +[virtualenv] "os": "", +[virtualenv] "site": "", +[virtualenv] "datetime": "", +[virtualenv] "math": "", +[virtualenv] "json": "" +[virtualenv] } +[virtualenv] add activators for Bash, CShell, Fish, Nushell, PowerShell, Python +[virtualenv] write /tmp/tmpkl5ebmgf/.venv/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /simple/setuptools/ HTTP/1.1" 200 171311 +[filelock:filelock] Attempting to acquire lock 281473378482224 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/0/4/1/8/c/0418c83b80f7f7bfaec2738bfbbee53d2c1562196c0781702f6eddc8.lock +[filelock:filelock] Lock 281473378482224 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/0/4/1/8/c/0418c83b80f7f7bfaec2738bfbbee53d2c1562196c0781702f6eddc8.lock +[filelock:filelock] Attempting to release lock 281473378482224 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/0/4/1/8/c/0418c83b80f7f7bfaec2738bfbbee53d2c1562196c0781702f6eddc8.lock +[filelock:filelock] Lock 281473378482224 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/0/4/1/8/c/0418c83b80f7f7bfaec2738bfbbee53d2c1562196c0781702f6eddc8.lock +Source (PyPI): 209 packages found for setuptools >=40.8.0 +Source (PyPI): Getting info for setuptools (69.1.1) from PyPI +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/setuptools/69.1.1/json HTTP/1.1" 200 2555 +[filelock:filelock] Attempting to acquire lock 281473378677680 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/0/4/9/b/6049b8037b5decb6f3ed5b6c673bce98e2b9a1116b6a1d91c2d83e6d.lock +[filelock:filelock] Lock 281473378677680 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/0/4/9/b/6049b8037b5decb6f3ed5b6c673bce98e2b9a1116b6a1d91c2d83e6d.lock +[filelock:filelock] Attempting to release lock 281473378677680 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/0/4/9/b/6049b8037b5decb6f3ed5b6c673bce98e2b9a1116b6a1d91c2d83e6d.lock +[filelock:filelock] Lock 281473378677680 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/0/4/9/b/6049b8037b5decb6f3ed5b6c673bce98e2b9a1116b6a1d91c2d83e6d.lock +Source (PyPI): 1 packages found for setuptools >=40.8.0 +Checking if keyring is available +Backend 'fail Keyring' is not suitable +No valid keyring backend was found +Creating new session for files.pythonhosted.org +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (1): files.pythonhosted.org:443 +[virtualenv] find interpreter for spec PythonSpec(path=/usr/local/bin/python3.12) +[virtualenv] proposed PythonInfo(spec=CPython3.12.2.final.0-64, exe=/usr/local/bin/python3.12, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] accepted PythonInfo(spec=CPython3.12.2.final.0-64, exe=/usr/local/bin/python3.12, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] create virtual environment via CPython3Posix(dest=/tmp/tmppnpwsd_x/.venv, clear=False, no_vcs_ignore=False, global=False) +[virtualenv] create folder /tmp/tmppnpwsd_x/.venv/bin +[virtualenv] create folder /tmp/tmppnpwsd_x/.venv/lib/python3.12/site-packages +[virtualenv] write /tmp/tmppnpwsd_x/.venv/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +[virtualenv] symlink /usr/local/bin/python3.12 to /tmp/tmppnpwsd_x/.venv/bin/python +[virtualenv] create virtualenv import hook file /tmp/tmppnpwsd_x/.venv/lib/python3.12/site-packages/_virtualenv.pth +[virtualenv] create /tmp/tmppnpwsd_x/.venv/lib/python3.12/site-packages/_virtualenv.py +[virtualenv] ============================== target debug ============================== +[virtualenv] debug via /tmp/tmppnpwsd_x/.venv/bin/python /root/.local/share/pypoetry/venv/lib/python3.12/site-packages/virtualenv/create/debug.py +[virtualenv] { +[virtualenv] "sys": { +[virtualenv] "executable": "/tmp/tmppnpwsd_x/.venv/bin/python", +[virtualenv] "_base_executable": "/usr/local/bin/python3.12", +[virtualenv] "prefix": "/tmp/tmppnpwsd_x/.venv", +[virtualenv] "base_prefix": "/usr/local", +[virtualenv] "real_prefix": null, +[virtualenv] "exec_prefix": "/tmp/tmppnpwsd_x/.venv", +[virtualenv] "base_exec_prefix": "/usr/local", +[virtualenv] "path": [ +[virtualenv] "/usr/local/lib/python312.zip", +[virtualenv] "/usr/local/lib/python3.12", +[virtualenv] "/usr/local/lib/python3.12/lib-dynload", +[virtualenv] "/tmp/tmppnpwsd_x/.venv/lib/python3.12/site-packages" +[virtualenv] ], +[virtualenv] "meta_path": [ +[virtualenv] "", +[virtualenv] "", +[virtualenv] "", +[virtualenv] "" +[virtualenv] ], +[virtualenv] "fs_encoding": "utf-8", +[virtualenv] "io_encoding": "utf-8" +[virtualenv] }, +[virtualenv] "version": "3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]", +[virtualenv] "makefile_filename": "/usr/local/lib/python3.12/config-3.12-aarch64-linux-gnu/Makefile", +[virtualenv] "os": "", +[virtualenv] "site": "", +[virtualenv] "datetime": "", +[virtualenv] "math": "", +[virtualenv] "json": "" +[virtualenv] } +[virtualenv] add activators for Bash, CShell, Fish, Nushell, PowerShell, Python +[virtualenv] write /tmp/tmppnpwsd_x/.venv/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/c0/7a/3da654f49c95d0cc6e9549a855b5818e66a917e852ec608e77550c8dc08b/setuptools-69.1.1-py3-none-any.whl HTTP/1.1" 200 819326 +Source (PyPI): 209 packages found for setuptools >=40.8.0 +Source (PyPI): 1 packages found for setuptools >=40.8.0 +[filelock:filelock] Attempting to acquire lock 281473388138560 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/0/e/e/1/70ee12175aab414b36457b57bddfa81d3e2ab66d7b9059f5919e53b4.lock +[filelock:filelock] Lock 281473388138560 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/0/e/e/1/70ee12175aab414b36457b57bddfa81d3e2ab66d7b9059f5919e53b4.lock +[filelock:filelock] Attempting to release lock 281473388138560 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/0/e/e/1/70ee12175aab414b36457b57bddfa81d3e2ab66d7b9059f5919e53b4.lock +[filelock:filelock] Lock 281473388138560 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/0/e/e/1/70ee12175aab414b36457b57bddfa81d3e2ab66d7b9059f5919e53b4.lock +[build:build] Getting build dependencies for wheel... +[build:build] Getting build dependencies for wheel... +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /simple/wheel/ HTTP/1.1" 200 18224 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /simple/wheel/ HTTP/1.1" 200 18224 +[filelock:filelock] Attempting to acquire lock 281473137748512 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/4/d/2/7/2/4d272e6453941ce8b0a37a02cdb1685fc612c33441fa74691fb40656.lock +[filelock:filelock] Lock 281473137748512 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/4/d/2/7/2/4d272e6453941ce8b0a37a02cdb1685fc612c33441fa74691fb40656.lock +[filelock:filelock] Attempting to release lock 281473137748512 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/4/d/2/7/2/4d272e6453941ce8b0a37a02cdb1685fc612c33441fa74691fb40656.lock +[filelock:filelock] Lock 281473137748512 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/4/d/2/7/2/4d272e6453941ce8b0a37a02cdb1685fc612c33441fa74691fb40656.lock +Source (PyPI): 72 packages found for wheel * +Source (PyPI): 209 packages found for setuptools >=40.8.0 +Source (PyPI): Getting info for wheel (0.42.0) from PyPI +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/wheel/0.42.0/json HTTP/1.1" 200 1674 +[filelock:filelock] Attempting to acquire lock 281473137706576 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/4/6/c/4/a46c49bc5d0863b0859e5817d20b8d0d2e4afdc86742f3115c56d458.lock +[filelock:filelock] Lock 281473137706576 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/4/6/c/4/a46c49bc5d0863b0859e5817d20b8d0d2e4afdc86742f3115c56d458.lock +[filelock:filelock] Attempting to release lock 281473137706576 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/4/6/c/4/a46c49bc5d0863b0859e5817d20b8d0d2e4afdc86742f3115c56d458.lock +[filelock:filelock] Lock 281473137706576 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/4/6/c/4/a46c49bc5d0863b0859e5817d20b8d0d2e4afdc86742f3115c56d458.lock +Source (PyPI): 1 packages found for wheel * +Source (PyPI): 1 packages found for setuptools >=40.8.0 +Checking if keyring is available +Backend 'fail Keyring' is not suitable +No valid keyring backend was found +Creating new session for files.pythonhosted.org +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (1): files.pythonhosted.org:443 +[filelock:filelock] Attempting to acquire lock 281473137711280 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/4/d/2/7/2/4d272e6453941ce8b0a37a02cdb1685fc612c33441fa74691fb40656.lock +[filelock:filelock] Lock 281473137711280 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/4/d/2/7/2/4d272e6453941ce8b0a37a02cdb1685fc612c33441fa74691fb40656.lock +[filelock:filelock] Attempting to release lock 281473137711280 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/4/d/2/7/2/4d272e6453941ce8b0a37a02cdb1685fc612c33441fa74691fb40656.lock +[filelock:filelock] Lock 281473137711280 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/4/d/2/7/2/4d272e6453941ce8b0a37a02cdb1685fc612c33441fa74691fb40656.lock +Source (PyPI): 72 packages found for wheel * +Source (PyPI): 209 packages found for setuptools >=40.8.0 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/c7/c3/55076fc728723ef927521abaa1955213d094933dc36d4a2008d5101e1af5/wheel-0.42.0-py3-none-any.whl HTTP/1.1" 200 65375 +Source (PyPI): 1 packages found for wheel * +Source (PyPI): 1 packages found for setuptools >=40.8.0 +[filelock:filelock] Attempting to acquire lock 281473378513888 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/e/1/d/d/7e1dd8fd372b5a4d9dab3a30df124fb3e1f8789a9ab79f867640876a.lock +[filelock:filelock] Lock 281473378513888 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/e/1/d/d/7e1dd8fd372b5a4d9dab3a30df124fb3e1f8789a9ab79f867640876a.lock +[filelock:filelock] Attempting to release lock 281473378513888 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/e/1/d/d/7e1dd8fd372b5a4d9dab3a30df124fb3e1f8789a9ab79f867640876a.lock +[filelock:filelock] Lock 281473378513888 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/e/1/d/d/7e1dd8fd372b5a4d9dab3a30df124fb3e1f8789a9ab79f867640876a.lock +[build:build] Building wheel... +[build:build] Building wheel... + - Installing anyio (4.3.0) + - Installing appdirs (1.4.4) + - Installing cattrs (23.2.3) + - Installing django-compressor (4.4) + - Installing et-xmlfile (1.1.0) + - Installing inflection (0.5.1) + - Installing croniter (2.0.2) + - Installing packaging (23.2) + - Installing django-stubs (4.2.7) + - Installing platformdirs (4.2.0) + - Installing async-timeout (4.0.3) + - Installing mccabe (0.7.0) + - Installing pathspec (0.12.1) + - Installing libsass (0.23.0) +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (17): pypi.org:443 + - Installing pandas (1.5.3) + - Installing psycopg (3.1.18) +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (18): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (19): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (20): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (21): pypi.org:443 +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (22): pypi.org:443 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/packaging/23.2/json HTTP/1.1" 200 1986 +[filelock:filelock] Attempting to acquire lock 281473138040160 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/3/9/3/3/6393355c793cf011176166477caaf9c2a6979328488f9122675cf44d.lock +[filelock:filelock] Lock 281473138040160 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/3/9/3/3/6393355c793cf011176166477caaf9c2a6979328488f9122675cf44d.lock +[filelock:filelock] Attempting to release lock 281473138040160 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/3/9/3/3/6393355c793cf011176166477caaf9c2a6979328488f9122675cf44d.lock +[filelock:filelock] Lock 281473138040160 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/3/9/3/3/6393355c793cf011176166477caaf9c2a6979328488f9122675cf44d.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/platformdirs/4.2.0/json HTTP/1.1" 200 3790 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/anyio/4.3.0/json HTTP/1.1" 200 2503 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/appdirs/1.4.4/json HTTP/1.1" 200 3808 +[filelock:filelock] Attempting to acquire lock 281473103269856 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/c/7/f/e/7c7fec328c6fb5379ddcb65f127bb16d8cc4e04c2217666bbbf7a59a.lock +[filelock:filelock] Attempting to acquire lock 281473103270336 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/4/8/9/8/348986fe1305b0a3e71c162d48f22b33ecabd01330296c4d5d414205.lock +[filelock:filelock] Lock 281473103269856 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/c/7/f/e/7c7fec328c6fb5379ddcb65f127bb16d8cc4e04c2217666bbbf7a59a.lock +[filelock:filelock] Attempting to acquire lock 281473103270288 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/a/5/8/3/8a58387382be80a4c8c82318278eef0ae97a371dd8b8b5a61af54380.lock +[filelock:filelock] Lock 281473103270336 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/4/8/9/8/348986fe1305b0a3e71c162d48f22b33ecabd01330296c4d5d414205.lock +[filelock:filelock] Attempting to release lock 281473103269856 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/c/7/f/e/7c7fec328c6fb5379ddcb65f127bb16d8cc4e04c2217666bbbf7a59a.lock +[filelock:filelock] Lock 281473103269856 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/c/7/f/e/7c7fec328c6fb5379ddcb65f127bb16d8cc4e04c2217666bbbf7a59a.lock +[filelock:filelock] Attempting to release lock 281473103270336 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/4/8/9/8/348986fe1305b0a3e71c162d48f22b33ecabd01330296c4d5d414205.lock +[filelock:filelock] Lock 281473103270288 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/a/5/8/3/8a58387382be80a4c8c82318278eef0ae97a371dd8b8b5a61af54380.lock +[filelock:filelock] Lock 281473103270336 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/4/8/9/8/348986fe1305b0a3e71c162d48f22b33ecabd01330296c4d5d414205.lock +[filelock:filelock] Attempting to release lock 281473103270288 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/a/5/8/3/8a58387382be80a4c8c82318278eef0ae97a371dd8b8b5a61af54380.lock +[filelock:filelock] Lock 281473103270288 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/a/5/8/3/8a58387382be80a4c8c82318278eef0ae97a371dd8b8b5a61af54380.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/14/fd/2f20c40b45e4fb4324834aea24bd4afdf1143390242c0b33774da0e2e34f/anyio-4.3.0-py3-none-any.whl HTTP/1.1" 200 85584 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/55/72/4898c44ee9ea6f43396fbc23d9bfaf3d06e01b83698bdf2e4c919deceb7c/platformdirs-4.2.0-py3-none-any.whl HTTP/1.1" 200 17717 +[filelock:filelock] Attempting to acquire lock 281473103269184 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/a/d/9/8/8ad98ba95cbb3affc5cc95b8295de46584e521fb318b9a5899dc3091.lock +[filelock:filelock] Lock 281473103269184 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/a/d/9/8/8ad98ba95cbb3affc5cc95b8295de46584e521fb318b9a5899dc3091.lock +[filelock:filelock] Attempting to release lock 281473103269184 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/a/d/9/8/8ad98ba95cbb3affc5cc95b8295de46584e521fb318b9a5899dc3091.lock +[filelock:filelock] Lock 281473103269184 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/a/d/9/8/8ad98ba95cbb3affc5cc95b8295de46584e521fb318b9a5899dc3091.lock +[filelock:filelock] Attempting to acquire lock 281473378678640 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/6/b/4/5/46b45c47d1a3cb00a24181c880c803eb4ab099853f0eaf4490f0ada9.lock +[filelock:filelock] Lock 281473378678640 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/6/b/4/5/46b45c47d1a3cb00a24181c880c803eb4ab099853f0eaf4490f0ada9.lock +[filelock:filelock] Attempting to release lock 281473378678640 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/6/b/4/5/46b45c47d1a3cb00a24181c880c803eb4ab099853f0eaf4490f0ada9.lock +[filelock:filelock] Lock 281473378678640 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/6/b/4/5/46b45c47d1a3cb00a24181c880c803eb4ab099853f0eaf4490f0ada9.lock + - Installing psycopg2-binary (2.9.9) + - Installing pycodestyle (2.11.1) +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/ec/1a/610693ac4ee14fcdf2d9bf3c493370e4f2ef7ae2e19217d7a237ff42367d/packaging-23.2-py3-none-any.whl HTTP/1.1" 200 53011 +[filelock:filelock] Attempting to acquire lock 281473387982736 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/1/0/f/4/f10f426a40cefc424cbee1e9cdd81f9b658d50df7cdca5d9cb63c8be.lock +[filelock:filelock] Lock 281473387982736 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/1/0/f/4/f10f426a40cefc424cbee1e9cdd81f9b658d50df7cdca5d9cb63c8be.lock +[filelock:filelock] Attempting to release lock 281473387982736 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/1/0/f/4/f10f426a40cefc424cbee1e9cdd81f9b658d50df7cdca5d9cb63c8be.lock +[filelock:filelock] Lock 281473387982736 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/1/0/f/4/f10f426a40cefc424cbee1e9cdd81f9b658d50df7cdca5d9cb63c8be.lock + - Installing pydantic (2.6.3) +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/pycodestyle/2.11.1/json HTTP/1.1" 200 2567 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl HTTP/1.1" 200 9566 +[filelock:filelock] Attempting to acquire lock 281473103267696 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/b/d/7/e/7bd7e431a78c1b9b7731279d545cdd05f2c37d41016edb735700230c.lock +[filelock:filelock] Lock 281473103267696 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/b/d/7/e/7bd7e431a78c1b9b7731279d545cdd05f2c37d41016edb735700230c.lock +[filelock:filelock] Attempting to acquire lock 281473103007760 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/d/8/1/b/0/d81b0d637fc5a014f3c179d9e5b6bb42c8b249ee0800eb63b1e63658.lock +[filelock:filelock] Attempting to release lock 281473103267696 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/b/d/7/e/7bd7e431a78c1b9b7731279d545cdd05f2c37d41016edb735700230c.lock +[filelock:filelock] Lock 281473103007760 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/d/8/1/b/0/d81b0d637fc5a014f3c179d9e5b6bb42c8b249ee0800eb63b1e63658.lock +[filelock:filelock] Lock 281473103267696 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/b/d/7/e/7bd7e431a78c1b9b7731279d545cdd05f2c37d41016edb735700230c.lock +[filelock:filelock] Attempting to release lock 281473103007760 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/d/8/1/b/0/d81b0d637fc5a014f3c179d9e5b6bb42c8b249ee0800eb63b1e63658.lock +[filelock:filelock] Lock 281473103007760 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/d/8/1/b/0/d81b0d637fc5a014f3c179d9e5b6bb42c8b249ee0800eb63b1e63658.lock + - Installing pyflakes (3.1.0) +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/pydantic/2.6.3/json HTTP/1.1" 200 17945 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/pyflakes/3.1.0/json HTTP/1.1" 200 2319 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/b1/90/a998c550d0ddd07e38605bb5c455d00fcc177a800ff9cc3dafdcb3dd7b56/pycodestyle-2.11.1-py2.py3-none-any.whl HTTP/1.1" 200 31132 +[filelock:filelock] Attempting to acquire lock 281473103274464 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/c/e/e/a/1ceea2a5dc32c1313deee098f4c6ac2780ccc84b112531b0154e09ca.lock +[filelock:filelock] Lock 281473103274464 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/c/e/e/a/1ceea2a5dc32c1313deee098f4c6ac2780ccc84b112531b0154e09ca.lock +[filelock:filelock] Attempting to release lock 281473103274464 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/c/e/e/a/1ceea2a5dc32c1313deee098f4c6ac2780ccc84b112531b0154e09ca.lock +[filelock:filelock] Lock 281473103274464 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/c/e/e/a/1ceea2a5dc32c1313deee098f4c6ac2780ccc84b112531b0154e09ca.lock +[filelock:filelock] Attempting to acquire lock 281473103267600 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/b/d/1/f/9bd1fc057909083ea64689780acf376915d0dd7fe72f220b81365336.lock +[filelock:filelock] Lock 281473103267600 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/b/d/1/f/9bd1fc057909083ea64689780acf376915d0dd7fe72f220b81365336.lock +[filelock:filelock] Attempting to release lock 281473103267600 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/b/d/1/f/9bd1fc057909083ea64689780acf376915d0dd7fe72f220b81365336.lock +[filelock:filelock] Lock 281473103267600 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/b/d/1/f/9bd1fc057909083ea64689780acf376915d0dd7fe72f220b81365336.lock + - Installing pyjwt (2.8.0) +[filelock:filelock] Attempting to acquire lock 281473103270192 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/4/2/3/9/642397ffc6286c0ef62df6eea74b4239d25f77960318e4412ad05fde.lock +[filelock:filelock] Lock 281473103270192 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/4/2/3/9/642397ffc6286c0ef62df6eea74b4239d25f77960318e4412ad05fde.lock +[filelock:filelock] Attempting to release lock 281473103270192 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/4/2/3/9/642397ffc6286c0ef62df6eea74b4239d25f77960318e4412ad05fde.lock +[filelock:filelock] Lock 281473103270192 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/4/2/3/9/642397ffc6286c0ef62df6eea74b4239d25f77960318e4412ad05fde.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/00/e9/1e1fd7fae559bfd07704991e9a59dd1349b72423c904256c073ce88a9940/pyflakes-3.1.0-py2.py3-none-any.whl HTTP/1.1" 200 62616 +[filelock:filelock] Attempting to acquire lock 281473103266016 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/0/c/f/2/70cf2d4a0d469fa512a5eb748a11952ba71df1c03da87b0bba7a521d.lock +[filelock:filelock] Lock 281473103266016 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/0/c/f/2/70cf2d4a0d469fa512a5eb748a11952ba71df1c03da87b0bba7a521d.lock +[filelock:filelock] Attempting to release lock 281473103266016 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/0/c/f/2/70cf2d4a0d469fa512a5eb748a11952ba71df1c03da87b0bba7a521d.lock +[filelock:filelock] Lock 281473103266016 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/0/c/f/2/70cf2d4a0d469fa512a5eb748a11952ba71df1c03da87b0bba7a521d.lock + - Installing python-fsutil (0.13.1) +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/ac/86/c98520827f58c8753783be4bf2286b4f73a18ac71c93ab597ae1aeb26fc8/pydantic-2.6.3-py3-none-any.whl HTTP/1.1" 200 395171 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/django-compressor/4.4/json HTTP/1.1" 200 2720 +[filelock:filelock] Attempting to acquire lock 281473103278016 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/9/6/6/c/2966c84672b54be2ef749c25f6fd40d9b9ae3cbcbc8bded6b8e5b1af.lock +[filelock:filelock] Lock 281473103278016 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/9/6/6/c/2966c84672b54be2ef749c25f6fd40d9b9ae3cbcbc8bded6b8e5b1af.lock +[filelock:filelock] Attempting to release lock 281473103278016 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/9/6/6/c/2966c84672b54be2ef749c25f6fd40d9b9ae3cbcbc8bded6b8e5b1af.lock +[filelock:filelock] Lock 281473103278016 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/9/6/6/c/2966c84672b54be2ef749c25f6fd40d9b9ae3cbcbc8bded6b8e5b1af.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/pyjwt/2.8.0/json HTTP/1.1" 200 2153 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/et-xmlfile/1.1.0/json HTTP/1.1" 200 1613 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/inflection/0.5.1/json HTTP/1.1" 200 1424 +[filelock:filelock] Attempting to acquire lock 281473102461744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/3/a/1/e/b3a1e14207b3851d16dfbf9395e8a1ba4b634aed2ed240e93dd2da97.lock +[filelock:filelock] Attempting to acquire lock 281473103010352 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/e/9/a/9/6e9a91c4e4b51b71bc77664e88702b7e325f1edefa1326847bd2af83.lock +[filelock:filelock] Attempting to acquire lock 281473103016928 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/5/9/3/f/d/593fda8678a31923c0f92374ca71be5b7a368ee8b11cec718a4745fd.lock +[filelock:filelock] Lock 281473102461744 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/3/a/1/e/b3a1e14207b3851d16dfbf9395e8a1ba4b634aed2ed240e93dd2da97.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/django-stubs/4.2.7/json HTTP/1.1" 200 6697 +[filelock:filelock] Lock 281473103010352 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/e/9/a/9/6e9a91c4e4b51b71bc77664e88702b7e325f1edefa1326847bd2af83.lock +[filelock:filelock] Attempting to acquire lock 281473378501312 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/b/b/1/6/fbb16f99cac467e3a22f69d65ed5bb22c8adf0288d63a8355f534baf.lock +[filelock:filelock] Lock 281473103016928 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/5/9/3/f/d/593fda8678a31923c0f92374ca71be5b7a368ee8b11cec718a4745fd.lock +[filelock:filelock] Attempting to release lock 281473102461744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/3/a/1/e/b3a1e14207b3851d16dfbf9395e8a1ba4b634aed2ed240e93dd2da97.lock +[filelock:filelock] Attempting to release lock 281473103010352 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/e/9/a/9/6e9a91c4e4b51b71bc77664e88702b7e325f1edefa1326847bd2af83.lock +[filelock:filelock] Lock 281473378501312 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/b/b/1/6/fbb16f99cac467e3a22f69d65ed5bb22c8adf0288d63a8355f534baf.lock +[filelock:filelock] Attempting to release lock 281473103016928 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/5/9/3/f/d/593fda8678a31923c0f92374ca71be5b7a368ee8b11cec718a4745fd.lock +[filelock:filelock] Lock 281473103016928 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/5/9/3/f/d/593fda8678a31923c0f92374ca71be5b7a368ee8b11cec718a4745fd.lock +[filelock:filelock] Lock 281473103010352 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/e/9/a/9/6e9a91c4e4b51b71bc77664e88702b7e325f1edefa1326847bd2af83.lock +[filelock:filelock] Lock 281473102461744 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/3/a/1/e/b3a1e14207b3851d16dfbf9395e8a1ba4b634aed2ed240e93dd2da97.lock +[filelock:filelock] Attempting to release lock 281473378501312 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/b/b/1/6/fbb16f99cac467e3a22f69d65ed5bb22c8adf0288d63a8355f534baf.lock +[filelock:filelock] Lock 281473378501312 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/f/b/b/1/6/fbb16f99cac467e3a22f69d65ed5bb22c8adf0288d63a8355f534baf.lock +[filelock:filelock] Attempting to acquire lock 281473137679040 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/1/7/3/0/b17305aede1ff40f67dd27441a79a2e9ca7e160e861a55841aaaca89.lock +[filelock:filelock] Lock 281473137679040 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/1/7/3/0/b17305aede1ff40f67dd27441a79a2e9ca7e160e861a55841aaaca89.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/cattrs/23.2.3/json HTTP/1.1" 200 4806 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/a0/b5/3c000d6d7b8ffa8831d2ef5bcbbe5780de172024e226ec89391853d4b759/django_compressor-4.4-py2.py3-none-any.whl HTTP/1.1" 200 148954 +[filelock:filelock] Attempting to release lock 281473137679040 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/1/7/3/0/b17305aede1ff40f67dd27441a79a2e9ca7e160e861a55841aaaca89.lock +[filelock:filelock] Lock 281473137679040 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/b/1/7/3/0/b17305aede1ff40f67dd27441a79a2e9ca7e160e861a55841aaaca89.lock +[filelock:filelock] Attempting to acquire lock 281473378515328 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/c/3/f/f/5c3ffa1f1d925b5c726c736b1f00064fb490e3dd97ad0be1c360b497.lock +[filelock:filelock] Lock 281473378515328 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/c/3/f/f/5c3ffa1f1d925b5c726c736b1f00064fb490e3dd97ad0be1c360b497.lock +[filelock:filelock] Attempting to release lock 281473378515328 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/c/3/f/f/5c3ffa1f1d925b5c726c736b1f00064fb490e3dd97ad0be1c360b497.lock +[filelock:filelock] Lock 281473378515328 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/c/3/f/f/5c3ffa1f1d925b5c726c736b1f00064fb490e3dd97ad0be1c360b497.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/96/c2/3dd434b0108730014f1b96fd286040dc3bcb70066346f7e01ec2ac95865f/et_xmlfile-1.1.0-py3-none-any.whl HTTP/1.1" 200 4688 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/59/91/aa6bde563e0085a02a435aa99b49ef75b0a4b062635e606dab23ce18d720/inflection-0.5.1-py2.py3-none-any.whl HTTP/1.1" 200 9454 +[filelock:filelock] Attempting to acquire lock 281473103014912 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/f/f/b/8/5ffb85ea0c6f7ff29b14ea53fb444340f849e9817f40b7af497c1423.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/2b/4f/e04a8067c7c96c364cef7ef73906504e2f40d690811c021e1a1901473a19/PyJWT-2.8.0-py3-none-any.whl HTTP/1.1" 200 22591 +[filelock:filelock] Lock 281473103014912 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/f/f/b/8/5ffb85ea0c6f7ff29b14ea53fb444340f849e9817f40b7af497c1423.lock +[filelock:filelock] Attempting to acquire lock 281473137714400 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/8/e/5/5/88e558cf4f547dc9ce0a15ae7040613f79b0dd6062be287f7153ec50.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/31/33/a4024662b31999841bc18ef845a790f6b6a9ad50f5b2aceb029896612d17/django_stubs-4.2.7-py3-none-any.whl HTTP/1.1" 200 456669 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/psycopg2-binary/2.9.9/json HTTP/1.1" 200 13002 +[filelock:filelock] Attempting to acquire lock 281473138114480 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/7/d/c/a/07dca047f4758430a2b973956b32e9905828cbf99e4f60e7287de161.lock +[filelock:filelock] Lock 281473137714400 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/8/e/5/5/88e558cf4f547dc9ce0a15ae7040613f79b0dd6062be287f7153ec50.lock +[filelock:filelock] Attempting to release lock 281473103014912 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/f/f/b/8/5ffb85ea0c6f7ff29b14ea53fb444340f849e9817f40b7af497c1423.lock +[filelock:filelock] Attempting to acquire lock 281473138112368 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/5/6/0/9/45609a98def18e658161b2f6581d765d16405b388807ea3c5127b09a.lock +[filelock:filelock] Lock 281473138114480 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/7/d/c/a/07dca047f4758430a2b973956b32e9905828cbf99e4f60e7287de161.lock +[filelock:filelock] Attempting to acquire lock 281473138098784 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/8/7/0/c/a870c914ae6d343dd3d758d0ff97de959a239c55ab5ee95b1f11b2d1.lock +[filelock:filelock] Attempting to release lock 281473137714400 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/8/e/5/5/88e558cf4f547dc9ce0a15ae7040613f79b0dd6062be287f7153ec50.lock +[filelock:filelock] Lock 281473103014912 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/f/f/b/8/5ffb85ea0c6f7ff29b14ea53fb444340f849e9817f40b7af497c1423.lock +[filelock:filelock] Lock 281473138112368 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/5/6/0/9/45609a98def18e658161b2f6581d765d16405b388807ea3c5127b09a.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/croniter/2.0.2/json HTTP/1.1" 200 9021 +[filelock:filelock] Attempting to release lock 281473138114480 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/7/d/c/a/07dca047f4758430a2b973956b32e9905828cbf99e4f60e7287de161.lock +[filelock:filelock] Lock 281473138098784 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/8/7/0/c/a870c914ae6d343dd3d758d0ff97de959a239c55ab5ee95b1f11b2d1.lock +[filelock:filelock] Lock 281473137714400 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/8/e/5/5/88e558cf4f547dc9ce0a15ae7040613f79b0dd6062be287f7153ec50.lock +[filelock:filelock] Attempting to release lock 281473138112368 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/5/6/0/9/45609a98def18e658161b2f6581d765d16405b388807ea3c5127b09a.lock +[filelock:filelock] Lock 281473138114480 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/7/d/c/a/07dca047f4758430a2b973956b32e9905828cbf99e4f60e7287de161.lock +[filelock:filelock] Attempting to release lock 281473138098784 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/8/7/0/c/a870c914ae6d343dd3d758d0ff97de959a239c55ab5ee95b1f11b2d1.lock +[filelock:filelock] Attempting to acquire lock 281473137681920 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/8/3/4/1/183415b1ba6aa468e77e8a657f7d01e26f3ea76c5aa7f24a2ae5c3bb.lock +[filelock:filelock] Lock 281473138112368 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/4/5/6/0/9/45609a98def18e658161b2f6581d765d16405b388807ea3c5127b09a.lock +[filelock:filelock] Lock 281473138098784 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/8/7/0/c/a870c914ae6d343dd3d758d0ff97de959a239c55ab5ee95b1f11b2d1.lock +[filelock:filelock] Lock 281473137681920 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/8/3/4/1/183415b1ba6aa468e77e8a657f7d01e26f3ea76c5aa7f24a2ae5c3bb.lock +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473137681920 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/8/3/4/1/183415b1ba6aa468e77e8a657f7d01e26f3ea76c5aa7f24a2ae5c3bb.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/b3/0d/cd4a4071c7f38385dc5ba91286723b4d1090b87815db48216212c6c6c30e/cattrs-23.2.3-py3-none-any.whl HTTP/1.1" 200 57474 +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-musllinux_1_1_i686.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-musllinux_1_1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137681920 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/8/3/4/1/183415b1ba6aa468e77e8a657f7d01e26f3ea76c5aa7f24a2ae5c3bb.lock +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-win32.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp310-cp310-win_amd64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-musllinux_1_1_i686.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-musllinux_1_1_x86_64.whl as this is not supported by the current environment + - Installing python-slugify (8.0.4) +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/mccabe/0.7.0/json HTTP/1.1" 200 2894 +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-win32.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473368710304 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/3/1/8/2/831820d7cef207987fbacd6337e990745cfb586a2e6976eb3f448e6e.lock +Skipping wheel psycopg2_binary-2.9.9-cp311-cp311-win_amd64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/32/92/b8cbafea73dba32ed348ff696ff5f2122c8e4fe92fcc33ca75e600d7ce75/croniter-2.0.2-py2.py3-none-any.whl HTTP/1.1" 200 19843 +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473368710304 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/3/1/8/2/831820d7cef207987fbacd6337e990745cfb586a2e6976eb3f448e6e.lock +[filelock:filelock] Attempting to acquire lock 281473137508576 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/3/6/9/2/0/369200c75d3f79e78adc308a193a6d1870088f660e583a828a6f5163.lock +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473102461744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/5/2/4/d/c524d091bef2e01a87c73cb210d1422f8acd3d441ba7f19fed5cca9d.lock +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment + - Installing requests (2.31.0) +[filelock:filelock] Attempting to release lock 281473368710304 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/3/1/8/2/831820d7cef207987fbacd6337e990745cfb586a2e6976eb3f448e6e.lock +[filelock:filelock] Lock 281473137508576 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/3/6/9/2/0/369200c75d3f79e78adc308a193a6d1870088f660e583a828a6f5163.lock +[filelock:filelock] Lock 281473102461744 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/5/2/4/d/c524d091bef2e01a87c73cb210d1422f8acd3d441ba7f19fed5cca9d.lock +[filelock:filelock] Attempting to acquire lock 281473102885760 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/2/8/a/a/828aa3e0b12e906201180fe07ffea5f362ad92184eaeb7974188f518.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/python-fsutil/0.13.1/json HTTP/1.1" 200 6537 +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473368710304 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/3/1/8/2/831820d7cef207987fbacd6337e990745cfb586a2e6976eb3f448e6e.lock +[filelock:filelock] Attempting to release lock 281473137508576 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/3/6/9/2/0/369200c75d3f79e78adc308a193a6d1870088f660e583a828a6f5163.lock +[filelock:filelock] Lock 281473102885760 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/2/8/a/a/828aa3e0b12e906201180fe07ffea5f362ad92184eaeb7974188f518.lock +[filelock:filelock] Attempting to release lock 281473102461744 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/5/2/4/d/c524d091bef2e01a87c73cb210d1422f8acd3d441ba7f19fed5cca9d.lock +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473102879616 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/d/3/e/6/7d3e6d2b98f2e0dd5946651c75af019601934336ecddaf4004a42201.lock +[filelock:filelock] Lock 281473137508576 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/3/6/9/2/0/369200c75d3f79e78adc308a193a6d1870088f660e583a828a6f5163.lock +[filelock:filelock] Lock 281473102461744 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/5/2/4/d/c524d091bef2e01a87c73cb210d1422f8acd3d441ba7f19fed5cca9d.lock +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473102885760 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/2/8/a/a/828aa3e0b12e906201180fe07ffea5f362ad92184eaeb7974188f518.lock +[filelock:filelock] Lock 281473102879616 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/d/3/e/6/7d3e6d2b98f2e0dd5946651c75af019601934336ecddaf4004a42201.lock +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_i686.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/requests/2.31.0/json HTTP/1.1" 200 2674 +[filelock:filelock] Lock 281473102885760 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/2/8/a/a/828aa3e0b12e906201180fe07ffea5f362ad92184eaeb7974188f518.lock +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473102879616 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/d/3/e/6/7d3e6d2b98f2e0dd5946651c75af019601934336ecddaf4004a42201.lock +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-win32.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp312-cp312-win_amd64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137683888 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/1/3/f/a/e13fa9b0f8346e0f061ccb4309b60f319a230b2995f2ef4ca6bd28e5.lock +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment + - Installing rich-click (1.7.3) +[filelock:filelock] Lock 281473102879616 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/d/3/e/6/7d3e6d2b98f2e0dd5946651c75af019601934336ecddaf4004a42201.lock +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137683888 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/1/3/f/a/e13fa9b0f8346e0f061ccb4309b60f319a230b2995f2ef4ca6bd28e5.lock +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473137683888 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/1/3/f/a/e13fa9b0f8346e0f061ccb4309b60f319a230b2995f2ef4ca6bd28e5.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/27/1a/1f68f9ba0c207934b35b86a8ca3aad8395a3d6dd7921c0686e23853ff5a9/mccabe-0.7.0-py2.py3-none-any.whl HTTP/1.1" 200 7350 +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-musllinux_1_1_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137683888 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/e/1/3/f/a/e13fa9b0f8346e0f061ccb4309b60f319a230b2995f2ef4ca6bd28e5.lock +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-musllinux_1_1_i686.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473388285968 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/e/0/c/c/ee0cc877db173c07c4076ccd1431608f820915691c9f75e1a9d7cd0f.lock +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-musllinux_1_1_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388285968 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/e/0/c/c/ee0cc877db173c07c4076ccd1431608f820915691c9f75e1a9d7cd0f.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/5b/e4/1c3cdd3417103f2b750c5d13e19d0776bb297ca4506bd31b805972a264fc/python_fsutil-0.13.1-py3-none-any.whl HTTP/1.1" 200 15549 +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-win32.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473388285968 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/e/0/c/c/ee0cc877db173c07c4076ccd1431608f820915691c9f75e1a9d7cd0f.lock +Skipping wheel psycopg2_binary-2.9.9-cp37-cp37m-win_amd64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473388285968 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/e/0/c/c/ee0cc877db173c07c4076ccd1431608f820915691c9f75e1a9d7cd0f.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/70/8e/0e2d847013cb52cd35b38c009bb167a1a26b2ce6cd6965bf26b47bc0bf44/requests-2.31.0-py3-none-any.whl HTTP/1.1" 200 62574 +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137512848 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/1/5/9/a/2159a69680d06139809450f29c2dcde90b0fda69ba17d3fc29047ea7.lock + - Installing soupsieve (2.5) +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137512848 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/1/5/9/a/2159a69680d06139809450f29c2dcde90b0fda69ba17d3fc29047ea7.lock +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-musllinux_1_1_i686.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473137512848 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/1/5/9/a/2159a69680d06139809450f29c2dcde90b0fda69ba17d3fc29047ea7.lock +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473137512848 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/1/5/9/a/2159a69680d06139809450f29c2dcde90b0fda69ba17d3fc29047ea7.lock +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-win32.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473368615744 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/b/7/f/d/8b7fd633e25691e0bc17b57c37da71f10f31d4b10f0ca7ba9e5df1fa.lock +Skipping wheel psycopg2_binary-2.9.9-cp38-cp38-win_amd64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473368615744 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/b/7/f/d/8b7fd633e25691e0bc17b57c37da71f10f31d4b10f0ca7ba9e5df1fa.lock +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473368615744 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/b/7/f/d/8b7fd633e25691e0bc17b57c37da71f10f31d4b10f0ca7ba9e5df1fa.lock +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473368615744 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/b/7/f/d/8b7fd633e25691e0bc17b57c37da71f10f31d4b10f0ca7ba9e5df1fa.lock +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/soupsieve/2.5/json HTTP/1.1" 200 2582 +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-musllinux_1_1_i686.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-musllinux_1_1_ppc64le.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-win32.whl as this is not supported by the current environment +Skipping wheel psycopg2_binary-2.9.9-cp39-cp39-win_amd64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473137714688 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/2/f/e/5/d2fe52136b6ae4af5da91431c35da31cb1970769fb1f140bea434dbc.lock +[filelock:filelock] Lock 281473137714688 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/2/f/e/5/d2fe52136b6ae4af5da91431c35da31cb1970769fb1f140bea434dbc.lock + - Installing strawberry-graphql-django (0.32.2) +[filelock:filelock] Attempting to release lock 281473137714688 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/2/f/e/5/d2fe52136b6ae4af5da91431c35da31cb1970769fb1f140bea434dbc.lock +[filelock:filelock] Lock 281473137714688 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/2/f/e/5/d2fe52136b6ae4af5da91431c35da31cb1970769fb1f140bea434dbc.lock + - Installing url-normalize (1.4.3) +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/50/66/fa53d2d3d92f6e1ef469d92afc6a4fe3f6e8a9a04b687aa28fb1f1d954ee/psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl HTTP/1.1" 200 2851283 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/pathspec/0.12.1/json HTTP/1.1" 200 6934 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/4c/f3/038b302fdfbe3be7da016777069f26ceefe11a681055ea1f7817546508e3/soupsieve-2.5-py3-none-any.whl HTTP/1.1" 200 36131 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/python-slugify/8.0.4/json HTTP/1.1" 200 3891 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/pandas/1.5.3/json HTTP/1.1" 200 9159 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/async-timeout/4.0.3/json HTTP/1.1" 200 2395 +[filelock:filelock] Attempting to acquire lock 281473137931760 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/4/4/9/1/b449193e78e7f8ea2d5735961eb79cca671ceba48d357a8c1a51ed12.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/psycopg/3.1.18/json HTTP/1.1" 200 2087 +[filelock:filelock] Attempting to acquire lock 281473138986688 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/a/e/1/f/3ae1fc5b2cd91b3d9cc33b7f6b208387f3a5d01f501194053a865ff6.lock +[filelock:filelock] Attempting to acquire lock 281473388284576 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/5/c/c/e/75cce569152e4589cde3592270127bdc9422f13165bf65a3d5049b38.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/libsass/0.23.0/json HTTP/1.1" 200 3195 +[filelock:filelock] Attempting to acquire lock 281473138034208 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/3/9/7/d/6397df560c064e29bbe8227193da91ad752f036dabfe75cd7707e250.lock +[filelock:filelock] Attempting to acquire lock 281473103018656 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/9/d/6/5/8/9d65860783aaf5924c4c41c9852b0356764d4d8b10c75984ce98a9c2.lock +[filelock:filelock] Lock 281473137931760 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/4/4/9/1/b449193e78e7f8ea2d5735961eb79cca671ceba48d357a8c1a51ed12.lock +[filelock:filelock] Lock 281473138986688 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/a/e/1/f/3ae1fc5b2cd91b3d9cc33b7f6b208387f3a5d01f501194053a865ff6.lock +[filelock:filelock] Lock 281473388284576 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/5/c/c/e/75cce569152e4589cde3592270127bdc9422f13165bf65a3d5049b38.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/rich-click/1.7.3/json HTTP/1.1" 200 8458 +[filelock:filelock] Lock 281473138034208 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/3/9/7/d/6397df560c064e29bbe8227193da91ad752f036dabfe75cd7707e250.lock +[filelock:filelock] Attempting to acquire lock 281473368610512 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/3/b/a/0/d3ba0be31868e4e8e5f2c9c302aa7875ae9ad5002ff897821452dea9.lock +[filelock:filelock] Lock 281473103018656 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/9/d/6/5/8/9d65860783aaf5924c4c41c9852b0356764d4d8b10c75984ce98a9c2.lock +[filelock:filelock] Attempting to release lock 281473138034208 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/3/9/7/d/6397df560c064e29bbe8227193da91ad752f036dabfe75cd7707e250.lock +[filelock:filelock] Attempting to acquire lock 281473137512464 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/9/5/0/3/89503ccdc16436ccdb9bbe4bce17bd77d17ca170050eb47e797ed4d7.lock +[filelock:filelock] Attempting to release lock 281473138986688 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/a/e/1/f/3ae1fc5b2cd91b3d9cc33b7f6b208387f3a5d01f501194053a865ff6.lock +[filelock:filelock] Lock 281473368610512 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/3/b/a/0/d3ba0be31868e4e8e5f2c9c302aa7875ae9ad5002ff897821452dea9.lock +[filelock:filelock] Attempting to release lock 281473137931760 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/4/4/9/1/b449193e78e7f8ea2d5735961eb79cca671ceba48d357a8c1a51ed12.lock +[filelock:filelock] Attempting to release lock 281473388284576 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/5/c/c/e/75cce569152e4589cde3592270127bdc9422f13165bf65a3d5049b38.lock +[filelock:filelock] Lock 281473138034208 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/6/3/9/7/d/6397df560c064e29bbe8227193da91ad752f036dabfe75cd7707e250.lock +[filelock:filelock] Attempting to release lock 281473103018656 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/9/d/6/5/8/9d65860783aaf5924c4c41c9852b0356764d4d8b10c75984ce98a9c2.lock +[filelock:filelock] Lock 281473137512464 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/9/5/0/3/89503ccdc16436ccdb9bbe4bce17bd77d17ca170050eb47e797ed4d7.lock +[filelock:filelock] Lock 281473138986688 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/3/a/e/1/f/3ae1fc5b2cd91b3d9cc33b7f6b208387f3a5d01f501194053a865ff6.lock +[filelock:filelock] Lock 281473137931760 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/4/4/9/1/b449193e78e7f8ea2d5735961eb79cca671ceba48d357a8c1a51ed12.lock +[filelock:filelock] Attempting to release lock 281473368610512 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/3/b/a/0/d3ba0be31868e4e8e5f2c9c302aa7875ae9ad5002ff897821452dea9.lock +[filelock:filelock] Lock 281473103018656 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/9/d/6/5/8/9d65860783aaf5924c4c41c9852b0356764d4d8b10c75984ce98a9c2.lock +[filelock:filelock] Lock 281473388284576 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/5/c/c/e/75cce569152e4589cde3592270127bdc9422f13165bf65a3d5049b38.lock +[filelock:filelock] Attempting to release lock 281473137512464 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/9/5/0/3/89503ccdc16436ccdb9bbe4bce17bd77d17ca170050eb47e797ed4d7.lock +[filelock:filelock] Lock 281473368610512 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/3/b/a/0/d3ba0be31868e4e8e5f2c9c302aa7875ae9ad5002ff897821452dea9.lock +Skipping wheel pandas-1.5.3-cp310-cp310-macosx_10_9_universal2.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +[filelock:filelock] Lock 281473137512464 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/9/5/0/3/89503ccdc16436ccdb9bbe4bce17bd77d17ca170050eb47e797ed4d7.lock +[filelock:filelock] Attempting to acquire lock 281473138038672 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/2/5/2/1/12521d2a345d77986d0a9b3f269a6868a9a99cc93810b92caad80f5a.lock +Skipping wheel pandas-1.5.3-cp310-cp310-macosx_10_9_x86_64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +Skipping wheel pandas-1.5.3-cp310-cp310-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473138038672 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/2/5/2/1/12521d2a345d77986d0a9b3f269a6868a9a99cc93810b92caad80f5a.lock +Skipping wheel libsass-0.23.0-cp38-abi3-macosx_11_0_x86_64.whl as this is not supported by the current environment +Skipping wheel pandas-1.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/a7/fa/e01228c2938de91d47b307831c62ab9e4001e747789d0b05baf779a6488c/async_timeout-4.0.3-py3-none-any.whl HTTP/1.1" 200 5721 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl HTTP/1.1" 200 31191 +[filelock:filelock] Attempting to release lock 281473138038672 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/2/5/2/1/12521d2a345d77986d0a9b3f269a6868a9a99cc93810b92caad80f5a.lock +Skipping wheel libsass-0.23.0-cp38-abi3-macosx_14_0_arm64.whl as this is not supported by the current environment +Skipping wheel pandas-1.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/a4/62/02da182e544a51a5c3ccf4b03ab79df279f9c60c5e82d5e8bec7ca26ac11/python_slugify-8.0.4-py2.py3-none-any.whl HTTP/1.1" 200 10051 +[filelock:filelock] Lock 281473138038672 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/1/2/5/2/1/12521d2a345d77986d0a9b3f269a6868a9a99cc93810b92caad80f5a.lock +Skipping wheel libsass-0.23.0-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel pandas-1.5.3-cp310-cp310-win_amd64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/fc/ca/dff5452be0b31fab93808b1ff0047bebc08d1ac65939be104c98e081b069/psycopg-3.1.18-py3-none-any.whl HTTP/1.1" 200 178087 +Skipping wheel libsass-0.23.0-cp38-abi3-win32.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473138114432 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/1/c/c/c/b1cccf8e379855686812f3236428c84e1d7428e5781f45ee9bed77e2.lock +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +Skipping wheel pandas-1.5.3-cp311-cp311-macosx_10_9_universal2.whl as this is not supported by the current environment +Skipping wheel libsass-0.23.0-cp38-abi3-win_amd64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473368711216 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/e/1/3/6/ae1360498e2a7e78c3695d71a4132c94b805a9c41d71ad8f62ad998f.lock +[filelock:filelock] Lock 281473138114432 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/1/c/c/c/b1cccf8e379855686812f3236428c84e1d7428e5781f45ee9bed77e2.lock +[filelock:filelock] Attempting to acquire lock 281473378504720 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/c/7/6/3/5c763f6b9f43b34e61b7e3056c34b6a6002b6da520e6e0e800006b3c.lock +Skipping wheel pandas-1.5.3-cp311-cp311-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473368711216 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/e/1/3/6/ae1360498e2a7e78c3695d71a4132c94b805a9c41d71ad8f62ad998f.lock +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (7): files.pythonhosted.org:443 +Skipping wheel pandas-1.5.3-cp311-cp311-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473138114432 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/1/c/c/c/b1cccf8e379855686812f3236428c84e1d7428e5781f45ee9bed77e2.lock +[filelock:filelock] Lock 281473378504720 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/c/7/6/3/5c763f6b9f43b34e61b7e3056c34b6a6002b6da520e6e0e800006b3c.lock +[filelock:filelock] Attempting to release lock 281473368711216 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/e/1/3/6/ae1360498e2a7e78c3695d71a4132c94b805a9c41d71ad8f62ad998f.lock +Skipping wheel pandas-1.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473138114432 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/1/c/c/c/b1cccf8e379855686812f3236428c84e1d7428e5781f45ee9bed77e2.lock +Skipping wheel pandas-1.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473378504720 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/c/7/6/3/5c763f6b9f43b34e61b7e3056c34b6a6002b6da520e6e0e800006b3c.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/ea/6a/89ee4e245a8c21791d7db3669931948f237a421fafec72de6d1e7e25f3b2/rich_click-1.7.3-py3-none-any.whl HTTP/1.1" 200 32501 +[filelock:filelock] Lock 281473368711216 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/a/e/1/3/6/ae1360498e2a7e78c3695d71a4132c94b805a9c41d71ad8f62ad998f.lock +Skipping wheel pandas-1.5.3-cp311-cp311-win_amd64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473378504720 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/5/c/7/6/3/5c763f6b9f43b34e61b7e3056c34b6a6002b6da520e6e0e800006b3c.lock +Skipping wheel pandas-1.5.3-cp38-cp38-macosx_10_9_universal2.whl as this is not supported by the current environment +Skipping wheel pandas-1.5.3-cp38-cp38-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel pandas-1.5.3-cp38-cp38-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel pandas-1.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473138042368 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/4/3/6/0/8436059ac45c91c8ea3408d105103db7d96dc0cb4ba40696e1be4f7c.lock +Skipping wheel pandas-1.5.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/strawberry-graphql-django/0.32.2/json HTTP/1.1" 200 2499 +[filelock:filelock] Lock 281473138042368 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/4/3/6/0/8436059ac45c91c8ea3408d105103db7d96dc0cb4ba40696e1be4f7c.lock +Skipping wheel pandas-1.5.3-cp38-cp38-win32.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/url-normalize/1.4.3/json HTTP/1.1" 200 2086 +Skipping wheel pandas-1.5.3-cp38-cp38-win_amd64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473138042368 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/4/3/6/0/8436059ac45c91c8ea3408d105103db7d96dc0cb4ba40696e1be4f7c.lock +Skipping wheel pandas-1.5.3-cp39-cp39-macosx_10_9_universal2.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473138042368 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/8/4/3/6/0/8436059ac45c91c8ea3408d105103db7d96dc0cb4ba40696e1be4f7c.lock +[filelock:filelock] Attempting to acquire lock 281473378502032 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/7/9/2/2/a7922b4a84d0c008eb7a0f5dd4e4fcaeb0edab4c177f2f5a1ffb8b41.lock +[filelock:filelock] Attempting to acquire lock 281473103266016 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/1/3/a/3/013a35ccd504392474fb6d9d187afc5c495ae2038c932173998d596e.lock +Skipping wheel pandas-1.5.3-cp39-cp39-macosx_10_9_x86_64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to acquire lock 281473378503232 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/7/1/c/6/271c635107d59763260e485480f8458e14d9c2c9195be19a0177e622.lock +[filelock:filelock] Lock 281473378502032 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/7/9/2/2/a7922b4a84d0c008eb7a0f5dd4e4fcaeb0edab4c177f2f5a1ffb8b41.lock +Skipping wheel pandas-1.5.3-cp39-cp39-macosx_11_0_arm64.whl as this is not supported by the current environment +[filelock:filelock] Lock 281473103266016 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/1/3/a/3/013a35ccd504392474fb6d9d187afc5c495ae2038c932173998d596e.lock +[filelock:filelock] Lock 281473378503232 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/7/1/c/6/271c635107d59763260e485480f8458e14d9c2c9195be19a0177e622.lock +Skipping wheel pandas-1.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel pandas-1.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel pandas-1.5.3-cp39-cp39-win32.whl as this is not supported by the current environment +Skipping wheel pandas-1.5.3-cp39-cp39-win_amd64.whl as this is not supported by the current environment +[filelock:filelock] Attempting to release lock 281473378503232 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/7/1/c/6/271c635107d59763260e485480f8458e14d9c2c9195be19a0177e622.lock +[filelock:filelock] Attempting to release lock 281473103266016 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/1/3/a/3/013a35ccd504392474fb6d9d187afc5c495ae2038c932173998d596e.lock +[filelock:filelock] Attempting to release lock 281473378502032 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/7/9/2/2/a7922b4a84d0c008eb7a0f5dd4e4fcaeb0edab4c177f2f5a1ffb8b41.lock +[filelock:filelock] Lock 281473378503232 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/2/7/1/c/6/271c635107d59763260e485480f8458e14d9c2c9195be19a0177e622.lock +[filelock:filelock] Lock 281473103266016 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/0/1/3/a/3/013a35ccd504392474fb6d9d187afc5c495ae2038c932173998d596e.lock +[filelock:filelock] Lock 281473378502032 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/7/9/2/2/a7922b4a84d0c008eb7a0f5dd4e4fcaeb0edab4c177f2f5a1ffb8b41.lock +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +[urllib3:urllib3.connectionpool] Connection pool is full, discarding connection: pypi.org. Connection pool size: 10 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/74/ee/146cab1ff6d575b54ace8a6a5994048380dc94879b0125b25e62edcb9e52/pandas-1.5.3.tar.gz HTTP/1.1" 200 5203060 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/79/b4/ab091585eaa77299558e3289ca206846aefc123fb320b5656ab2542c20ad/libsass-0.23.0.tar.gz HTTP/1.1" 200 316068 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/cf/ca/52b3f38c1cb60ac32c96e070cf813069e54d154d0b1bbb263fe7caa528d6/strawberry_graphql_django-0.32.2-py3-none-any.whl HTTP/1.1" 200 78871 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/65/1c/6c6f408be78692fc850006a2b6dea37c2b8592892534e09996e401efc74b/url_normalize-1.4.3-py2.py3-none-any.whl HTTP/1.1" 200 6804 +[filelock:filelock] Attempting to acquire lock 281473137791712 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/e/a/5/4/eea548dc351daf38ea7057676b69922b9fcf5be3433ae3142657d12b.lock +[filelock:filelock] Lock 281473137791712 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/e/a/5/4/eea548dc351daf38ea7057676b69922b9fcf5be3433ae3142657d12b.lock +[filelock:filelock] Attempting to release lock 281473137791712 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/e/a/5/4/eea548dc351daf38ea7057676b69922b9fcf5be3433ae3142657d12b.lock +[filelock:filelock] Lock 281473137791712 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/e/e/a/5/4/eea548dc351daf38ea7057676b69922b9fcf5be3433ae3142657d12b.lock +[filelock:filelock] Attempting to acquire lock 281473103268368 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/d/f/2/8/9df2824d7129307b8f0061831217b25aed389ee65c03138550aca7f8.lock +[filelock:filelock] Lock 281473103268368 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/d/f/2/8/9df2824d7129307b8f0061831217b25aed389ee65c03138550aca7f8.lock +[filelock:filelock] Attempting to release lock 281473103268368 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/d/f/2/8/9df2824d7129307b8f0061831217b25aed389ee65c03138550aca7f8.lock +[filelock:filelock] Lock 281473103268368 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/9/d/f/2/8/9df2824d7129307b8f0061831217b25aed389ee65c03138550aca7f8.lock +[filelock:filelock] Attempting to acquire lock 281473137685328 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/f/b/6/e/bfb6e8ca252af222c45ea9a8f48c7bf5d1d9fe951f5e646919c5c208.lock +[filelock:filelock] Lock 281473137685328 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/f/b/6/e/bfb6e8ca252af222c45ea9a8f48c7bf5d1d9fe951f5e646919c5c208.lock +[filelock:filelock] Attempting to release lock 281473137685328 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/f/b/6/e/bfb6e8ca252af222c45ea9a8f48c7bf5d1d9fe951f5e646919c5c208.lock +[filelock:filelock] Lock 281473137685328 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/b/f/b/6/e/bfb6e8ca252af222c45ea9a8f48c7bf5d1d9fe951f5e646919c5c208.lock +[filelock:filelock] Attempting to acquire lock 281473102883024 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/4/0/b/3/140b3d8168fd2640802cf8590823db83f8d141212b167f4e28d1f954.lock +[filelock:filelock] Lock 281473102883024 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/4/0/b/3/140b3d8168fd2640802cf8590823db83f8d141212b167f4e28d1f954.lock +[filelock:filelock] Attempting to release lock 281473102883024 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/4/0/b/3/140b3d8168fd2640802cf8590823db83f8d141212b167f4e28d1f954.lock +[filelock:filelock] Lock 281473102883024 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/4/0/b/3/140b3d8168fd2640802cf8590823db83f8d141212b167f4e28d1f954.lock +[filelock:filelock] Attempting to acquire lock 281473103017264 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/4/5/f/c/245fc1dae56c93e014e8d2ef12bbfa832aa4f6c81b3cb888379b2dad.lock +[filelock:filelock] Lock 281473103017264 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/4/5/f/c/245fc1dae56c93e014e8d2ef12bbfa832aa4f6c81b3cb888379b2dad.lock +[filelock:filelock] Attempting to release lock 281473103017264 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/4/5/f/c/245fc1dae56c93e014e8d2ef12bbfa832aa4f6c81b3cb888379b2dad.lock +[filelock:filelock] Lock 281473103017264 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/2/4/5/f/c/245fc1dae56c93e014e8d2ef12bbfa832aa4f6c81b3cb888379b2dad.lock +[virtualenv] find interpreter for spec PythonSpec(path=/usr/local/bin/python3.12) +[virtualenv] proposed PythonInfo(spec=CPython3.12.2.final.0-64, exe=/usr/local/bin/python3.12, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] accepted PythonInfo(spec=CPython3.12.2.final.0-64, exe=/usr/local/bin/python3.12, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] create virtual environment via CPython3Posix(dest=/tmp/tmpaey6gbny/.venv, clear=False, no_vcs_ignore=False, global=False) +[virtualenv] create folder /tmp/tmpaey6gbny/.venv/bin +[virtualenv] create folder /tmp/tmpaey6gbny/.venv/lib/python3.12/site-packages +[virtualenv] write /tmp/tmpaey6gbny/.venv/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +[virtualenv] symlink /usr/local/bin/python3.12 to /tmp/tmpaey6gbny/.venv/bin/python +[virtualenv] create virtualenv import hook file /tmp/tmpaey6gbny/.venv/lib/python3.12/site-packages/_virtualenv.pth +[virtualenv] create /tmp/tmpaey6gbny/.venv/lib/python3.12/site-packages/_virtualenv.py +[virtualenv] ============================== target debug ============================== +[virtualenv] debug via /tmp/tmpaey6gbny/.venv/bin/python /root/.local/share/pypoetry/venv/lib/python3.12/site-packages/virtualenv/create/debug.py +[virtualenv] { +[virtualenv] "sys": { +[virtualenv] "executable": "/tmp/tmpaey6gbny/.venv/bin/python", +[virtualenv] "_base_executable": "/usr/local/bin/python3.12", +[virtualenv] "prefix": "/tmp/tmpaey6gbny/.venv", +[virtualenv] "base_prefix": "/usr/local", +[virtualenv] "real_prefix": null, +[virtualenv] "exec_prefix": "/tmp/tmpaey6gbny/.venv", +[virtualenv] "base_exec_prefix": "/usr/local", +[virtualenv] "path": [ +[virtualenv] "/usr/local/lib/python312.zip", +[virtualenv] "/usr/local/lib/python3.12", +[virtualenv] "/usr/local/lib/python3.12/lib-dynload", +[virtualenv] "/tmp/tmpaey6gbny/.venv/lib/python3.12/site-packages" +[virtualenv] ], +[virtualenv] "meta_path": [ +[virtualenv] "", +[virtualenv] "", +[virtualenv] "", +[virtualenv] "" +[virtualenv] ], +[virtualenv] "fs_encoding": "utf-8", +[virtualenv] "io_encoding": "utf-8" +[virtualenv] }, +[virtualenv] "version": "3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]", +[virtualenv] "makefile_filename": "/usr/local/lib/python3.12/config-3.12-aarch64-linux-gnu/Makefile", +[virtualenv] "os": "", +[virtualenv] "site": "", +[virtualenv] "datetime": "", +[virtualenv] "math": "", +[virtualenv] "json": "" +[virtualenv] } +[virtualenv] add activators for Bash, CShell, Fish, Nushell, PowerShell, Python +[virtualenv] write /tmp/tmpaey6gbny/.venv/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +Source (PyPI): 209 packages found for setuptools >=40.8.0 +Source (PyPI): 1 packages found for setuptools >=40.8.0 +[build:build] Getting build dependencies for wheel... +[virtualenv] find interpreter for spec PythonSpec(path=/usr/local/bin/python3.12) +[virtualenv] proposed PythonInfo(spec=CPython3.12.2.final.0-64, exe=/usr/local/bin/python3.12, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] accepted PythonInfo(spec=CPython3.12.2.final.0-64, exe=/usr/local/bin/python3.12, platform=linux, version='3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]', encoding_fs_io=utf-8-utf-8) +[virtualenv] create virtual environment via CPython3Posix(dest=/tmp/tmpxjqic2k3/.venv, clear=False, no_vcs_ignore=False, global=False) +[virtualenv] create folder /tmp/tmpxjqic2k3/.venv/bin +[virtualenv] create folder /tmp/tmpxjqic2k3/.venv/lib/python3.12/site-packages +[virtualenv] write /tmp/tmpxjqic2k3/.venv/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +[virtualenv] symlink /usr/local/bin/python3.12 to /tmp/tmpxjqic2k3/.venv/bin/python +[virtualenv] create virtualenv import hook file /tmp/tmpxjqic2k3/.venv/lib/python3.12/site-packages/_virtualenv.pth +[virtualenv] create /tmp/tmpxjqic2k3/.venv/lib/python3.12/site-packages/_virtualenv.py +[virtualenv] ============================== target debug ============================== +[virtualenv] debug via /tmp/tmpxjqic2k3/.venv/bin/python /root/.local/share/pypoetry/venv/lib/python3.12/site-packages/virtualenv/create/debug.py +[virtualenv] { +[virtualenv] "sys": { +[virtualenv] "executable": "/tmp/tmpxjqic2k3/.venv/bin/python", +[virtualenv] "_base_executable": "/usr/local/bin/python3.12", +[virtualenv] "prefix": "/tmp/tmpxjqic2k3/.venv", +[virtualenv] "base_prefix": "/usr/local", +[virtualenv] "real_prefix": null, +[virtualenv] "exec_prefix": "/tmp/tmpxjqic2k3/.venv", +[virtualenv] "base_exec_prefix": "/usr/local", +[virtualenv] "path": [ +[virtualenv] "/usr/local/lib/python312.zip", +[virtualenv] "/usr/local/lib/python3.12", +[virtualenv] "/usr/local/lib/python3.12/lib-dynload", +[virtualenv] "/tmp/tmpxjqic2k3/.venv/lib/python3.12/site-packages" +[virtualenv] ], +[virtualenv] "meta_path": [ +[virtualenv] "", +[virtualenv] "", +[virtualenv] "", +[virtualenv] "" +[virtualenv] ], +[virtualenv] "fs_encoding": "utf-8", +[virtualenv] "io_encoding": "utf-8" +[virtualenv] }, +[virtualenv] "version": "3.12.2 (main, Feb 13 2024, 08:24:27) [GCC 12.2.0]", +[virtualenv] "makefile_filename": "/usr/local/lib/python3.12/config-3.12-aarch64-linux-gnu/Makefile", +[virtualenv] "os": "", +[virtualenv] "site": "", +[virtualenv] "datetime": "", +[virtualenv] "math": "", +[virtualenv] "json": "" +[virtualenv] } +[virtualenv] add activators for Bash, CShell, Fish, Nushell, PowerShell, Python +[virtualenv] write /tmp/tmpxjqic2k3/.venv/pyvenv.cfg +[virtualenv] home = /usr/local/bin +[virtualenv] implementation = CPython +[virtualenv] version_info = 3.12.2.final.0 +[virtualenv] virtualenv = 20.25.1 +[virtualenv] include-system-site-packages = false +[virtualenv] base-prefix = /usr/local +[virtualenv] base-exec-prefix = /usr/local +[virtualenv] base-executable = /usr/local/bin/python3.12 +Source (PyPI): 72 packages found for wheel * +Source (PyPI): 209 packages found for setuptools >=40.8.0 +Source (PyPI): 1 packages found for wheel * +Source (PyPI): 1 packages found for setuptools >=40.8.0 +[build:build] Building wheel... +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /simple/cython/ HTTP/1.1" 200 356348 +[filelock:filelock] Attempting to acquire lock 281473405684240 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/2/6/7/f/a267f54c19667a20e6416d2dc2a1df4a525eed802f0f2b538b654da1.lock +[filelock:filelock] Lock 281473405684240 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/2/6/7/f/a267f54c19667a20e6416d2dc2a1df4a525eed802f0f2b538b654da1.lock +[filelock:filelock] Attempting to release lock 281473405684240 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/2/6/7/f/a267f54c19667a20e6416d2dc2a1df4a525eed802f0f2b538b654da1.lock +[filelock:filelock] Lock 281473405684240 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/a/2/6/7/f/a267f54c19667a20e6416d2dc2a1df4a525eed802f0f2b538b654da1.lock +Source (PyPI): 6 packages found for cython >=0.29.32,<3 +Source (PyPI): 72 packages found for wheel * +Source (PyPI): 147 packages found for setuptools >=51.0.0 +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /simple/oldest-supported-numpy/ HTTP/1.1" 200 7428 +[filelock:filelock] Attempting to acquire lock 281472500694480 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/8/a/d/f/78adf127877f1f17ad68e0f9f17358b4afef25e73f0bbc766be240a3.lock +[filelock:filelock] Lock 281472500694480 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/8/a/d/f/78adf127877f1f17ad68e0f9f17358b4afef25e73f0bbc766be240a3.lock +[filelock:filelock] Attempting to release lock 281472500694480 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/8/a/d/f/78adf127877f1f17ad68e0f9f17358b4afef25e73f0bbc766be240a3.lock +[filelock:filelock] Lock 281472500694480 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/7/8/a/d/f/78adf127877f1f17ad68e0f9f17358b4afef25e73f0bbc766be240a3.lock +Source (PyPI): 6 packages found for oldest-supported-numpy >=2022.8.16 +Source (PyPI): Getting info for cython (0.29.37) from PyPI +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/cython/0.29.37/json HTTP/1.1" 200 8035 +[filelock:filelock] Attempting to acquire lock 281472500895712 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/1/5/2/3/f1523df9719831089707d8802b3cedaec716689bc7e2495e90994870.lock +[filelock:filelock] Lock 281472500895712 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/1/5/2/3/f1523df9719831089707d8802b3cedaec716689bc7e2495e90994870.lock +[filelock:filelock] Attempting to release lock 281472500895712 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/1/5/2/3/f1523df9719831089707d8802b3cedaec716689bc7e2495e90994870.lock +[filelock:filelock] Lock 281472500895712 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/1/5/2/3/f1523df9719831089707d8802b3cedaec716689bc7e2495e90994870.lock +Source (PyPI): No dependencies found, downloading metadata and/or archives +Creating new session for files.pythonhosted.org +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (1): files.pythonhosted.org:443 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/7e/26/9d8de10005fedb1eceabe713348d43bae1dbab1786042ca0751a2e2b0f8c/Cython-0.29.37-py2.py3-none-any.whl.metadata HTTP/1.1" 200 1197 +[filelock:filelock] Attempting to acquire lock 281472500901520 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/8/6/0/b/f860b4f73b6d47aa758def9c712057bef458d062c9bbb60f9955ffea.lock +[filelock:filelock] Lock 281472500901520 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/8/6/0/b/f860b4f73b6d47aa758def9c712057bef458d062c9bbb60f9955ffea.lock +[filelock:filelock] Attempting to release lock 281472500901520 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/8/6/0/b/f860b4f73b6d47aa758def9c712057bef458d062c9bbb60f9955ffea.lock +[filelock:filelock] Lock 281472500901520 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/8/6/0/b/f860b4f73b6d47aa758def9c712057bef458d062c9bbb60f9955ffea.lock +Source (PyPI): Getting info for oldest-supported-numpy (2023.12.21) from PyPI +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/oldest-supported-numpy/2023.12.21/json HTTP/1.1" 200 3691 +[filelock:filelock] Attempting to acquire lock 281472500901136 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/1/a/7/e/d1a7e750d6d5c46dcc79998858c5e497ff302d9166ee8fabf223723f.lock +[filelock:filelock] Lock 281472500901136 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/1/a/7/e/d1a7e750d6d5c46dcc79998858c5e497ff302d9166ee8fabf223723f.lock +[filelock:filelock] Attempting to release lock 281472500901136 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/1/a/7/e/d1a7e750d6d5c46dcc79998858c5e497ff302d9166ee8fabf223723f.lock +[filelock:filelock] Lock 281472500901136 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/d/1/a/7/e/d1a7e750d6d5c46dcc79998858c5e497ff302d9166ee8fabf223723f.lock +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /simple/numpy/ HTTP/1.1" 200 273236 +[filelock:filelock] Attempting to acquire lock 281472501045136 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/c/1/3/3/cc133da5701a066bc3777b2575e0daa601596f19871db4608ca98b97.lock +[filelock:filelock] Lock 281472501045136 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/c/1/3/3/cc133da5701a066bc3777b2575e0daa601596f19871db4608ca98b97.lock +[filelock:filelock] Attempting to release lock 281472501045136 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/c/1/3/3/cc133da5701a066bc3777b2575e0daa601596f19871db4608ca98b97.lock +[filelock:filelock] Lock 281472501045136 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/c/c/1/3/3/cc133da5701a066bc3777b2575e0daa601596f19871db4608ca98b97.lock +Source (PyPI): 1 packages found for numpy 1.26.2 +Source (PyPI): Getting info for numpy (1.26.2) from PyPI +[urllib3:urllib3.connectionpool] https://pypi.org:443 "GET /pypi/numpy/1.26.2/json HTTP/1.1" 200 23560 +[filelock:filelock] Attempting to acquire lock 281472495896960 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/9/a/f/6/f9af6ff8e7884469b9d320c56716e2df11fb7e1decf16dea07b106a9.lock +[filelock:filelock] Lock 281472495896960 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/9/a/f/6/f9af6ff8e7884469b9d320c56716e2df11fb7e1decf16dea07b106a9.lock +[filelock:filelock] Attempting to release lock 281472495896960 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/9/a/f/6/f9af6ff8e7884469b9d320c56716e2df11fb7e1decf16dea07b106a9.lock +[filelock:filelock] Lock 281472495896960 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/f/9/a/f/6/f9af6ff8e7884469b9d320c56716e2df11fb7e1decf16dea07b106a9.lock +Source (PyPI): No dependencies found, downloading metadata and/or archives +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/76/ac/dea2939dfc3c591a2494121669455fd7d049248ef284c9542904ddbe05d5/numpy-1.26.2-cp310-cp310-macosx_10_9_x86_64.whl.metadata HTTP/1.1" 200 18325 +[filelock:filelock] Attempting to acquire lock 281472495902288 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/4/4/9/c/8449cf148698d544a23d126206861d9b588d4b083151b1c6ca37353a.lock +[filelock:filelock] Lock 281472495902288 acquired on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/4/4/9/c/8449cf148698d544a23d126206861d9b588d4b083151b1c6ca37353a.lock +[filelock:filelock] Attempting to release lock 281472495902288 on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/4/4/9/c/8449cf148698d544a23d126206861d9b588d4b083151b1c6ca37353a.lock +[filelock:filelock] Lock 281472495902288 released on /root/.cache/pypoetry/cache/repositories/PyPI/_http/8/4/4/9/c/8449cf148698d544a23d126206861d9b588d4b083151b1c6ca37353a.lock +Source (PyPI): 1 packages found for cython >=0.29.32,<3 +Source (PyPI): 1 packages found for wheel * +Source (PyPI): 1 packages found for setuptools >=51.0.0 +Source (PyPI): 1 packages found for oldest-supported-numpy >=2022.8.16 +Source (PyPI): 1 packages found for numpy 1.26.2 +Skipping wheel numpy-1.26.2-cp310-cp310-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp310-cp310-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp310-cp310-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp310-cp310-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp310-cp310-win32.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp310-cp310-win_amd64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp311-cp311-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp311-cp311-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp311-cp311-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp311-cp311-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp311-cp311-win32.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp311-cp311-win_amd64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp312-cp312-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp312-cp312-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp312-cp312-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp312-cp312-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp312-cp312-win32.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp312-cp312-win_amd64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp39-cp39-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp39-cp39-macosx_11_0_arm64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp39-cp39-musllinux_1_1_aarch64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp39-cp39-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp39-cp39-win32.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-cp39-cp39-win_amd64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl as this is not supported by the current environment +Skipping wheel numpy-1.26.2-pp39-pypy39_pp73-win_amd64.whl as this is not supported by the current environment +Checking if keyring is available +Backend 'fail Keyring' is not suitable +No valid keyring backend was found +Creating new session for files.pythonhosted.org +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (1): files.pythonhosted.org:443 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/a1/42/a2819c5b77fe6506662ffc13b767e0c216c02f75ae840219013ab822a473/numpy-1.26.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl HTTP/1.1" 200 13917117 +[filelock:filelock] Attempting to acquire lock 281472495904688 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/6/4/1/2/764128e5f451ca896e51afd51888b3a469488c84291747f52597e92d.lock +[filelock:filelock] Lock 281472495904688 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/6/4/1/2/764128e5f451ca896e51afd51888b3a469488c84291747f52597e92d.lock +[filelock:filelock] Attempting to release lock 281472495904688 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/6/4/1/2/764128e5f451ca896e51afd51888b3a469488c84291747f52597e92d.lock +[filelock:filelock] Lock 281472495904688 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/7/6/4/1/2/764128e5f451ca896e51afd51888b3a469488c84291747f52597e92d.lock +Skipping wheel Cython-0.29.37-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp310-cp310-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp311-cp311-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp312-cp312-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp36-cp36m-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp37-cp37m-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp38-cp38-musllinux_1_1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl as this is not supported by the current environment +Skipping wheel Cython-0.29.37-cp39-cp39-musllinux_1_1_x86_64.whl as this is not supported by the current environment +[urllib3:urllib3.connectionpool] Starting new HTTPS connection (2): files.pythonhosted.org:443 +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/dc/5c/e3c84cfdd488701aa074b22cf5bd227fb15d26e1d55a66d9088c39afa123/oldest_supported_numpy-2023.12.21-py3-none-any.whl HTTP/1.1" 200 4851 +[filelock:filelock] Attempting to acquire lock 281472496042352 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/c/5/3/d/3/c53d3330644142f03a92f24ee194585a28dff8e79f142f9ebb10b292.lock +[filelock:filelock] Lock 281472496042352 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/c/5/3/d/3/c53d3330644142f03a92f24ee194585a28dff8e79f142f9ebb10b292.lock +[filelock:filelock] Attempting to release lock 281472496042352 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/c/5/3/d/3/c53d3330644142f03a92f24ee194585a28dff8e79f142f9ebb10b292.lock +[filelock:filelock] Lock 281472496042352 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/c/5/3/d/3/c53d3330644142f03a92f24ee194585a28dff8e79f142f9ebb10b292.lock +[urllib3:urllib3.connectionpool] https://files.pythonhosted.org:443 "GET /packages/7e/26/9d8de10005fedb1eceabe713348d43bae1dbab1786042ca0751a2e2b0f8c/Cython-0.29.37-py2.py3-none-any.whl HTTP/1.1" 200 989503 +[filelock:filelock] Attempting to acquire lock 281472496279984 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/d/2/f/4/1d2f40e044bc751adcd13b2bb72d18ce2f09a76a9e5441c4579afbe2.lock +[filelock:filelock] Lock 281472496279984 acquired on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/d/2/f/4/1d2f40e044bc751adcd13b2bb72d18ce2f09a76a9e5441c4579afbe2.lock +[filelock:filelock] Attempting to release lock 281472496279984 on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/d/2/f/4/1d2f40e044bc751adcd13b2bb72d18ce2f09a76a9e5441c4579afbe2.lock +[filelock:filelock] Lock 281472496279984 released on /root/.cache/pypoetry/cache/repositories/_default_cache/_http/1/d/2/f/4/1d2f40e044bc751adcd13b2bb72d18ce2f09a76a9e5441c4579afbe2.lock +[build:build] Getting build dependencies for wheel... + + Stack trace: + + 8 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:281 in _execute_operation + 279│ + 280│ try: + → 281│ result = self._do_execute_operation(operation) + 282│ except EnvCommandError as e: + 283│ if e.e.returncode == -2: + + 7 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:391 in _do_execute_operation + 389│ return 0 + 390│ + → 391│ result: int = getattr(self, f"_execute_{method}")(operation) + 392│ + 393│ if result != 0: + + 6 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:516 in _execute_install + 514│ + 515│ def _execute_install(self, operation: Install | Update) -> int: + → 516│ status_code = self._install(operation) + 517│ + 518│ self._save_url_reference(operation) + + 5 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:554 in _install + 552│ archive = self._download_link(operation, Link(package.source_url)) + 553│ else: + → 554│ archive = self._download(operation) + 555│ + 556│ operation_message = self.get_operation_message(operation) + + 4 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:746 in _download + 744│ self._yanked_warnings.append(message) + 745│ + → 746│ return self._download_link(operation, link) + 747│ + 748│ def _download_link(self, operation: Install | Update, link: Link) -> Path: + + 3 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:781 in _download_link + 779│ self._write(operation, message) + 780│ + → 781│ archive = self._chef.prepare(archive, output_dir=original_archive.parent) + 782│ + 783│ # Use the original archive to provide the correct hash. + + 2 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/chef.py:123 in prepare + 121│ return self._prepare(archive, destination=destination, editable=editable) + 122│ + → 123│ return self._prepare_sdist(archive, destination=output_dir) + 124│ + 125│ def _prepare( + + 1 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/chef.py:194 in _prepare_sdist + 192│ destination.mkdir(parents=True, exist_ok=True) + 193│ + → 194│ return self._prepare( + 195│ sdist_dir, + 196│ destination, + + ChefBuildError + + Backend subprocess exited when trying to invoke build_wheel + + running bdist_wheel + running build + running build_py + creating build + creating build/lib.linux-aarch64-cpython-312 + copying pysassc.py -> build/lib.linux-aarch64-cpython-312 + copying sass.py -> build/lib.linux-aarch64-cpython-312 + copying sasstests.py -> build/lib.linux-aarch64-cpython-312 + creating build/lib.linux-aarch64-cpython-312/sassutils + copying sassutils/wsgi.py -> build/lib.linux-aarch64-cpython-312/sassutils + copying sassutils/distutils.py -> build/lib.linux-aarch64-cpython-312/sassutils + copying sassutils/__init__.py -> build/lib.linux-aarch64-cpython-312/sassutils + copying sassutils/builder.py -> build/lib.linux-aarch64-cpython-312/sassutils + running build_ext + building '_sass' extension + creating build/temp.linux-aarch64-cpython-312 + creating build/temp.linux-aarch64-cpython-312/libsass + creating build/temp.linux-aarch64-cpython-312/libsass/src + creating build/temp.linux-aarch64-cpython-312/libsass/src/memory + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c _sass.c -o build/temp.linux-aarch64-cpython-312/_sass.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + cc1: warning: command-line option ‘-std=gnu++11’ is valid for C++/ObjC++ but not for C + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast2c.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast2c.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast_fwd_decl.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast_fwd_decl.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast_sel_cmp.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast_sel_cmp.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast_sel_super.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast_sel_super.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast_sel_unify.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast_sel_unify.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast_sel_weave.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast_sel_weave.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast_selectors.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast_selectors.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast_supports.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast_supports.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/ast_values.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/ast_values.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/backtrace.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/backtrace.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/base64vlq.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/base64vlq.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/bind.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/bind.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/c2ast.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/c2ast.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/c99func.c -o build/temp.linux-aarch64-cpython-312/libsass/src/c99func.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + cc1: warning: command-line option ‘-std=gnu++11’ is valid for C++/ObjC++ but not for C + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/cencode.c -o build/temp.linux-aarch64-cpython-312/libsass/src/cencode.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + cc1: warning: command-line option ‘-std=gnu++11’ is valid for C++/ObjC++ but not for C + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/check_nesting.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/check_nesting.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/color_maps.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/color_maps.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/constants.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/constants.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/context.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/context.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/cssize.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/cssize.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/emitter.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/emitter.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/environment.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/environment.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/error_handling.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/error_handling.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/eval.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/eval.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/eval_selectors.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/eval_selectors.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/expand.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/expand.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall -fPIC -DPy_LIMITED_API -I./libsass/include -I/tmp/tmpaey6gbny/.venv/include -I/usr/local/include/python3.12 -c libsass/src/extender.cpp -o build/temp.linux-aarch64-cpython-312/libsass/src/extender.o -fPIC -std=gnu++0x -Wall -Wno-parentheses -Werror=switch -DLIBSASS_VERSION=\"3.6.6\" + interrupted + + + at ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/chef.py:164 in _prepare + 160│ + 161│ error = ChefBuildError("\n\n".join(message_parts)) + 162│ + 163│ if error is not None: + → 164│ raise error from None + 165│ + 166│ return path + 167│ + 168│ def _prepare_sdist(self, archive: Path, destination: Path | None = None) -> Path: + +Note: This error originates from the build backend, and is likely not a problem with poetry but with libsass (0.23.0) not supporting PEP 517 builds. You can verify this by running 'pip wheel --no-cache-dir --use-pep517 "libsass (==0.23.0)"'. + + + Stack trace: + + 8 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:281 in _execute_operation + 279│ + 280│ try: + → 281│ result = self._do_execute_operation(operation) + 282│ except EnvCommandError as e: + 283│ if e.e.returncode == -2: + + 7 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:391 in _do_execute_operation + 389│ return 0 + 390│ + → 391│ result: int = getattr(self, f"_execute_{method}")(operation) + 392│ + 393│ if result != 0: + + 6 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:516 in _execute_install + 514│ + 515│ def _execute_install(self, operation: Install | Update) -> int: + → 516│ status_code = self._install(operation) + 517│ + 518│ self._save_url_reference(operation) + + 5 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:554 in _install + 552│ archive = self._download_link(operation, Link(package.source_url)) + 553│ else: + → 554│ archive = self._download(operation) + 555│ + 556│ operation_message = self.get_operation_message(operation) + + 4 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:746 in _download + 744│ self._yanked_warnings.append(message) + 745│ + → 746│ return self._download_link(operation, link) + 747│ + 748│ def _download_link(self, operation: Install | Update, link: Link) -> Path: + + 3 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/executor.py:781 in _download_link + 779│ self._write(operation, message) + 780│ + → 781│ archive = self._chef.prepare(archive, output_dir=original_archive.parent) + 782│ + 783│ # Use the original archive to provide the correct hash. + + 2 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/chef.py:123 in prepare + 121│ return self._prepare(archive, destination=destination, editable=editable) + 122│ + → 123│ return self._prepare_sdist(archive, destination=output_dir) + 124│ + 125│ def _prepare( + + 1 ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/chef.py:194 in _prepare_sdist + 192│ destination.mkdir(parents=True, exist_ok=True) + 193│ + → 194│ return self._prepare( + 195│ sdist_dir, + 196│ destination, + + ChefBuildError + + Backend subprocess exited when trying to invoke get_requires_for_build_wheel + + :19: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html + Compiling pandas/_libs/algos.pyx because it changed. + Compiling pandas/_libs/arrays.pyx because it changed. + Compiling pandas/_libs/groupby.pyx because it changed. + Compiling pandas/_libs/hashing.pyx because it changed. + Compiling pandas/_libs/hashtable.pyx because it changed. + Compiling pandas/_libs/index.pyx because it changed. + Compiling pandas/_libs/indexing.pyx because it changed. + Compiling pandas/_libs/internals.pyx because it changed. + Compiling pandas/_libs/interval.pyx because it changed. + Compiling pandas/_libs/join.pyx because it changed. + Compiling pandas/_libs/lib.pyx because it changed. + Compiling pandas/_libs/missing.pyx because it changed. + Compiling pandas/_libs/parsers.pyx because it changed. + Compiling pandas/_libs/reduction.pyx because it changed. + Compiling pandas/_libs/ops.pyx because it changed. + Compiling pandas/_libs/ops_dispatch.pyx because it changed. + Compiling pandas/_libs/properties.pyx because it changed. + Compiling pandas/_libs/reshape.pyx because it changed. + Compiling pandas/_libs/sparse.pyx because it changed. + Compiling pandas/_libs/tslib.pyx because it changed. + Compiling pandas/_libs/tslibs/base.pyx because it changed. + Compiling pandas/_libs/tslibs/ccalendar.pyx because it changed. + Compiling pandas/_libs/tslibs/dtypes.pyx because it changed. + Compiling pandas/_libs/tslibs/conversion.pyx because it changed. + Compiling pandas/_libs/tslibs/fields.pyx because it changed. + Compiling pandas/_libs/tslibs/nattype.pyx because it changed. + Compiling pandas/_libs/tslibs/np_datetime.pyx because it changed. + Compiling pandas/_libs/tslibs/offsets.pyx because it changed. + Compiling pandas/_libs/tslibs/parsing.pyx because it changed. + Compiling pandas/_libs/tslibs/period.pyx because it changed. + Compiling pandas/_libs/tslibs/strptime.pyx because it changed. + Compiling pandas/_libs/tslibs/timedeltas.pyx because it changed. + Compiling pandas/_libs/tslibs/timestamps.pyx because it changed. + Compiling pandas/_libs/tslibs/timezones.pyx because it changed. + Compiling pandas/_libs/tslibs/tzconversion.pyx because it changed. + Compiling pandas/_libs/tslibs/vectorized.pyx because it changed. + Compiling pandas/_libs/testing.pyx because it changed. + Compiling pandas/_libs/window/aggregations.pyx because it changed. + Compiling pandas/_libs/window/indexers.pyx because it changed. + Compiling pandas/_libs/writers.pyx because it changed. + Compiling pandas/io/sas/sas.pyx because it changed. + Traceback (most recent call last): + File "/root/.local/share/pypoetry/venv/lib/python3.12/site-packages/pyproject_hooks/_in_process/_in_process.py", line 353, in + main() + File "/root/.local/share/pypoetry/venv/lib/python3.12/site-packages/pyproject_hooks/_in_process/_in_process.py", line 335, in main + json_out['return_val'] = hook(**hook_input['kwargs']) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/root/.local/share/pypoetry/venv/lib/python3.12/site-packages/pyproject_hooks/_in_process/_in_process.py", line 118, in get_requires_for_build_wheel + return hook(config_settings) + ^^^^^^^^^^^^^^^^^^^^^ + File "/tmp/tmpxjqic2k3/.venv/lib/python3.12/site-packages/setuptools/build_meta.py", line 325, in get_requires_for_build_wheel + return self._get_build_requires(config_settings, requirements=['wheel']) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + File "/tmp/tmpxjqic2k3/.venv/lib/python3.12/site-packages/setuptools/build_meta.py", line 295, in _get_build_requires + self.run_setup() + File "/tmp/tmpxjqic2k3/.venv/lib/python3.12/site-packages/setuptools/build_meta.py", line 487, in run_setup + super().run_setup(setup_script=setup_script) + File "/tmp/tmpxjqic2k3/.venv/lib/python3.12/site-packages/setuptools/build_meta.py", line 311, in run_setup + exec(code, locals()) + File "", line 664, in + File "", line 424, in maybe_cythonize + File "/tmp/tmpxjqic2k3/.venv/lib/python3.12/site-packages/Cython/Build/Dependencies.py", line 1106, in cythonize + result.get(99999) # seconds + ^^^^^^^^^^^^^^^^^ + File "/usr/local/lib/python3.12/multiprocessing/pool.py", line 768, in get + self.wait(timeout) + File "/usr/local/lib/python3.12/multiprocessing/pool.py", line 765, in wait + self._event.wait(timeout) + File "/usr/local/lib/python3.12/threading.py", line 655, in wait + signaled = self._cond.wait(timeout) + ^^^^^^^^^^^^^^^^^^^^^^^^ + File "/usr/local/lib/python3.12/threading.py", line 359, in wait + gotit = waiter.acquire(True, timeout) + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + KeyboardInterrupt + + + at ~/.local/share/pypoetry/venv/lib/python3.12/site-packages/poetry/installation/chef.py:164 in _prepare + 160│ + 161│ error = ChefBuildError("\n\n".join(message_parts)) + 162│ + 163│ if error is not None: + → 164│ raise error from None + 165│ + 166│ return path + 167│ + 168│ def _prepare_sdist(self, archive: Path, destination: Path | None = None) -> Path: + +Note: This error originates from the build backend, and is likely not a problem with poetry but with pandas (1.5.3) not supporting PEP 517 builds. You can verify this by running 'pip wheel --no-cache-dir --use-pep517 "pandas (==1.5.3)"'. + diff --git a/poetry.lock b/poetry.lock index 240aec607..04359cb66 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2017,4 +2017,4 @@ brotli = ["Brotli"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<3.13" -content-hash = "299d24d3ef3748d557ec1d618b2029a8abe1563dfc11cac6770c07cd894bf442" +content-hash = "b6918f7d2b5c63aa1cc7c2c1a12588e8771c6f57b60b859db7a8396470aa56b0" diff --git a/pyproject.toml b/pyproject.toml index 4cea33d55..9ece64be6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,8 @@ python-benedict = "^0.33.2" gunicorn = "^21.2.0" whitenoise = "^6.6.0" setuptools = "^69.1.1" +# Explicit numpy requirement improves poetry install speed +numpy = "^1.26.4" [tool.poetry.dev-dependencies] django-debug-toolbar = "^3.7.0" diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 000000000..c8f46d98b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,782 @@ +aiopg==1.4.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:116253bef86b4d954116716d181e9a0294037f266718b2e1c9766af995639d71 \ + --hash=sha256:aea46e8aff30b039cfa818e6db4752c97656e893fc75e5a5dc57355a9e9dedbd +annotated-types==0.6.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43 \ + --hash=sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d +anyio==4.3.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8 \ + --hash=sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6 +appdirs==1.4.4 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41 \ + --hash=sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128 +asgiref==3.7.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:89b2ef2247e3b562a16eef663bc0e2e703ec6468e2fa8a5cd61cd449786d4f6e \ + --hash=sha256:9e0ce3aa93a819ba5b45120216b23878cf6e8525eb3848653452b4192b92afed +async-timeout==4.0.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f \ + --hash=sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028 +attrs==23.2.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30 \ + --hash=sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1 +beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051 \ + --hash=sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed +cattrs==23.2.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:0341994d94971052e9ee70662542699a3162ea1e0c62f7ce1b4a57f563685108 \ + --hash=sha256:a934090d95abaa9e911dac357e3a8699e0b4b14f8529bcc7d2b1ad9d51672b9f +certifi==2024.2.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f \ + --hash=sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1 +charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027 \ + --hash=sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087 \ + --hash=sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786 \ + --hash=sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8 \ + --hash=sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09 \ + --hash=sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185 \ + --hash=sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574 \ + --hash=sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e \ + --hash=sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519 \ + --hash=sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898 \ + --hash=sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269 \ + --hash=sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3 \ + --hash=sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f \ + --hash=sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6 \ + --hash=sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8 \ + --hash=sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a \ + --hash=sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73 \ + --hash=sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc \ + --hash=sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714 \ + --hash=sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2 \ + --hash=sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc \ + --hash=sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce \ + --hash=sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d \ + --hash=sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e \ + --hash=sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6 \ + --hash=sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269 \ + --hash=sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96 \ + --hash=sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d \ + --hash=sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a \ + --hash=sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4 \ + --hash=sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77 \ + --hash=sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d \ + --hash=sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0 \ + --hash=sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed \ + --hash=sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068 \ + --hash=sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac \ + --hash=sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25 \ + --hash=sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8 \ + --hash=sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab \ + --hash=sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26 \ + --hash=sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2 \ + --hash=sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db \ + --hash=sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f \ + --hash=sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5 \ + --hash=sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99 \ + --hash=sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c \ + --hash=sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d \ + --hash=sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811 \ + --hash=sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa \ + --hash=sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a \ + --hash=sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03 \ + --hash=sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b \ + --hash=sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04 \ + --hash=sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c \ + --hash=sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001 \ + --hash=sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458 \ + --hash=sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389 \ + --hash=sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99 \ + --hash=sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985 \ + --hash=sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537 \ + --hash=sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238 \ + --hash=sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f \ + --hash=sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d \ + --hash=sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796 \ + --hash=sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a \ + --hash=sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143 \ + --hash=sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8 \ + --hash=sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c \ + --hash=sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5 \ + --hash=sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5 \ + --hash=sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711 \ + --hash=sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4 \ + --hash=sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6 \ + --hash=sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c \ + --hash=sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7 \ + --hash=sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4 \ + --hash=sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b \ + --hash=sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae \ + --hash=sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12 \ + --hash=sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c \ + --hash=sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae \ + --hash=sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8 \ + --hash=sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887 \ + --hash=sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b \ + --hash=sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4 \ + --hash=sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f \ + --hash=sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5 \ + --hash=sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33 \ + --hash=sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519 \ + --hash=sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561 +click==8.1.7 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28 \ + --hash=sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de +colorama==0.4.6 ; python_version >= "3.9" and python_version < "3.13" and platform_system == "Windows" \ + --hash=sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44 \ + --hash=sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 +commonmark==0.9.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60 \ + --hash=sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9 +croniter==2.0.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:78bf110a2c7dbbfdd98b926318ae6c64a731a4c637c7befe3685755110834746 \ + --hash=sha256:8bff16c9af4ef1fb6f05416973b8f7cb54997c02f2f8365251f9bf1dded91866 +django-appconf==1.0.6 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:c3ae442fba1ff7ec830412c5184b17169a7a1e71cf0864a4c3f93cf4c98a1993 \ + --hash=sha256:cfe87ea827c4ee04b9a70fab90b86d704cb02f2981f89da8423cb0fabf88efbf +django-bootstrap5==22.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:5d677bbfb94207c1a034d63a5f39d95ce287ef509e0b31dfb4d233cc81f93bcc \ + --hash=sha256:e944f5ced342e0e16cde77e1ddacb4b9fd5bce4cc190df2f7da0b8e18a24c9cb +django-compressor==4.4 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:1b0acc9cfba9f69bc38e7c41da9b0d70a20bc95587b643ffef9609cf46064f67 \ + --hash=sha256:6e2b0c0becb9607f5099c2546a824c5b84a6918a34bc37a8a622ffa250313596 +django-cors-headers==4.3.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:0b1fd19297e37417fc9f835d39e45c8c642938ddba1acce0c1753d3edef04f36 \ + --hash=sha256:0bf65ef45e606aff1994d35503e6b677c0b26cafff6506f8fd7187f3be840207 +django-environ==0.9.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:bff5381533056328c9ac02f71790bd5bf1cea81b1beeb648f28b81c9e83e0a21 \ + --hash=sha256:f21a5ef8cc603da1870bbf9a09b7e5577ab5f6da451b843dbcc721a7bca6b3d9 +django-jsonform==2.22.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:0c9d50fb371938e7262a7fef7c5a60835dd288f872f87b952d5e2ea84c825221 \ + --hash=sha256:c4dd1ba2b0152bd3164aacf326a83c35355c70d12de81908b5ced5f94c8263d6 +django-libsass==0.9 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:5234d29100889cac79e36a0f44207ec6d275adfd2da1acb6a94b55c89fe2bd97 \ + --hash=sha256:bfbbb55a8950bb40fa04dd416605f92da34ad1f303b10a41abc3232386ec27b5 +django-polymorphic==3.1.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:08bc4f4f4a773a19b2deced5a56deddd1ef56ebd15207bf4052e2901c25ef57e \ + --hash=sha256:d6955b5308bf6e41dcb22ba7c96f00b51dfa497a8a5ab1e9c06c7951bf417bf8 +django-stubs-ext==4.2.7 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:45a5d102417a412e3606e3c358adb4744988a92b7b58ccf3fd64bddd5d04d14c \ + --hash=sha256:519342ac0849cda1559746c9a563f03ff99f636b0ebe7c14b75e816a00dfddc3 +django-stubs[compatible-mypy]==4.2.7 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:4cf4de258fa71adc6f2799e983091b9d46cfc67c6eebc68fe111218c9a62b3b8 \ + --hash=sha256:8ccd2ff4ee5adf22b9e3b7b1a516d2e1c2191e9d94e672c35cc2bc3dd61e0f6b +django==4.2.10 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:a2d4c4d4ea0b6f0895acde632071aff6400bfc331228fc978b05452a0ff3e9f1 \ + --hash=sha256:b1260ed381b10a11753c73444408e19869f3241fc45c985cd55a30177c789d13 +et-xmlfile==1.1.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c \ + --hash=sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada +exceptiongroup==1.2.0 ; python_version >= "3.9" and python_version < "3.11" \ + --hash=sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14 \ + --hash=sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68 +graphql-core==3.2.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:06d2aad0ac723e35b1cb47885d3e5c45e956a53bc1b209a9fc5369007fe46676 \ + --hash=sha256:5766780452bd5ec8ba133f8bf287dc92713e3868ddd83aee4faab9fc3e303dc3 +gunicorn==21.2.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0 \ + --hash=sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033 +idna==3.6 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca \ + --hash=sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f +inflection==0.5.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417 \ + --hash=sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2 +libsass==0.23.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:31e86d92a5c7a551df844b72d83fc2b5e50abc6fbbb31e296f7bebd6489ed1b4 \ + --hash=sha256:34cae047cbbfc4ffa832a61cbb110f3c95f5471c6170c842d3fed161e40814dc \ + --hash=sha256:4a218406d605f325d234e4678bd57126a66a88841cb95bee2caeafdc6f138306 \ + --hash=sha256:6f209955ede26684e76912caf329f4ccb57e4a043fd77fe0e7348dd9574f1880 \ + --hash=sha256:a2ec85d819f353cbe807432d7275d653710d12b08ec7ef61c124a580a8352f3c \ + --hash=sha256:ea97d1b45cdc2fc3590cb9d7b60f1d8915d3ce17a98c1f2d4dd47ee0d9c68ce6 +lxml==4.9.4 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:00e91573183ad273e242db5585b52670eddf92bacad095ce25c1e682da14ed91 \ + --hash=sha256:01bf1df1db327e748dcb152d17389cf6d0a8c5d533ef9bab781e9d5037619229 \ + --hash=sha256:056a17eaaf3da87a05523472ae84246f87ac2f29a53306466c22e60282e54ff8 \ + --hash=sha256:0a08c89b23117049ba171bf51d2f9c5f3abf507d65d016d6e0fa2f37e18c0fc5 \ + --hash=sha256:1343df4e2e6e51182aad12162b23b0a4b3fd77f17527a78c53f0f23573663545 \ + --hash=sha256:1449f9451cd53e0fd0a7ec2ff5ede4686add13ac7a7bfa6988ff6d75cff3ebe2 \ + --hash=sha256:16b9ec51cc2feab009e800f2c6327338d6ee4e752c76e95a35c4465e80390ccd \ + --hash=sha256:1f10f250430a4caf84115b1e0f23f3615566ca2369d1962f82bef40dd99cd81a \ + --hash=sha256:231142459d32779b209aa4b4d460b175cadd604fed856f25c1571a9d78114771 \ + --hash=sha256:232fd30903d3123be4c435fb5159938c6225ee8607b635a4d3fca847003134ba \ + --hash=sha256:23d891e5bdc12e2e506e7d225d6aa929e0a0368c9916c1fddefab88166e98b20 \ + --hash=sha256:266f655d1baff9c47b52f529b5f6bec33f66042f65f7c56adde3fcf2ed62ae8b \ + --hash=sha256:273473d34462ae6e97c0f4e517bd1bf9588aa67a1d47d93f760a1282640e24ac \ + --hash=sha256:2bd9ac6e44f2db368ef8986f3989a4cad3de4cd55dbdda536e253000c801bcc7 \ + --hash=sha256:33714fcf5af4ff7e70a49731a7cc8fd9ce910b9ac194f66eaa18c3cc0a4c02be \ + --hash=sha256:359a8b09d712df27849e0bcb62c6a3404e780b274b0b7e4c39a88826d1926c28 \ + --hash=sha256:365005e8b0718ea6d64b374423e870648ab47c3a905356ab6e5a5ff03962b9a9 \ + --hash=sha256:389d2b2e543b27962990ab529ac6720c3dded588cc6d0f6557eec153305a3622 \ + --hash=sha256:3b505f2bbff50d261176e67be24e8909e54b5d9d08b12d4946344066d66b3e43 \ + --hash=sha256:3d74d4a3c4b8f7a1f676cedf8e84bcc57705a6d7925e6daef7a1e54ae543a197 \ + --hash=sha256:3f3f00a9061605725df1816f5713d10cd94636347ed651abdbc75828df302b20 \ + --hash=sha256:43498ea734ccdfb92e1886dfedaebeb81178a241d39a79d5351ba2b671bff2b2 \ + --hash=sha256:4855161013dfb2b762e02b3f4d4a21cc7c6aec13c69e3bffbf5022b3e708dd97 \ + --hash=sha256:4d973729ce04784906a19108054e1fd476bc85279a403ea1a72fdb051c76fa48 \ + --hash=sha256:4ece9cca4cd1c8ba889bfa67eae7f21d0d1a2e715b4d5045395113361e8c533d \ + --hash=sha256:506becdf2ecaebaf7f7995f776394fcc8bd8a78022772de66677c84fb02dd33d \ + --hash=sha256:520486f27f1d4ce9654154b4494cf9307b495527f3a2908ad4cb48e4f7ed7ef7 \ + --hash=sha256:5557461f83bb7cc718bc9ee1f7156d50e31747e5b38d79cf40f79ab1447afd2d \ + --hash=sha256:562778586949be7e0d7435fcb24aca4810913771f845d99145a6cee64d5b67ca \ + --hash=sha256:59bb5979f9941c61e907ee571732219fa4774d5a18f3fa5ff2df963f5dfaa6bc \ + --hash=sha256:606d445feeb0856c2b424405236a01c71af7c97e5fe42fbc778634faef2b47e4 \ + --hash=sha256:6197c3f3c0b960ad033b9b7d611db11285bb461fc6b802c1dd50d04ad715c225 \ + --hash=sha256:647459b23594f370c1c01768edaa0ba0959afc39caeeb793b43158bb9bb6a663 \ + --hash=sha256:647bfe88b1997d7ae8d45dabc7c868d8cb0c8412a6e730a7651050b8c7289cf2 \ + --hash=sha256:6bee9c2e501d835f91460b2c904bc359f8433e96799f5c2ff20feebd9bb1e590 \ + --hash=sha256:6dbdacf5752fbd78ccdb434698230c4f0f95df7dd956d5f205b5ed6911a1367c \ + --hash=sha256:701847a7aaefef121c5c0d855b2affa5f9bd45196ef00266724a80e439220e46 \ + --hash=sha256:786d6b57026e7e04d184313c1359ac3d68002c33e4b1042ca58c362f1d09ff58 \ + --hash=sha256:7b378847a09d6bd46047f5f3599cdc64fcb4cc5a5a2dd0a2af610361fbe77b16 \ + --hash=sha256:7d1d6c9e74c70ddf524e3c09d9dc0522aba9370708c2cb58680ea40174800013 \ + --hash=sha256:857d6565f9aa3464764c2cb6a2e3c2e75e1970e877c188f4aeae45954a314e0c \ + --hash=sha256:8671622256a0859f5089cbe0ce4693c2af407bc053dcc99aadff7f5310b4aa02 \ + --hash=sha256:88f7c383071981c74ec1998ba9b437659e4fd02a3c4a4d3efc16774eb108d0ec \ + --hash=sha256:8aecb5a7f6f7f8fe9cac0bcadd39efaca8bbf8d1bf242e9f175cbe4c925116c3 \ + --hash=sha256:91bbf398ac8bb7d65a5a52127407c05f75a18d7015a270fdd94bbcb04e65d573 \ + --hash=sha256:936e8880cc00f839aa4173f94466a8406a96ddce814651075f95837316369899 \ + --hash=sha256:953dd5481bd6252bd480d6ec431f61d7d87fdcbbb71b0d2bdcfc6ae00bb6fb10 \ + --hash=sha256:95ae6c5a196e2f239150aa4a479967351df7f44800c93e5a975ec726fef005e2 \ + --hash=sha256:9a2b5915c333e4364367140443b59f09feae42184459b913f0f41b9fed55794a \ + --hash=sha256:9ae6c3363261021144121427b1552b29e7b59de9d6a75bf51e03bc072efb3c37 \ + --hash=sha256:9b556596c49fa1232b0fff4b0e69b9d4083a502e60e404b44341e2f8fb7187f5 \ + --hash=sha256:9c131447768ed7bc05a02553d939e7f0e807e533441901dd504e217b76307745 \ + --hash=sha256:9d9d5726474cbbef279fd709008f91a49c4f758bec9c062dfbba88eab00e3ff9 \ + --hash=sha256:a1bdcbebd4e13446a14de4dd1825f1e778e099f17f79718b4aeaf2403624b0f7 \ + --hash=sha256:a602ed9bd2c7d85bd58592c28e101bd9ff9c718fbde06545a70945ffd5d11868 \ + --hash=sha256:a8edae5253efa75c2fc79a90068fe540b197d1c7ab5803b800fccfe240eed33c \ + --hash=sha256:a905affe76f1802edcac554e3ccf68188bea16546071d7583fb1b693f9cf756b \ + --hash=sha256:a9e7c6d89c77bb2770c9491d988f26a4b161d05c8ca58f63fb1f1b6b9a74be45 \ + --hash=sha256:aa9b5abd07f71b081a33115d9758ef6077924082055005808f68feccb27616bd \ + --hash=sha256:aaa5c173a26960fe67daa69aa93d6d6a1cd714a6eb13802d4e4bd1d24a530644 \ + --hash=sha256:ac7674d1638df129d9cb4503d20ffc3922bd463c865ef3cb412f2c926108e9a4 \ + --hash=sha256:b1541e50b78e15fa06a2670157a1962ef06591d4c998b998047fff5e3236880e \ + --hash=sha256:b1980dbcaad634fe78e710c8587383e6e3f61dbe146bcbfd13a9c8ab2d7b1192 \ + --hash=sha256:bafa65e3acae612a7799ada439bd202403414ebe23f52e5b17f6ffc2eb98c2be \ + --hash=sha256:bb5bd6212eb0edfd1e8f254585290ea1dadc3687dd8fd5e2fd9a87c31915cdab \ + --hash=sha256:bbdd69e20fe2943b51e2841fc1e6a3c1de460d630f65bde12452d8c97209464d \ + --hash=sha256:bc354b1393dce46026ab13075f77b30e40b61b1a53e852e99d3cc5dd1af4bc85 \ + --hash=sha256:bcee502c649fa6351b44bb014b98c09cb00982a475a1912a9881ca28ab4f9cd9 \ + --hash=sha256:bdd9abccd0927673cffe601d2c6cdad1c9321bf3437a2f507d6b037ef91ea307 \ + --hash=sha256:c42ae7e010d7d6bc51875d768110c10e8a59494855c3d4c348b068f5fb81fdcd \ + --hash=sha256:c71b5b860c5215fdbaa56f715bc218e45a98477f816b46cfde4a84d25b13274e \ + --hash=sha256:c7721a3ef41591341388bb2265395ce522aba52f969d33dacd822da8f018aff8 \ + --hash=sha256:ca8e44b5ba3edb682ea4e6185b49661fc22b230cf811b9c13963c9f982d1d964 \ + --hash=sha256:cb53669442895763e61df5c995f0e8361b61662f26c1b04ee82899c2789c8f69 \ + --hash=sha256:cc02c06e9e320869d7d1bd323df6dd4281e78ac2e7f8526835d3d48c69060683 \ + --hash=sha256:d3caa09e613ece43ac292fbed513a4bce170681a447d25ffcbc1b647d45a39c5 \ + --hash=sha256:d82411dbf4d3127b6cde7da0f9373e37ad3a43e89ef374965465928f01c2b979 \ + --hash=sha256:dbcb2dc07308453db428a95a4d03259bd8caea97d7f0776842299f2d00c72fc8 \ + --hash=sha256:dd4fda67f5faaef4f9ee5383435048ee3e11ad996901225ad7615bc92245bc8e \ + --hash=sha256:ddd92e18b783aeb86ad2132d84a4b795fc5ec612e3545c1b687e7747e66e2b53 \ + --hash=sha256:de362ac8bc962408ad8fae28f3967ce1a262b5d63ab8cefb42662566737f1dc7 \ + --hash=sha256:e214025e23db238805a600f1f37bf9f9a15413c7bf5f9d6ae194f84980c78722 \ + --hash=sha256:e8f9f93a23634cfafbad6e46ad7d09e0f4a25a2400e4a64b1b7b7c0fbaa06d9d \ + --hash=sha256:e96a1788f24d03e8d61679f9881a883ecdf9c445a38f9ae3f3f193ab6c591c66 \ + --hash=sha256:ec53a09aee61d45e7dbe7e91252ff0491b6b5fee3d85b2d45b173d8ab453efc1 \ + --hash=sha256:f10250bb190fb0742e3e1958dd5c100524c2cc5096c67c8da51233f7448dc137 \ + --hash=sha256:f1faee2a831fe249e1bae9cbc68d3cd8a30f7e37851deee4d7962b17c410dd56 \ + --hash=sha256:f610d980e3fccf4394ab3806de6065682982f3d27c12d4ce3ee46a8183d64a6a \ + --hash=sha256:f6c35b2f87c004270fa2e703b872fcc984d714d430b305145c39d53074e1ffe0 \ + --hash=sha256:f836f39678cb47c9541f04d8ed4545719dc31ad850bf1832d6b4171e30d65d23 \ + --hash=sha256:f99768232f036b4776ce419d3244a04fe83784bce871b16d2c2e984c7fcea847 \ + --hash=sha256:fd814847901df6e8de13ce69b84c31fc9b3fb591224d6762d0b256d510cbf382 \ + --hash=sha256:fdb325b7fba1e2c40b9b1db407f85642e32404131c08480dd652110fc908561b +mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d \ + --hash=sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782 +mypy==1.7.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:12cce78e329838d70a204293e7b29af9faa3ab14899aec397798a4b41be7f340 \ + --hash=sha256:1484b8fa2c10adf4474f016e09d7a159602f3239075c7bf9f1627f5acf40ad49 \ + --hash=sha256:204e0d6de5fd2317394a4eff62065614c4892d5a4d1a7ee55b765d7a3d9e3f82 \ + --hash=sha256:2643d145af5292ee956aa0a83c2ce1038a3bdb26e033dadeb2f7066fb0c9abce \ + --hash=sha256:2c6e4464ed5f01dc44dc9821caf67b60a4e5c3b04278286a85c067010653a0eb \ + --hash=sha256:2f7f6985d05a4e3ce8255396df363046c28bea790e40617654e91ed580ca7c51 \ + --hash=sha256:31902408f4bf54108bbfb2e35369877c01c95adc6192958684473658c322c8a5 \ + --hash=sha256:40716d1f821b89838589e5b3106ebbc23636ffdef5abc31f7cd0266db936067e \ + --hash=sha256:4b901927f16224d0d143b925ce9a4e6b3a758010673eeded9b748f250cf4e8f7 \ + --hash=sha256:4fc3d14ee80cd22367caaaf6e014494415bf440980a3045bf5045b525680ac33 \ + --hash=sha256:5cf3f0c5ac72139797953bd50bc6c95ac13075e62dbfcc923571180bebb662e9 \ + --hash=sha256:6dbdec441c60699288adf051f51a5d512b0d818526d1dcfff5a41f8cd8b4aaf1 \ + --hash=sha256:72cf32ce7dd3562373f78bd751f73c96cfb441de147cc2448a92c1a308bd0ca6 \ + --hash=sha256:75aa828610b67462ffe3057d4d8a4112105ed211596b750b53cbfe182f44777a \ + --hash=sha256:75c4d2a6effd015786c87774e04331b6da863fc3fc4e8adfc3b40aa55ab516fe \ + --hash=sha256:78e25b2fd6cbb55ddfb8058417df193f0129cad5f4ee75d1502248e588d9e0d7 \ + --hash=sha256:84860e06ba363d9c0eeabd45ac0fde4b903ad7aa4f93cd8b648385a888e23200 \ + --hash=sha256:8c5091ebd294f7628eb25ea554852a52058ac81472c921150e3a61cdd68f75a7 \ + --hash=sha256:944bdc21ebd620eafefc090cdf83158393ec2b1391578359776c00de00e8907a \ + --hash=sha256:9c7ac372232c928fff0645d85f273a726970c014749b924ce5710d7d89763a28 \ + --hash=sha256:d9b338c19fa2412f76e17525c1b4f2c687a55b156320acb588df79f2e6fa9fea \ + --hash=sha256:ee5d62d28b854eb61889cde4e1dbc10fbaa5560cb39780c3995f6737f7e82120 \ + --hash=sha256:f2c2521a8e4d6d769e3234350ba7b65ff5d527137cdcde13ff4d99114b0c8e7d \ + --hash=sha256:f6efc9bd72258f89a3816e3a98c09d36f079c223aa345c659622f056b760ab42 \ + --hash=sha256:f7c5d642db47376a0cc130f0de6d055056e010debdaf0707cd2b0fc7e7ef30ea \ + --hash=sha256:fcb6d9afb1b6208b4c712af0dafdc650f518836065df0d4fb1d800f5d6773db2 \ + --hash=sha256:fcd2572dd4519e8a6642b733cd3a8cfc1ef94bafd0c1ceed9c94fe736cb65b6a +mysoc-dataset==0.3.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:3613f1babec9ead5b3e568b1f0a3faad3f73efe893f0e99b153c858d1d2b67d8 \ + --hash=sha256:59157721c255dbfd2425c1d70e4f4060caf8e211d6950eec3cbf9f2f7beaef5f +numpy==1.26.4 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b \ + --hash=sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818 \ + --hash=sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20 \ + --hash=sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0 \ + --hash=sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010 \ + --hash=sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a \ + --hash=sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea \ + --hash=sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c \ + --hash=sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71 \ + --hash=sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110 \ + --hash=sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be \ + --hash=sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a \ + --hash=sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a \ + --hash=sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5 \ + --hash=sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed \ + --hash=sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd \ + --hash=sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c \ + --hash=sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e \ + --hash=sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0 \ + --hash=sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c \ + --hash=sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a \ + --hash=sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b \ + --hash=sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0 \ + --hash=sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6 \ + --hash=sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2 \ + --hash=sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a \ + --hash=sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30 \ + --hash=sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218 \ + --hash=sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5 \ + --hash=sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07 \ + --hash=sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2 \ + --hash=sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4 \ + --hash=sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764 \ + --hash=sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef \ + --hash=sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3 \ + --hash=sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f +openpyxl==3.1.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:a6f5977418eff3b2d5500d54d9db50c8277a368436f4e4f8ddb1be3422870184 \ + --hash=sha256:f91456ead12ab3c6c2e9491cf33ba6d08357d802192379bb482f1033ade496f5 +packaging==23.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5 \ + --hash=sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7 +pandas==1.5.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:14e45300521902689a81f3f41386dc86f19b8ba8dd5ac5a3c7010ef8d2932813 \ + --hash=sha256:26d9c71772c7afb9d5046e6e9cf42d83dd147b5cf5bcb9d97252077118543792 \ + --hash=sha256:3749077d86e3a2f0ed51367f30bf5b82e131cc0f14260c4d3e499186fccc4406 \ + --hash=sha256:41179ce559943d83a9b4bbacb736b04c928b095b5f25dd2b7389eda08f46f373 \ + --hash=sha256:478ff646ca42b20376e4ed3fa2e8d7341e8a63105586efe54fa2508ee087f328 \ + --hash=sha256:50869a35cbb0f2e0cd5ec04b191e7b12ed688874bd05dd777c19b28cbea90996 \ + --hash=sha256:565fa34a5434d38e9d250af3c12ff931abaf88050551d9fbcdfafca50d62babf \ + --hash=sha256:5f2b952406a1588ad4cad5b3f55f520e82e902388a6d5a4a91baa8d38d23c7f6 \ + --hash=sha256:5fbcb19d6fceb9e946b3e23258757c7b225ba450990d9ed63ccceeb8cae609f7 \ + --hash=sha256:6973549c01ca91ec96199e940495219c887ea815b2083722821f1d7abfa2b4dc \ + --hash=sha256:74a3fd7e5a7ec052f183273dc7b0acd3a863edf7520f5d3a1765c04ffdb3b0b1 \ + --hash=sha256:7a0a56cef15fd1586726dace5616db75ebcfec9179a3a55e78f72c5639fa2a23 \ + --hash=sha256:7cec0bee9f294e5de5bbfc14d0573f65526071029d036b753ee6507d2a21480a \ + --hash=sha256:87bd9c03da1ac870a6d2c8902a0e1fd4267ca00f13bc494c9e5a9020920e1d51 \ + --hash=sha256:972d8a45395f2a2d26733eb8d0f629b2f90bebe8e8eddbb8829b180c09639572 \ + --hash=sha256:9842b6f4b8479e41968eced654487258ed81df7d1c9b7b870ceea24ed9459b31 \ + --hash=sha256:9f69c4029613de47816b1bb30ff5ac778686688751a5e9c99ad8c7031f6508e5 \ + --hash=sha256:a50d9a4336a9621cab7b8eb3fb11adb82de58f9b91d84c2cd526576b881a0c5a \ + --hash=sha256:bc4c368f42b551bf72fac35c5128963a171b40dce866fb066540eeaf46faa003 \ + --hash=sha256:c39a8da13cede5adcd3be1182883aea1c925476f4e84b2807a46e2775306305d \ + --hash=sha256:c3ac844a0fe00bfaeb2c9b51ab1424e5c8744f89860b138434a363b1f620f354 \ + --hash=sha256:c4c00e0b0597c8e4f59e8d461f797e5d70b4d025880516a8261b2817c47759ee \ + --hash=sha256:c74a62747864ed568f5a82a49a23a8d7fe171d0c69038b38cedf0976831296fa \ + --hash=sha256:dd05f7783b3274aa206a1af06f0ceed3f9b412cf665b7247eacd83be41cf7bf0 \ + --hash=sha256:dfd681c5dc216037e0b0a2c821f5ed99ba9f03ebcf119c7dac0e9a7b960b9ec9 \ + --hash=sha256:e474390e60ed609cec869b0da796ad94f420bb057d86784191eefc62b65819ae \ + --hash=sha256:f76d097d12c82a535fda9dfe5e8dd4127952b45fea9b0276cb30cca5ea313fbc +pillow==10.2.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:0304004f8067386b477d20a518b50f3fa658a28d44e4116970abfcd94fac34a8 \ + --hash=sha256:0689b5a8c5288bc0504d9fcee48f61a6a586b9b98514d7d29b840143d6734f39 \ + --hash=sha256:0eae2073305f451d8ecacb5474997c08569fb4eb4ac231ffa4ad7d342fdc25ac \ + --hash=sha256:0fb3e7fc88a14eacd303e90481ad983fd5b69c761e9e6ef94c983f91025da869 \ + --hash=sha256:11fa2e5984b949b0dd6d7a94d967743d87c577ff0b83392f17cb3990d0d2fd6e \ + --hash=sha256:127cee571038f252a552760076407f9cff79761c3d436a12af6000cd182a9d04 \ + --hash=sha256:154e939c5f0053a383de4fd3d3da48d9427a7e985f58af8e94d0b3c9fcfcf4f9 \ + --hash=sha256:15587643b9e5eb26c48e49a7b33659790d28f190fc514a322d55da2fb5c2950e \ + --hash=sha256:170aeb00224ab3dc54230c797f8404507240dd868cf52066f66a41b33169bdbe \ + --hash=sha256:1b5e1b74d1bd1b78bc3477528919414874748dd363e6272efd5abf7654e68bef \ + --hash=sha256:1da3b2703afd040cf65ec97efea81cfba59cdbed9c11d8efc5ab09df9509fc56 \ + --hash=sha256:1e23412b5c41e58cec602f1135c57dfcf15482013ce6e5f093a86db69646a5aa \ + --hash=sha256:2247178effb34a77c11c0e8ac355c7a741ceca0a732b27bf11e747bbc950722f \ + --hash=sha256:257d8788df5ca62c980314053197f4d46eefedf4e6175bc9412f14412ec4ea2f \ + --hash=sha256:3031709084b6e7852d00479fd1d310b07d0ba82765f973b543c8af5061cf990e \ + --hash=sha256:322209c642aabdd6207517e9739c704dc9f9db943015535783239022002f054a \ + --hash=sha256:322bdf3c9b556e9ffb18f93462e5f749d3444ce081290352c6070d014c93feb2 \ + --hash=sha256:33870dc4653c5017bf4c8873e5488d8f8d5f8935e2f1fb9a2208c47cdd66efd2 \ + --hash=sha256:35bb52c37f256f662abdfa49d2dfa6ce5d93281d323a9af377a120e89a9eafb5 \ + --hash=sha256:3c31822339516fb3c82d03f30e22b1d038da87ef27b6a78c9549888f8ceda39a \ + --hash=sha256:3eedd52442c0a5ff4f887fab0c1c0bb164d8635b32c894bc1faf4c618dd89df2 \ + --hash=sha256:3ff074fc97dd4e80543a3e91f69d58889baf2002b6be64347ea8cf5533188213 \ + --hash=sha256:47c0995fc4e7f79b5cfcab1fc437ff2890b770440f7696a3ba065ee0fd496563 \ + --hash=sha256:49d9ba1ed0ef3e061088cd1e7538a0759aab559e2e0a80a36f9fd9d8c0c21591 \ + --hash=sha256:51f1a1bffc50e2e9492e87d8e09a17c5eea8409cda8d3f277eb6edc82813c17c \ + --hash=sha256:52a50aa3fb3acb9cf7213573ef55d31d6eca37f5709c69e6858fe3bc04a5c2a2 \ + --hash=sha256:54f1852cd531aa981bc0965b7d609f5f6cc8ce8c41b1139f6ed6b3c54ab82bfb \ + --hash=sha256:609448742444d9290fd687940ac0b57fb35e6fd92bdb65386e08e99af60bf757 \ + --hash=sha256:69ffdd6120a4737710a9eee73e1d2e37db89b620f702754b8f6e62594471dee0 \ + --hash=sha256:6fad5ff2f13d69b7e74ce5b4ecd12cc0ec530fcee76356cac6742785ff71c452 \ + --hash=sha256:7049e301399273a0136ff39b84c3678e314f2158f50f517bc50285fb5ec847ad \ + --hash=sha256:70c61d4c475835a19b3a5aa42492409878bbca7438554a1f89d20d58a7c75c01 \ + --hash=sha256:716d30ed977be8b37d3ef185fecb9e5a1d62d110dfbdcd1e2a122ab46fddb03f \ + --hash=sha256:753cd8f2086b2b80180d9b3010dd4ed147efc167c90d3bf593fe2af21265e5a5 \ + --hash=sha256:773efe0603db30c281521a7c0214cad7836c03b8ccff897beae9b47c0b657d61 \ + --hash=sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e \ + --hash=sha256:7c8f97e8e7a9009bcacbe3766a36175056c12f9a44e6e6f2d5caad06dcfbf03b \ + --hash=sha256:823ef7a27cf86df6597fa0671066c1b596f69eba53efa3d1e1cb8b30f3533068 \ + --hash=sha256:8373c6c251f7ef8bda6675dd6d2b3a0fcc31edf1201266b5cf608b62a37407f9 \ + --hash=sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588 \ + --hash=sha256:870ea1ada0899fd0b79643990809323b389d4d1d46c192f97342eeb6ee0b8483 \ + --hash=sha256:8d12251f02d69d8310b046e82572ed486685c38f02176bd08baf216746eb947f \ + --hash=sha256:9c23f307202661071d94b5e384e1e1dc7dfb972a28a2310e4ee16103e66ddb67 \ + --hash=sha256:9d189550615b4948f45252d7f005e53c2040cea1af5b60d6f79491a6e147eef7 \ + --hash=sha256:a086c2af425c5f62a65e12fbf385f7c9fcb8f107d0849dba5839461a129cf311 \ + --hash=sha256:a2b56ba36e05f973d450582fb015594aaa78834fefe8dfb8fcd79b93e64ba4c6 \ + --hash=sha256:aebb6044806f2e16ecc07b2a2637ee1ef67a11840a66752751714a0d924adf72 \ + --hash=sha256:b1b3020d90c2d8e1dae29cf3ce54f8094f7938460fb5ce8bc5c01450b01fbaf6 \ + --hash=sha256:b4b6b1e20608493548b1f32bce8cca185bf0480983890403d3b8753e44077129 \ + --hash=sha256:b6f491cdf80ae540738859d9766783e3b3c8e5bd37f5dfa0b76abdecc5081f13 \ + --hash=sha256:b792a349405fbc0163190fde0dc7b3fef3c9268292586cf5645598b48e63dc67 \ + --hash=sha256:b7c2286c23cd350b80d2fc9d424fc797575fb16f854b831d16fd47ceec078f2c \ + --hash=sha256:babf5acfede515f176833ed6028754cbcd0d206f7f614ea3447d67c33be12516 \ + --hash=sha256:c365fd1703040de1ec284b176d6af5abe21b427cb3a5ff68e0759e1e313a5e7e \ + --hash=sha256:c4225f5220f46b2fde568c74fca27ae9771536c2e29d7c04f4fb62c83275ac4e \ + --hash=sha256:c570f24be1e468e3f0ce7ef56a89a60f0e05b30a3669a459e419c6eac2c35364 \ + --hash=sha256:c6dafac9e0f2b3c78df97e79af707cdc5ef8e88208d686a4847bab8266870023 \ + --hash=sha256:c8de2789052ed501dd829e9cae8d3dcce7acb4777ea4a479c14521c942d395b1 \ + --hash=sha256:cb28c753fd5eb3dd859b4ee95de66cc62af91bcff5db5f2571d32a520baf1f04 \ + --hash=sha256:cb4c38abeef13c61d6916f264d4845fab99d7b711be96c326b84df9e3e0ff62d \ + --hash=sha256:d1b35bcd6c5543b9cb547dee3150c93008f8dd0f1fef78fc0cd2b141c5baf58a \ + --hash=sha256:d8e6aeb9201e655354b3ad049cb77d19813ad4ece0df1249d3c793de3774f8c7 \ + --hash=sha256:d8ecd059fdaf60c1963c58ceb8997b32e9dc1b911f5da5307aab614f1ce5c2fb \ + --hash=sha256:da2b52b37dad6d9ec64e653637a096905b258d2fc2b984c41ae7d08b938a67e4 \ + --hash=sha256:e87f0b2c78157e12d7686b27d63c070fd65d994e8ddae6f328e0dcf4a0cd007e \ + --hash=sha256:edca80cbfb2b68d7b56930b84a0e45ae1694aeba0541f798e908a49d66b837f1 \ + --hash=sha256:f379abd2f1e3dddb2b61bc67977a6b5a0a3f7485538bcc6f39ec76163891ee48 \ + --hash=sha256:fe4c15f6c9285dc54ce6553a3ce908ed37c8f3825b5a51a15c91442bb955b868 +procrastinate[django]==2.0.0b4 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:784fb92e26f74fb60ef737a6559a180ecdb9a7f0253bb5a0bb7fc5d26956f449 \ + --hash=sha256:a54d9ae53291e3e22e261f4e403de083e9849619009568b2857318d85f9088bd +psycopg-pool==3.2.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:060b551d1b97a8d358c668be58b637780b884de14d861f4f5ecc48b7563aafb7 \ + --hash=sha256:6509a75c073590952915eddbba7ce8b8332a440a31e77bba69561483492829ad +psycopg2-binary==2.9.9 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:03ef7df18daf2c4c07e2695e8cfd5ee7f748a1d54d802330985a78d2a5a6dca9 \ + --hash=sha256:0a602ea5aff39bb9fac6308e9c9d82b9a35c2bf288e184a816002c9fae930b77 \ + --hash=sha256:0c009475ee389757e6e34611d75f6e4f05f0cf5ebb76c6037508318e1a1e0d7e \ + --hash=sha256:0ef4854e82c09e84cc63084a9e4ccd6d9b154f1dbdd283efb92ecd0b5e2b8c84 \ + --hash=sha256:1236ed0952fbd919c100bc839eaa4a39ebc397ed1c08a97fc45fee2a595aa1b3 \ + --hash=sha256:143072318f793f53819048fdfe30c321890af0c3ec7cb1dfc9cc87aa88241de2 \ + --hash=sha256:15208be1c50b99203fe88d15695f22a5bed95ab3f84354c494bcb1d08557df67 \ + --hash=sha256:1873aade94b74715be2246321c8650cabf5a0d098a95bab81145ffffa4c13876 \ + --hash=sha256:18d0ef97766055fec15b5de2c06dd8e7654705ce3e5e5eed3b6651a1d2a9a152 \ + --hash=sha256:1ea665f8ce695bcc37a90ee52de7a7980be5161375d42a0b6c6abedbf0d81f0f \ + --hash=sha256:2293b001e319ab0d869d660a704942c9e2cce19745262a8aba2115ef41a0a42a \ + --hash=sha256:246b123cc54bb5361588acc54218c8c9fb73068bf227a4a531d8ed56fa3ca7d6 \ + --hash=sha256:275ff571376626195ab95a746e6a04c7df8ea34638b99fc11160de91f2fef503 \ + --hash=sha256:281309265596e388ef483250db3640e5f414168c5a67e9c665cafce9492eda2f \ + --hash=sha256:2d423c8d8a3c82d08fe8af900ad5b613ce3632a1249fd6a223941d0735fce493 \ + --hash=sha256:2e5afae772c00980525f6d6ecf7cbca55676296b580c0e6abb407f15f3706996 \ + --hash=sha256:30dcc86377618a4c8f3b72418df92e77be4254d8f89f14b8e8f57d6d43603c0f \ + --hash=sha256:31a34c508c003a4347d389a9e6fcc2307cc2150eb516462a7a17512130de109e \ + --hash=sha256:323ba25b92454adb36fa425dc5cf6f8f19f78948cbad2e7bc6cdf7b0d7982e59 \ + --hash=sha256:34eccd14566f8fe14b2b95bb13b11572f7c7d5c36da61caf414d23b91fcc5d94 \ + --hash=sha256:3a58c98a7e9c021f357348867f537017057c2ed7f77337fd914d0bedb35dace7 \ + --hash=sha256:3f78fd71c4f43a13d342be74ebbc0666fe1f555b8837eb113cb7416856c79682 \ + --hash=sha256:4154ad09dac630a0f13f37b583eae260c6aa885d67dfbccb5b02c33f31a6d420 \ + --hash=sha256:420f9bbf47a02616e8554e825208cb947969451978dceb77f95ad09c37791dae \ + --hash=sha256:4686818798f9194d03c9129a4d9a702d9e113a89cb03bffe08c6cf799e053291 \ + --hash=sha256:57fede879f08d23c85140a360c6a77709113efd1c993923c59fde17aa27599fe \ + --hash=sha256:60989127da422b74a04345096c10d416c2b41bd7bf2a380eb541059e4e999980 \ + --hash=sha256:64cf30263844fa208851ebb13b0732ce674d8ec6a0c86a4e160495d299ba3c93 \ + --hash=sha256:68fc1f1ba168724771e38bee37d940d2865cb0f562380a1fb1ffb428b75cb692 \ + --hash=sha256:6e6f98446430fdf41bd36d4faa6cb409f5140c1c2cf58ce0bbdaf16af7d3f119 \ + --hash=sha256:729177eaf0aefca0994ce4cffe96ad3c75e377c7b6f4efa59ebf003b6d398716 \ + --hash=sha256:72dffbd8b4194858d0941062a9766f8297e8868e1dd07a7b36212aaa90f49472 \ + --hash=sha256:75723c3c0fbbf34350b46a3199eb50638ab22a0228f93fb472ef4d9becc2382b \ + --hash=sha256:77853062a2c45be16fd6b8d6de2a99278ee1d985a7bd8b103e97e41c034006d2 \ + --hash=sha256:78151aa3ec21dccd5cdef6c74c3e73386dcdfaf19bced944169697d7ac7482fc \ + --hash=sha256:7f01846810177d829c7692f1f5ada8096762d9172af1b1a28d4ab5b77c923c1c \ + --hash=sha256:804d99b24ad523a1fe18cc707bf741670332f7c7412e9d49cb5eab67e886b9b5 \ + --hash=sha256:81ff62668af011f9a48787564ab7eded4e9fb17a4a6a74af5ffa6a457400d2ab \ + --hash=sha256:8359bf4791968c5a78c56103702000105501adb557f3cf772b2c207284273984 \ + --hash=sha256:83791a65b51ad6ee6cf0845634859d69a038ea9b03d7b26e703f94c7e93dbcf9 \ + --hash=sha256:8532fd6e6e2dc57bcb3bc90b079c60de896d2128c5d9d6f24a63875a95a088cf \ + --hash=sha256:876801744b0dee379e4e3c38b76fc89f88834bb15bf92ee07d94acd06ec890a0 \ + --hash=sha256:8dbf6d1bc73f1d04ec1734bae3b4fb0ee3cb2a493d35ede9badbeb901fb40f6f \ + --hash=sha256:8f8544b092a29a6ddd72f3556a9fcf249ec412e10ad28be6a0c0d948924f2212 \ + --hash=sha256:911dda9c487075abd54e644ccdf5e5c16773470a6a5d3826fda76699410066fb \ + --hash=sha256:977646e05232579d2e7b9c59e21dbe5261f403a88417f6a6512e70d3f8a046be \ + --hash=sha256:9dba73be7305b399924709b91682299794887cbbd88e38226ed9f6712eabee90 \ + --hash=sha256:a148c5d507bb9b4f2030a2025c545fccb0e1ef317393eaba42e7eabd28eb6041 \ + --hash=sha256:a6cdcc3ede532f4a4b96000b6362099591ab4a3e913d70bcbac2b56c872446f7 \ + --hash=sha256:ac05fb791acf5e1a3e39402641827780fe44d27e72567a000412c648a85ba860 \ + --hash=sha256:b0605eaed3eb239e87df0d5e3c6489daae3f7388d455d0c0b4df899519c6a38d \ + --hash=sha256:b58b4710c7f4161b5e9dcbe73bb7c62d65670a87df7bcce9e1faaad43e715245 \ + --hash=sha256:b6356793b84728d9d50ead16ab43c187673831e9d4019013f1402c41b1db9b27 \ + --hash=sha256:b76bedd166805480ab069612119ea636f5ab8f8771e640ae103e05a4aae3e417 \ + --hash=sha256:bc7bb56d04601d443f24094e9e31ae6deec9ccb23581f75343feebaf30423359 \ + --hash=sha256:c2470da5418b76232f02a2fcd2229537bb2d5a7096674ce61859c3229f2eb202 \ + --hash=sha256:c332c8d69fb64979ebf76613c66b985414927a40f8defa16cf1bc028b7b0a7b0 \ + --hash=sha256:c6af2a6d4b7ee9615cbb162b0738f6e1fd1f5c3eda7e5da17861eacf4c717ea7 \ + --hash=sha256:c77e3d1862452565875eb31bdb45ac62502feabbd53429fdc39a1cc341d681ba \ + --hash=sha256:ca08decd2697fdea0aea364b370b1249d47336aec935f87b8bbfd7da5b2ee9c1 \ + --hash=sha256:ca49a8119c6cbd77375ae303b0cfd8c11f011abbbd64601167ecca18a87e7cdd \ + --hash=sha256:cb16c65dcb648d0a43a2521f2f0a2300f40639f6f8c1ecbc662141e4e3e1ee07 \ + --hash=sha256:d2997c458c690ec2bc6b0b7ecbafd02b029b7b4283078d3b32a852a7ce3ddd98 \ + --hash=sha256:d3f82c171b4ccd83bbaf35aa05e44e690113bd4f3b7b6cc54d2219b132f3ae55 \ + --hash=sha256:dc4926288b2a3e9fd7b50dc6a1909a13bbdadfc67d93f3374d984e56f885579d \ + --hash=sha256:ead20f7913a9c1e894aebe47cccf9dc834e1618b7aa96155d2091a626e59c972 \ + --hash=sha256:ebdc36bea43063116f0486869652cb2ed7032dbc59fbcb4445c4862b5c1ecf7f \ + --hash=sha256:ed1184ab8f113e8d660ce49a56390ca181f2981066acc27cf637d5c1e10ce46e \ + --hash=sha256:ee825e70b1a209475622f7f7b776785bd68f34af6e7a46e2e42f27b659b5bc26 \ + --hash=sha256:f7ae5d65ccfbebdfa761585228eb4d0df3a8b15cfb53bd953e713e09fbb12957 \ + --hash=sha256:f7fc5a5acafb7d6ccca13bfa8c90f8c51f13d8fb87d95656d3950f0158d3ce53 \ + --hash=sha256:f9b5571d33660d5009a8b3c25dc1db560206e2d2f89d3df1cb32d72c0d117d52 +psycopg2==2.9.9 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:121081ea2e76729acfb0673ff33755e8703d45e926e416cb59bae3a86c6a4981 \ + --hash=sha256:38a8dcc6856f569068b47de286b472b7c473ac7977243593a288ebce0dc89516 \ + --hash=sha256:426f9f29bde126913a20a96ff8ce7d73fd8a216cfb323b1f04da402d452853c3 \ + --hash=sha256:5e0d98cade4f0e0304d7d6f25bbfbc5bd186e07b38eac65379309c4ca3193efa \ + --hash=sha256:7e2dacf8b009a1c1e843b5213a87f7c544b2b042476ed7755be813eaf4e8347a \ + --hash=sha256:a7653d00b732afb6fc597e29c50ad28087dcb4fbfb28e86092277a559ae4e693 \ + --hash=sha256:ade01303ccf7ae12c356a5e10911c9e1c51136003a9a1d92f7aa9d010fb98372 \ + --hash=sha256:bac58c024c9922c23550af2a581998624d6e02350f4ae9c5f0bc642c633a2d5e \ + --hash=sha256:c92811b2d4c9b6ea0285942b2e7cac98a59e166d59c588fe5cfe1eda58e72d59 \ + --hash=sha256:d1454bde93fb1e224166811694d600e746430c006fbb031ea06ecc2ea41bf156 \ + --hash=sha256:d735786acc7dd25815e89cc4ad529a43af779db2e25aa7c626de864127e5a024 \ + --hash=sha256:de80739447af31525feddeb8effd640782cf5998e1a4e9192ebdf829717e3913 \ + --hash=sha256:ff432630e510709564c01dafdbe996cb552e0b9f3f065eb89bdce5bd31fabf4c +psycopg==3.1.18 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:31144d3fb4c17d78094d9e579826f047d4af1da6a10427d91dfcfb6ecdf6f12b \ + --hash=sha256:4d5a0a5a8590906daa58ebd5f3cfc34091377354a1acced269dd10faf55da60e +psycopg[pool]==3.1.18 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:31144d3fb4c17d78094d9e579826f047d4af1da6a10427d91dfcfb6ecdf6f12b \ + --hash=sha256:4d5a0a5a8590906daa58ebd5f3cfc34091377354a1acced269dd10faf55da60e +pyairtable==2.3.0.post1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:1d78cd8cdb662d0c05cdb9c551564ff48d31a8311c0f5b25e1f627bc79bd9c1b \ + --hash=sha256:b08da5526e478890aec1e118416177ab58ab6a51ad30323a63a4992e77645c6f +pydantic-core==2.16.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:00ee1c97b5364b84cb0bd82e9bbf645d5e2871fb8c58059d158412fee2d33d8a \ + --hash=sha256:0d32576b1de5a30d9a97f300cc6a3f4694c428d956adbc7e6e2f9cad279e45ed \ + --hash=sha256:0df446663464884297c793874573549229f9eca73b59360878f382a0fc085979 \ + --hash=sha256:0f56ae86b60ea987ae8bcd6654a887238fd53d1384f9b222ac457070b7ac4cff \ + --hash=sha256:13dcc4802961b5f843a9385fc821a0b0135e8c07fc3d9949fd49627c1a5e6ae5 \ + --hash=sha256:162e498303d2b1c036b957a1278fa0899d02b2842f1ff901b6395104c5554a45 \ + --hash=sha256:1b662180108c55dfbf1280d865b2d116633d436cfc0bba82323554873967b340 \ + --hash=sha256:1cac689f80a3abab2d3c0048b29eea5751114054f032a941a32de4c852c59cad \ + --hash=sha256:21b888c973e4f26b7a96491c0965a8a312e13be108022ee510248fe379a5fa23 \ + --hash=sha256:287073c66748f624be4cef893ef9174e3eb88fe0b8a78dc22e88eca4bc357ca6 \ + --hash=sha256:2a1ef6a36fdbf71538142ed604ad19b82f67b05749512e47f247a6ddd06afdc7 \ + --hash=sha256:2a72fb9963cba4cd5793854fd12f4cfee731e86df140f59ff52a49b3552db241 \ + --hash=sha256:2acca2be4bb2f2147ada8cac612f8a98fc09f41c89f87add7256ad27332c2fda \ + --hash=sha256:2f583bd01bbfbff4eaee0868e6fc607efdfcc2b03c1c766b06a707abbc856187 \ + --hash=sha256:33809aebac276089b78db106ee692bdc9044710e26f24a9a2eaa35a0f9fa70ba \ + --hash=sha256:36fa178aacbc277bc6b62a2c3da95226520da4f4e9e206fdf076484363895d2c \ + --hash=sha256:4204e773b4b408062960e65468d5346bdfe139247ee5f1ca2a378983e11388a2 \ + --hash=sha256:4384a8f68ddb31a0b0c3deae88765f5868a1b9148939c3f4121233314ad5532c \ + --hash=sha256:456855f57b413f077dff513a5a28ed838dbbb15082ba00f80750377eed23d132 \ + --hash=sha256:49d5d58abd4b83fb8ce763be7794d09b2f50f10aa65c0f0c1696c677edeb7cbf \ + --hash=sha256:4ac6b4ce1e7283d715c4b729d8f9dab9627586dafce81d9eaa009dd7f25dd972 \ + --hash=sha256:4df8a199d9f6afc5ae9a65f8f95ee52cae389a8c6b20163762bde0426275b7db \ + --hash=sha256:500960cb3a0543a724a81ba859da816e8cf01b0e6aaeedf2c3775d12ee49cade \ + --hash=sha256:519ae0312616026bf4cedc0fe459e982734f3ca82ee8c7246c19b650b60a5ee4 \ + --hash=sha256:578114bc803a4c1ff9946d977c221e4376620a46cf78da267d946397dc9514a8 \ + --hash=sha256:5c5cbc703168d1b7a838668998308018a2718c2130595e8e190220238addc96f \ + --hash=sha256:6162f8d2dc27ba21027f261e4fa26f8bcb3cf9784b7f9499466a311ac284b5b9 \ + --hash=sha256:704d35ecc7e9c31d48926150afada60401c55efa3b46cd1ded5a01bdffaf1d48 \ + --hash=sha256:716b542728d4c742353448765aa7cdaa519a7b82f9564130e2b3f6766018c9ec \ + --hash=sha256:72282ad4892a9fb2da25defeac8c2e84352c108705c972db82ab121d15f14e6d \ + --hash=sha256:7233d65d9d651242a68801159763d09e9ec96e8a158dbf118dc090cd77a104c9 \ + --hash=sha256:732da3243e1b8d3eab8c6ae23ae6a58548849d2e4a4e03a1924c8ddf71a387cb \ + --hash=sha256:75b81e678d1c1ede0785c7f46690621e4c6e63ccd9192af1f0bd9d504bbb6bf4 \ + --hash=sha256:75f76ee558751746d6a38f89d60b6228fa174e5172d143886af0f85aa306fd89 \ + --hash=sha256:7ee8d5f878dccb6d499ba4d30d757111847b6849ae07acdd1205fffa1fc1253c \ + --hash=sha256:7f752826b5b8361193df55afcdf8ca6a57d0232653494ba473630a83ba50d8c9 \ + --hash=sha256:86b3d0033580bd6bbe07590152007275bd7af95f98eaa5bd36f3da219dcd93da \ + --hash=sha256:8d62da299c6ecb04df729e4b5c52dc0d53f4f8430b4492b93aa8de1f541c4aac \ + --hash=sha256:8e47755d8152c1ab5b55928ab422a76e2e7b22b5ed8e90a7d584268dd49e9c6b \ + --hash=sha256:9091632a25b8b87b9a605ec0e61f241c456e9248bfdcf7abdf344fdb169c81cf \ + --hash=sha256:936e5db01dd49476fa8f4383c259b8b1303d5dd5fb34c97de194560698cc2c5e \ + --hash=sha256:99b6add4c0b39a513d323d3b93bc173dac663c27b99860dd5bf491b240d26137 \ + --hash=sha256:9c865a7ee6f93783bd5d781af5a4c43dadc37053a5b42f7d18dc019f8c9d2bd1 \ + --hash=sha256:a425479ee40ff021f8216c9d07a6a3b54b31c8267c6e17aa88b70d7ebd0e5e5b \ + --hash=sha256:a4b2bf78342c40b3dc830880106f54328928ff03e357935ad26c7128bbd66ce8 \ + --hash=sha256:a6b1bb0827f56654b4437955555dc3aeeebeddc47c2d7ed575477f082622c49e \ + --hash=sha256:aaf09e615a0bf98d406657e0008e4a8701b11481840be7d31755dc9f97c44053 \ + --hash=sha256:b1f6f5938d63c6139860f044e2538baeee6f0b251a1816e7adb6cbce106a1f01 \ + --hash=sha256:b29eeb887aa931c2fcef5aa515d9d176d25006794610c264ddc114c053bf96fe \ + --hash=sha256:b3992a322a5617ded0a9f23fd06dbc1e4bd7cf39bc4ccf344b10f80af58beacd \ + --hash=sha256:b5b6079cc452a7c53dd378c6f881ac528246b3ac9aae0f8eef98498a75657805 \ + --hash=sha256:b60cc1a081f80a2105a59385b92d82278b15d80ebb3adb200542ae165cd7d183 \ + --hash=sha256:b926dd38db1519ed3043a4de50214e0d600d404099c3392f098a7f9d75029ff8 \ + --hash=sha256:bd87f48924f360e5d1c5f770d6155ce0e7d83f7b4e10c2f9ec001c73cf475c99 \ + --hash=sha256:bda1ee3e08252b8d41fa5537413ffdddd58fa73107171a126d3b9ff001b9b820 \ + --hash=sha256:be0ec334369316fa73448cc8c982c01e5d2a81c95969d58b8f6e272884df0074 \ + --hash=sha256:c6119dc90483a5cb50a1306adb8d52c66e447da88ea44f323e0ae1a5fcb14256 \ + --hash=sha256:c9803edf8e29bd825f43481f19c37f50d2b01899448273b3a7758441b512acf8 \ + --hash=sha256:c9bd22a2a639e26171068f8ebb5400ce2c1bc7d17959f60a3b753ae13c632975 \ + --hash=sha256:cbcc558401de90a746d02ef330c528f2e668c83350f045833543cd57ecead1ad \ + --hash=sha256:cf6204fe865da605285c34cf1172879d0314ff267b1c35ff59de7154f35fdc2e \ + --hash=sha256:d33dd21f572545649f90c38c227cc8631268ba25c460b5569abebdd0ec5974ca \ + --hash=sha256:d89ca19cdd0dd5f31606a9329e309d4fcbb3df860960acec32630297d61820df \ + --hash=sha256:d8f99b147ff3fcf6b3cc60cb0c39ea443884d5559a30b1481e92495f2310ff2b \ + --hash=sha256:d937653a696465677ed583124b94a4b2d79f5e30b2c46115a68e482c6a591c8a \ + --hash=sha256:dcca5d2bf65c6fb591fff92da03f94cd4f315972f97c21975398bd4bd046854a \ + --hash=sha256:ded1c35f15c9dea16ead9bffcde9bb5c7c031bff076355dc58dcb1cb436c4721 \ + --hash=sha256:e3e70c94a0c3841e6aa831edab1619ad5c511199be94d0c11ba75fe06efe107a \ + --hash=sha256:e56f8186d6210ac7ece503193ec84104da7ceb98f68ce18c07282fcc2452e76f \ + --hash=sha256:e7774b570e61cb998490c5235740d475413a1f6de823169b4cf94e2fe9e9f6b2 \ + --hash=sha256:e7c6ed0dc9d8e65f24f5824291550139fe6f37fac03788d4580da0d33bc00c97 \ + --hash=sha256:ec08be75bb268473677edb83ba71e7e74b43c008e4a7b1907c6d57e940bf34b6 \ + --hash=sha256:ecdf6bf5f578615f2e985a5e1f6572e23aa632c4bd1dc67f8f406d445ac115ed \ + --hash=sha256:ed25e1835c00a332cb10c683cd39da96a719ab1dfc08427d476bce41b92531fc \ + --hash=sha256:f4cb85f693044e0f71f394ff76c98ddc1bc0953e48c061725e540396d5c8a2e1 \ + --hash=sha256:f53aace168a2a10582e570b7736cc5bef12cae9cf21775e3eafac597e8551fbe \ + --hash=sha256:f651dd19363c632f4abe3480a7c87a9773be27cfe1341aef06e8759599454120 \ + --hash=sha256:fc4ad7f7ee1a13d9cb49d8198cd7d7e3aa93e425f371a68235f784e99741561f \ + --hash=sha256:fee427241c2d9fb7192b658190f9f5fd6dfe41e02f3c1489d2ec1e6a5ab1e04a +pydantic==2.6.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:72c6034df47f46ccdf81869fddb81aade68056003900a8724a4f160700016a2a \ + --hash=sha256:e07805c4c7f5c6826e33a1d4c9d47950d7eaf34868e2690f8594d2e30241f11f +pygments==2.17.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c \ + --hash=sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367 +pyjwt==2.8.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de \ + --hash=sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320 +python-benedict==0.33.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:50a69b601b34d4ad7b67fe94e3266ec05046bc547a4132fe43fd8fbd41aeefaa \ + --hash=sha256:662de43bffb4e127da2056447f8ddd7f6f5c89b72dd66d289cf9abd1cc2720c8 +python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3 \ + --hash=sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 +python-fsutil==0.13.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:302b0a1739b85151df6e6fddb1593a8fb9648c655fad0fac6c66c21bce900c13 \ + --hash=sha256:b4ad4c57c243ba46ee5aacebe58ce7a6f62ddeff20ea53e52afc420884b5e544 +python-magic==0.4.27 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:c1ba14b08e4a5f5c31a302b7721239695b2f0f058d125bd5ce1ee36b9d9d3c3b \ + --hash=sha256:c212960ad306f700aa0d01e5d7a325d20548ff97eb9920dcd29513174f0294d3 +python-slugify==8.0.4 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:276540b79961052b66b7d116620b36518847f52d5fd9e3a70164fc8c50faa6b8 \ + --hash=sha256:59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856 +pytz==2024.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812 \ + --hash=sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319 +rcssmin==1.1.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:271e3d2f8614a6d4637ed8fff3d90007f03e2a654cd9444f37d888797662ba72 \ + --hash=sha256:35da6a6999e9e2c5b0e691b42ed56cc479373e0ecab33ef5277dfecce625e44a \ + --hash=sha256:42576d95dfad53d77df2e68dfdec95b89b10fad320f241f1af3ca1438578254a \ + --hash=sha256:4f9400b4366d29f5f5446f58e78549afa8338e6a59740c73115e9f6ac413dc64 \ + --hash=sha256:705c9112d0ed54ea40aecf97e7fd29bdf0f1c46d278a32d8f957f31dde90778a \ + --hash=sha256:79421230dd67c37ec61ed9892813d2b839b68f2f48ef55c75f976e81701d60b4 \ + --hash=sha256:868215e1fd0e92a6122e0ed5973dfc7bb8330fe1e92274d05b2585253b38c0ca \ + --hash=sha256:8a26fec3c1e6b7a3765ccbaccc20fbb5c0ed3422cc381e01a2607f08d7621c44 \ + --hash=sha256:8fcfd10ae2a1c4ce231a33013f2539e07c3836bf17cc945cc25cc30bf8e68e45 \ + --hash=sha256:908fe072efd2432fb0975a61124609a8e05021367f6a3463d45f5e3e74c4fdda \ + --hash=sha256:914e589f40573035006913861ed2adc28fbe70082a8b6bff5be7ee430b7b5c2e \ + --hash=sha256:a04d58a2a21e9a089306d3f99c4b12bf5b656a79c198ef2321e80f8fd9afab06 \ + --hash=sha256:a417735d4023d47d048a6288c88dbceadd20abaaf65a11bb4fda1e8458057019 \ + --hash=sha256:c30f8bc839747b6da59274e0c6e4361915d66532e26448d589cb2b1846d7bf11 \ + --hash=sha256:c7278c1c25bb90d8e554df92cfb3b6a1195004ead50f764653d3093933ee0877 \ + --hash=sha256:c7728e3b546b1b6ea08cab721e8e21409dbcc11b881d0b87d10b0be8930af2a2 \ + --hash=sha256:cf74d7ea5e191f0f344b354eed8b7c83eeafbd9a97bec3a579c3d26edf11b005 \ + --hash=sha256:d0afc6e7b64ef30d6dcde88830ec1a237b9f16a39f920a8fd159928684ccf8db \ + --hash=sha256:d4e263fa9428704fd94c2cb565c7519ca1d225217943f71caffe6741ab5b9df1 \ + --hash=sha256:e923c105100ab70abde1c01d3196ddd6b07255e32073685542be4e3a60870c8e \ + --hash=sha256:ee386bec6d62f8c814d65c011d604a7c82d24aa3f718facd66e850eea8d6a5a1 \ + --hash=sha256:f15673e97f0a68b4c378c4d15b088fe96d60bc106d278c88829923118833c20f \ + --hash=sha256:f7a1fcdbafaacac0530da04edca4a44303baab430ea42e7d59aece4b3f3e9a51 +requests-cache==0.9.8 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:3a16021a4b5014b5b32af9c34f07cb911e99a69074d664dfd4fddb62a2997c21 \ + --hash=sha256:eaed4eb5fd5c392ba5e7cfa000d4ab96b1d32c1a1620f37aa558c43741ac362b +requests==2.31.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f \ + --hash=sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1 +rich-click==1.7.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:bc4163d4e2a3361e21c4d72d300eca6eb8896dfc978667923cb1d4937b8769a3 \ + --hash=sha256:bced1594c497dc007ab49508ff198bb437c576d01291c13a61658999066481f4 +rich==12.6.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:a4eb26484f2c82589bd9a17c73d32a010b1e29d89f1604cd9bf3a2097b81bb5e \ + --hash=sha256:ba3a3775974105c221d31141f2c116f4fd65c5ceb0698657a11e9f295ec93fd0 +rjsmin==1.2.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:113132a40ce7d03b2ced4fac215f0297338ed1c207394b739266efab7831988b \ + --hash=sha256:122aa52bcf7ad9f12728d309012d1308c6ecfe4d6b09ea867a110dcad7b7728c \ + --hash=sha256:145c6af8df42d8af102d0d39a6de2e5fa66aef9e38947cfb9d65377d1b9940b2 \ + --hash=sha256:1f982be8e011438777a94307279b40134a3935fc0f079312ee299725b8af5411 \ + --hash=sha256:3453ee6d5e7a2723ec45c2909e2382371783400e8d51952b692884c6d850a3d0 \ + --hash=sha256:35827844d2085bd59d34214dfba6f1fc42a215c455887437b07dbf9c73019cc1 \ + --hash=sha256:35f21046504544e2941e04190ce24161255479133751550e36ddb3f4af0ecdca \ + --hash=sha256:5d67ec09da46a492186e35cabca02a0d092eda5ef5b408a419b99ee4acf28d5c \ + --hash=sha256:747bc9d3bc8a220f40858e6aad50b2ae2eb7f69c924d4fa3803b81be1c1ddd02 \ + --hash=sha256:7dd58b5ed88233bc61dc80b0ed87b93a1786031d9977c70d335221ef1ac5581a \ + --hash=sha256:812af25c08d6a5ae98019a2e1b47ebb47f7469abd351670c353d619eaeae4064 \ + --hash=sha256:8a6710e358c661dcdcfd027e67de3afd72a6af4c88101dcf110de39e9bbded39 \ + --hash=sha256:8c340e251619c97571a5ade20f147f1f7e8664f66a2d6d7319e05e3ef6a4423c \ + --hash=sha256:99c074cd6a8302ff47118a9c3d086f89328dc8e5c4b105aa1f348fb85c765a30 \ + --hash=sha256:b8464629a18fe69f70677854c93a3707976024b226a0ce62707c618f923e1346 \ + --hash=sha256:bbd7a0abaa394afd951f5d4e05249d306fec1c9674bfee179787674dddd0bdb7 \ + --hash=sha256:bc5bc2f94e59bc81562c572b7f1bdd6bcec4f61168dc68a2993bad2d355b6e19 \ + --hash=sha256:bd1faedc425006d9e86b23837d164f01d105b7a8b66b767a9766d0014773db2a \ + --hash=sha256:ca90630b84fe94bb07739c3e3793e87d30c6ee450dde08653121f0d9153c8d0d \ + --hash=sha256:d332e44a1b21ad63401cc7eebc81157e3d982d5fb503bb4faaea5028068d71e9 \ + --hash=sha256:eb770aaf637919b0011c4eb87b9ac6317079fb9800eb17c90dda05fc9de4ebc3 \ + --hash=sha256:f0895b360dccf7e2d6af8762a52985e3fbaa56778de1bf6b20dbc96134253807 \ + --hash=sha256:f7cd33602ec0f393a0058e883284496bb4dbbdd34e0bbe23b594c8933ddf9b65 +setuptools==69.1.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:02fa291a0471b3a18b2b2481ed902af520c69e8ae0919c13da936542754b4c56 \ + --hash=sha256:5c0806c7d9af348e6dd3777b4f4dbb42c7ad85b190104837488eab9a7c945cf8 +six==1.16.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \ + --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254 +sniffio==1.3.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2 \ + --hash=sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc +soupsieve==2.5 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690 \ + --hash=sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7 +sqlparse==0.4.4 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:5430a4fe2ac7d0f93e66f1efc6e1338a41884b7ddf2a350cedd20ccc4d9d28f3 \ + --hash=sha256:d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c +strawberry-django-auth==0.376.5 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:2bdf0f43136facdd20dcdf1bd85053d7bb334a6271cee6759c17e13580ee32e7 \ + --hash=sha256:e2e57d44f7ccec4b6aa831aa4229bb9755c3b15da15c696cb8b7e8ec6617838c +strawberry-graphql-django==0.32.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:a209dcaa8164552d39010ca18a2d909d0191520c294e08b1124cfd797d43e1a0 \ + --hash=sha256:b59da6ebef3f6e3b9ec0407cc5f0990169363ee7ff529ab23034f7513d5611ca +strawberry-graphql==0.219.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:6b26994bcf092714dbd6def4c69a36c279fbdbfdc2390fb6294728dd076ba863 \ + --hash=sha256:b7a9b3115398402ec04fceb76b0dd3908dd90009cf20d344071be985c039aac7 +text-unidecode==1.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8 \ + --hash=sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93 +tomli==2.0.1 ; python_version >= "3.9" and python_version < "3.11" \ + --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \ + --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f +tqdm==4.66.2 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9 \ + --hash=sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531 +types-pytz==2024.1.0.20240203 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:9679eef0365db3af91ef7722c199dbb75ee5c1b67e3c4dd7bfbeb1b8a71c21a3 \ + --hash=sha256:c93751ee20dfc6e054a0148f8f5227b9a00b79c90a4d3c9f464711a73179c89e +types-pyyaml==6.0.12.12 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:334373d392fde0fdf95af5c3f1661885fa10c52167b14593eb856289e1855062 \ + --hash=sha256:c05bc6c158facb0676674b7f11fe3960db4f389718e19e62bd2b84d6205cfd24 +typing-extensions==4.10.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475 \ + --hash=sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb +tzdata==2024.1 ; python_version >= "3.9" and python_version < "3.13" and sys_platform == "win32" \ + --hash=sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd \ + --hash=sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252 +url-normalize==1.4.3 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:d23d3a070ac52a67b83a1c59a0e68f8608d1cd538783b401bc9de2c0fac999b2 \ + --hash=sha256:ec3c301f04e5bb676d333a7fa162fa977ad2ca04b7e652bfc9fac4e405728eed +urllib3==2.2.1 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d \ + --hash=sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19 +whitenoise==6.6.0 ; python_version >= "3.9" and python_version < "3.13" \ + --hash=sha256:8998f7370973447fac1e8ef6e8ded2c5209a7b1f67c1012866dbcd09681c3251 \ + --hash=sha256:b1f9db9bf67dc183484d760b99f4080185633136a273a03f6436034a41064146