Skip to content

Commit c162679

Browse files
committed
Merge branch 'release/0.39.0' into releases
2 parents b572a5f + 339827e commit c162679

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.github/workflows/test.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,22 @@ name: Tests
22
on: [push, pull_request]
33
jobs:
44
test:
5-
runs-on: ubuntu-latest
65
strategy:
76
fail-fast: false
87
matrix:
9-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
8+
os: ['ubuntu-latest']
9+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1010
tox_env: ['sqlalchemy14']
1111
include:
12-
- python-version: '3.6'
12+
# Test against Python 3.6 and sqlalchemy 1.3
13+
- os: 'ubuntu-20.04'
14+
python-version: '3.6'
1315
tox_env: 'sqlalchemy13'
16+
# Test against Python 3.6 and sqlalchemy 1.4
17+
- os: 'ubuntu-20.04'
18+
python-version: '3.6'
19+
tox_env: 'sqlalchemy14'
20+
runs-on: ${{ matrix.os }}
1421
services:
1522
postgres:
1623
image: postgres:latest

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Here you can see the full list of changes between each SQLAlchemy-Utils release.
77
Unreleased
88
^^^^^^^^^^
99

10+
11+
0.39.0 (2022-12-23)
12+
^^^^^^^^^^^^^^^^^^^
13+
1014
- Support Python 3.11.
1115
- Add pre-commit hooks for uniform text checks, isort, flake8, and pyupgrade.
1216
- Fix a crash that occurs if the ``colour-science`` package is installed,

sqlalchemy_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@
101101
refresh_materialized_view
102102
)
103103

104-
__version__ = '0.38.3'
104+
__version__ = '0.39.0'

0 commit comments

Comments
 (0)