Skip to content

Commit

Permalink
Merge branch 'release/0.39.0' into releases
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee committed Dec 23, 2022
2 parents b572a5f + 339827e commit c162679
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,22 @@ name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
os: ['ubuntu-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
tox_env: ['sqlalchemy14']
include:
- python-version: '3.6'
# Test against Python 3.6 and sqlalchemy 1.3
- os: 'ubuntu-20.04'
python-version: '3.6'
tox_env: 'sqlalchemy13'
# Test against Python 3.6 and sqlalchemy 1.4
- os: 'ubuntu-20.04'
python-version: '3.6'
tox_env: 'sqlalchemy14'
runs-on: ${{ matrix.os }}
services:
postgres:
image: postgres:latest
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Here you can see the full list of changes between each SQLAlchemy-Utils release.
Unreleased
^^^^^^^^^^


0.39.0 (2022-12-23)
^^^^^^^^^^^^^^^^^^^

- Support Python 3.11.
- Add pre-commit hooks for uniform text checks, isort, flake8, and pyupgrade.
- Fix a crash that occurs if the ``colour-science`` package is installed,
Expand Down
2 changes: 1 addition & 1 deletion sqlalchemy_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,4 @@
refresh_materialized_view
)

__version__ = '0.38.3'
__version__ = '0.39.0'

0 comments on commit c162679

Please sign in to comment.