File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,16 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
python-version :
19
- - " 3.7"
20
- - " 3.8"
21
19
- " 3.9"
22
20
- " 3.10"
23
21
- " 3.11"
22
+ - " 3.12"
24
23
steps :
25
24
- name : Repository Checkout
26
- uses : actions/checkout@v2
25
+ uses : actions/checkout@v4
27
26
28
27
- name : " Set up Python ${{ matrix.python-version }}"
29
- uses : actions/setup-python@v2
28
+ uses : actions/setup-python@v5
30
29
with :
31
30
python-version : " ${{ matrix.python-version }}"
32
31
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
## [ 2.3.0] Unreleased
8
8
### Added
9
9
- Proof of concept for enquiry support.
10
+ - Add Python 3.12 to test matrix.
10
11
11
12
### Changed
12
13
- Restructured source layout for pypi packaging.
@@ -17,6 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
17
18
### Removed
18
19
- Removed ` check_latest_version ` function.
19
20
- Removed CircleCI from project in favour of using Github Actions.
21
+ - Remove Python 3.7 & 3.8 from test matrix.
20
22
21
23
## [ 2.2.0] 2021-11-27
22
24
### Added
Original file line number Diff line number Diff line change 21
21
pip install -r requirements-test.txt
22
22
pip install -r requirements-build.txt
23
23
24
- .PHONY : python_package
25
- python_package :
24
+ .PHONY : build_python_package
25
+ build_python_package :
26
26
echo " Build python package"
27
27
python -m build
28
28
68
68
echo " format_test: Run black formatting check over source files."
69
69
echo " auto_format: Apply black formatting over source files."
70
70
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."
72
72
echo " publish_pypi: Upload python package in dist/ to pypi."
73
73
echo " documentation: Trigger build on the readthedocs site."
You can’t perform that action at this time.
0 commit comments