Skip to content

Commit

Permalink
Use Python 3.9 in all CI/CD workflows (#196)
Browse files Browse the repository at this point in the history
# Description
Use Python 3.9 throughout all CI/CD workflows.

Fixes #193 

## Type of change
- [ ] Bug fix and code cleanup
- [ ] New feature
- [ ] Documentation update
- [x] Testing


## Checklist for the reviewer
This checklist should be used as a help for the reviewer.

- [ ] Is the change limited to one issue?
- [ ] Does this PR close the issue?
- [ ] Is the code easy to read and understand?
- [ ] Do all new feature have an accompanying new test?
- [ ] Has the documentation been updated as necessary?
- [ ] Is the code properly tested?
  • Loading branch information
CasperWA authored Mar 11, 2024
1 parent f04c50f commit 2b3f4ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd_updated_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
update_docs: true
update_python_api_ref: true
update_docs_landing_page: true
python_version: "3.7"
python_version: "3.9"
doc_extras: "[docs]"
secrets:
PAT: ${{ secrets.RELEASE_PAT }}
2 changes: 1 addition & 1 deletion .github/workflows/ci_check_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
git_username: "TEAM 4.0[bot]"
git_email: "Team4.0@SINTEF.no"
permanent_dependencies_branch: "ci/dependency-updates"
python_version: "3.7"
python_version: "3.9"
install_extras: "[dev]"
pr_labels: "CI/CD,skip_changelog"
secrets:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pr_labels: "CI/CD,skip_changelog"
extra_to_dos: "- [ ] Make sure that the PR is **squash** merged, with a sensible commit message."
update_pre-commit: true
python_version: "3.7"
python_version: "3.9"
install_extras: "[pre-commit]"
skip_pre-commit_hooks: "pylint,pylint-tests"
secrets:
Expand Down

0 comments on commit 2b3f4ce

Please sign in to comment.