Skip to content

Commit

Permalink
Update python versions for testing matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
nzlosh committed Oct 10, 2024
1 parent f7e1f2b commit 7d9498b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,16 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Repository Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [2.3.0] Unreleased
### Added
- Proof of concept for enquiry support.
- Add Python 3.12 to test matrix.

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

## [2.2.0] 2021-11-27
### Added
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ setup:
pip install -r requirements-test.txt
pip install -r requirements-build.txt

.PHONY: python_package
python_package:
.PHONY: build_python_package
build_python_package:
echo "Build python package"
python -m build

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

0 comments on commit 7d9498b

Please sign in to comment.