Skip to content

Commit 4c94383

Browse files
authored
Merge pull request #60 from cicirello/bump-python
Bump Python to 3.12 in CI/CD workflows when running unit tests
2 parents 574ab82 + 4d6ee31 commit 4c94383

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: '3.10'
21+
python-version: '3.12'
2222

2323
- name: Run Python unit tests
2424
run: python3 -u -m unittest tests/tests.py

CHANGELOG.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased] - 2023-09-21
7+
## [Unreleased] - 2023-10-05
88

99
### Added
1010

@@ -16,17 +16,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
### Fixed
1818

19+
### CI/CD
20+
* Bump Python to 3.12 in CI/CD workflows when running unit tests.
21+
1922
### Dependencies
2023
* Bump cicirello/pyaction from 4.10.0 to 4.24.0, including bumping Python inside the Docker container to 3.11.
2124

2225

2326
## [1.0.6] - 2022-10-20
2427

2528
### Fixed
26-
* Replaced the usage of GitHub Action's deprecated `set-output` workflow command with the new `$GITHUB_OUTPUT`
27-
environment file.
28-
* Disabled pycache to protect against potential future bug. Currently no imports so no pycache created, but if future
29-
versions import local py modules, a pycache would be created during run in repo. Disabled creation of pycache now to avoid.
29+
* Replaced the usage of GitHub Action's deprecated `set-output` workflow command with the new `$GITHUB_OUTPUT` environment file.
30+
* Disabled pycache to protect against potential future bug. Currently no imports so no pycache created, but if future versions import local py modules, a pycache would be created during run in repo. Disabled creation of pycache now to avoid.
3031

3132
### Dependencies
3233
* Bump cicirello/pyaction from 4.2.0 to 4.10.0, including upgrading Python within the Docker container to 3.10.7

0 commit comments

Comments
 (0)