From 7899e5e65ec8001d7ecf0b5cbef6d59cfaa0ca60 Mon Sep 17 00:00:00 2001 From: Mohamed Feddad Date: Sun, 8 Sep 2024 12:33:12 +0400 Subject: [PATCH 1/2] chore: remove deprecated dash options --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index b9a042e..cc982a6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -description-file = README.md +description_file = README.md [tool:pytest] addopts = --verbose --cov='./flask_minify' From 23dce56486fc8727bc1df058ed795e2524c0931f Mon Sep 17 00:00:00 2001 From: Mohamed Feddad Date: Sun, 8 Sep 2024 12:34:16 +0400 Subject: [PATCH 2/2] chore: update gh workflow actions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42d66ed..043eca9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,12 @@ jobs: python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: go-version: '>=1.18.1' - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'pip'