From c01168fa4dcefb3d740088a215b23cf007b3e218 Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Wed, 29 May 2024 19:22:06 +0300 Subject: [PATCH 1/4] Bump tox-docker to v5.0.0 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 59a41b59..2b4b42d1 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ envlist = flake8 apicheck pydocstyle -requires = tox-docker>=2.0 +requires = tox-docker>=5.0.0 [testenv] deps= From d85de3c1989f7e50dc4a2ee8ee0e463621f91c5f Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Wed, 29 May 2024 19:28:35 +0300 Subject: [PATCH 2/4] Bump docker to v7.1.0 --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 2b4b42d1..087c6e4d 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,9 @@ envlist = flake8 apicheck pydocstyle -requires = tox-docker>=5.0.0 +requires = + tox-docker>=5.0.0 + docker>=7.1.0 [testenv] deps= From 86cf65ff5ff9261f417e272193665819251b2603 Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Wed, 29 May 2024 19:33:37 +0300 Subject: [PATCH 3/4] Bump requests to v2.32.2 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 087c6e4d..1d6652e9 100644 --- a/tox.ini +++ b/tox.ini @@ -8,6 +8,7 @@ envlist = requires = tox-docker>=5.0.0 docker>=7.1.0 + requests>=2.32.2 [testenv] deps= From 7f406da55e2a1632b55552b85742b5b623e666eb Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Wed, 29 May 2024 19:54:37 +0300 Subject: [PATCH 4/4] Bump in .github/workflows/ci.yaml --- .github/workflows/ci.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a85500d9..26d693e7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,11 +13,11 @@ jobs: uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} id: python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pip install --upgrade pip setuptools wheel tox tox-docker + run: pip install --upgrade pip setuptools wheel tox tox-docker>=5.0.0 docker>=7.1.0 requests>=2.32.2 - name: Run unittest run: tox -v -e ${{ matrix.python-version }}-unit -- -v #################### Integration tests #################### @@ -34,11 +34,11 @@ jobs: run: docker build -t rabbitmq:tls . - name: Set up Python ${{ matrix.python-version }} id: python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pip install --upgrade pip setuptools wheel tox tox-docker + run: pip install --upgrade pip setuptools wheel tox tox-docker>=5.0.0 docker>=7.1.0 requests>=2.32.2 - name: Run integration tests run: tox -v -e ${{ matrix.python-version }}-integration-rabbitmq -- -v - name: Run integration tests with speedups enabled @@ -59,11 +59,11 @@ jobs: uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} id: python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pip install --upgrade pip setuptools wheel tox tox-docker + run: pip install --upgrade pip setuptools wheel tox tox-docker>=5.0.0 docker>=7.1.0 requests>=2.32.2 - name: Run flake8 run: tox -v -e py-flake8 -- -v - name: Run pydocstyle