diff --git a/.github/workflows/build-pipeline.yml b/.github/workflows/build-pipeline.yml index 5cb9a225e..1f0d9f86d 100644 --- a/.github/workflows/build-pipeline.yml +++ b/.github/workflows/build-pipeline.yml @@ -23,7 +23,7 @@ jobs: run: | python -m pip install --upgrade pip pip install coverage - if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; else pip install . fi + if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; else pip install .; fi - name: Run Tests run: | pytest tests/ diff --git a/{{cookiecutter.project_slug}}/requirements_dev.txt b/{{cookiecutter.project_slug}}/requirements_dev.txt index ffa1fb111..d0e834b74 100644 --- a/{{cookiecutter.project_slug}}/requirements_dev.txt +++ b/{{cookiecutter.project_slug}}/requirements_dev.txt @@ -5,7 +5,7 @@ watchdog==0.9.0 tox==3.14.0 coverage==4.5.4 Sphinx==1.8.5 -twine==1.14.0 +twine==5.0.0 ruff==0.3.5 {% if cookiecutter.command_line_interface|lower == 'click' -%} Click==7.1.2{% endif %}