Skip to content

Commit 7d9498b

Browse files
committed
Update python versions for testing matrix
1 parent f7e1f2b commit 7d9498b

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,16 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version:
19-
- "3.7"
20-
- "3.8"
2119
- "3.9"
2220
- "3.10"
2321
- "3.11"
22+
- "3.12"
2423
steps:
2524
- name: Repository Checkout
26-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2726

2827
- name: "Set up Python ${{ matrix.python-version }}"
29-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v5
3029
with:
3130
python-version: "${{ matrix.python-version }}"
3231

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
## [2.3.0] Unreleased
88
### Added
99
- Proof of concept for enquiry support.
10+
- Add Python 3.12 to test matrix.
1011

1112
### Changed
1213
- Restructured source layout for pypi packaging.
@@ -17,6 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1718
### Removed
1819
- Removed `check_latest_version` function.
1920
- Removed CircleCI from project in favour of using Github Actions.
21+
- Remove Python 3.7 & 3.8 from test matrix.
2022

2123
## [2.2.0] 2021-11-27
2224
### Added

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ setup:
2121
pip install -r requirements-test.txt
2222
pip install -r requirements-build.txt
2323

24-
.PHONY: python_package
25-
python_package:
24+
.PHONY: build_python_package
25+
build_python_package:
2626
echo "Build python package"
2727
python -m build
2828

@@ -68,6 +68,6 @@ help:
6868
echo "format_test: Run black formatting check over source files."
6969
echo "auto_format: Apply black formatting over source files."
7070
echo "setup: Install errbot and dependencies into virtual environment."
71-
echo "python_package: Build a python package of err-stackstorm."
71+
echo "build_python_package: Build a python package of err-stackstorm."
7272
echo "publish_pypi: Upload python package in dist/ to pypi."
7373
echo "documentation: Trigger build on the readthedocs site."

0 commit comments

Comments
 (0)