diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4d6d5fc..fa2e3d2 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -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: @@ -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' }} \ No newline at end of file + if: ${{ matrix.python-version == '3.11' }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 42b7a94..9e86ab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index f9c7fe8..c3e92d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", diff --git a/src/trusspy/__about__.py b/src/trusspy/__about__.py index 8035f2f..0552768 100644 --- a/src/trusspy/__about__.py +++ b/src/trusspy/__about__.py @@ -1 +1 @@ -__version__ = "3.1.0-dev" +__version__ = "3.0.1"