diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index e6ee6fc..9c0bd44 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -9,4 +9,4 @@ jobs: steps: - uses: actions/checkout@v2 - name: Run containers - run: docker-compose -f docker/docker-compose.yaml up --abort-on-container-exit + run: docker compose -f docker/docker-compose.yaml up --abort-on-container-exit diff --git a/Makefile b/Makefile index aae1a75..f488cdb 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ clean-build: ## remove build artifacts rm -fr dist/ rm -fr .eggs/ find . -name '*.egg-info' -exec rm -fr {} + - find . -name '*.egg' -exec rm -f {} + + find . -name '*.egg' -exec rm -rf {} + clean-pyc: ## remove Python file artifacts @echo cleaning pyc file artifacts ... diff --git a/requirements/dev.txt b/requirements/dev.txt index ed5cada..49214b0 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -16,4 +16,5 @@ setuptools>=70.0.0 # not directly required, pinned by Snyk to avoid a vulnerabil certifi>=2023.7.22 # not directly required, pinned by Snyk to avoid a vulnerability pygments>=2.15.0 # not directly required, pinned by Snyk to avoid a vulnerability requests>=2.32.0 # not directly required, pinned by Snyk to avoid a vulnerability -zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability \ No newline at end of file +zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability +urllib3>=2.6.0 # not directly required, pinned by Snyk to avoid a vulnerability \ No newline at end of file