Skip to content

Commit

Permalink
Merge pull request #54 from adtzlr/remove-py37
Browse files Browse the repository at this point in the history
Remove Tests on Python 3.7
  • Loading branch information
adtzlr authored Aug 12, 2023
2 parents 440347e + 59f8af8 commit 43c9edc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/setup-python@v4
with:
Expand All @@ -27,4 +27,4 @@ jobs:
tox -- --cov trusspy --cov-report xml --cov-report term
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: ${{ matrix.python-version == '3.10' }}
if: ${{ matrix.python-version == '3.11' }}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. The format

## [Unreleased]

## [3.0.1] - 2023-08-12

### Removed
- Don't test against and list explicit support for Python 3.7 (end of life).

## [3.0.0] - 2023-05-08

### Changed
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion src/trusspy/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.1.0-dev"
__version__ = "3.0.1"

0 comments on commit 43c9edc

Please sign in to comment.