Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install CI/CD tools
run: |
python -m pip install --upgrade pip
python -m pip install continuous-delivery-scripts
python -m pip install setuptools continuous-delivery-scripts
python -m pip list
- name: Assert news
run: cd-assert-news -b ${CI_ACTION_REF_NAME}
Expand Down Expand Up @@ -123,6 +123,7 @@ jobs:
# location for development dependencies.
run: |
python -m pip install -r dev-requirements.txt
python -m pip install setuptools
python -m pip list
- name: Generate SPDX documents
run: |
Expand All @@ -146,7 +147,7 @@ jobs:
- name: Install tools
run: |
python -m pip install --upgrade pip
python -m pip install detect-secrets==1.0.3
python -m pip install setuptools detect-secrets[gibberish]==1.5.0
python -m pip list
- uses: actions/checkout@v5
with:
Expand Down Expand Up @@ -246,7 +247,7 @@ jobs:
# is superfluous and eliminating pipenv in CI reduces overhead and reduce complexity, while retaining a single
# location for development dependencies.
run: |
pip install --upgrade flake8
pip install --upgrade flake8 setuptools
pip install -r dev-requirements.txt
pip list
- if: ${{ startsWith(matrix.python-version, '3.10') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install CI/CD tools
run: |
python -m pip install --upgrade pip
python -m pip install continuous-delivery-scripts
python -m pip install setuptools continuous-delivery-scripts
python -m pip list
- name: Dependabot metadata
id: dependabot-metadata
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- name: Install pipenv
shell: bash
run: |
python -m pip install --upgrade pipenv
python -m pip install --upgrade pipenv setuptools
pipenv install --dev
- name: Type check with mypy
run: |
pipenv run mypy ./continuous_delivery_scripts
pipenv run mypy ./continuous_delivery_scripts
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Pipfile.lock

# PyCharm
.idea/
.idea

# macOS
.DS_Store
Expand Down
Loading
Loading