Skip to content

Commit

Permalink
update github actions to sync with cirrus-geo
Browse files Browse the repository at this point in the history
  • Loading branch information
ircwaves committed May 14, 2024
1 parent d9e607c commit 5de070c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -39,7 +39,9 @@ jobs:
- name: Test with pytest
run: pytest --cov=cirrus --cov-report=xml
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: true
verbose: true
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Support for `cirrus-geo>=0.15.0` with WorkflowEventManager changes around
ProcessPayloads. ([#12])
- Added support for Python 3.12

### Changed

Expand All @@ -19,6 +20,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
`cirrus-mgmt` is now pinned to use the stable releases of cirrus-geo
(`<1.0`). As described, in that PR, the management commands for releases
`>=1.0` will not use this separate package.
- Updated Github Actions per nodejs16 deprecation notice in workflows.

### Removed

- Python support for python 3.8.

## [v0.1.1] - 2024-02-16

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
license="Apache-2.0",
include_package_data=True,
Expand Down

0 comments on commit 5de070c

Please sign in to comment.