diff --git a/.github/workflows/pr-actions.yml b/.github/workflows/pr-actions.yml index 9713256d..56d628b8 100644 --- a/.github/workflows/pr-actions.yml +++ b/.github/workflows/pr-actions.yml @@ -7,7 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.8' ] + python-version: ['3.8'] os: ['ubuntu-latest'] name: Linting OS ${{ matrix.os }} - Python ${{ matrix.python-version }} steps: @@ -37,9 +37,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10' ] - # Can't use ubuntu-latest until Python 3.4 has Ubuntu 20.X install options in setup-python@v2 - os: ['ubuntu-18.04'] + python-version: [ '3.8', '3.9', '3.10', '3.11' ] + os: ['ubuntu-latest'] name: PyTests OS ${{ matrix.os }} - Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v2 @@ -70,7 +69,7 @@ jobs: strategy: matrix: - python-version: ['3.7'] + python-version: ['3.8'] os: ['ubuntu-latest'] env: diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 074325a7..04bde503 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Brewtils Changelog ================== +3.16.0 +------ +4/14/2023 + +Other Changes +^^^^^^^^^^^^^ +- Removed version pinning on the packaging and wrapt dependencies +- Support for python 3.11 + 3.15.0 ------ 8/31/2022 diff --git a/brewtils/__version__.py b/brewtils/__version__.py index afd0b0dd..057ff3de 100644 --- a/brewtils/__version__.py +++ b/brewtils/__version__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = "3.15.0" +__version__ = "3.16.0"