Skip to content

Commit 8eb7730

Browse files
authored
Merge branch 'master' into patch-1
2 parents 292661d + 79bd169 commit 8eb7730

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/pre-commit_hooks.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
- name: checkout alembic_utils
1111
uses: actions/checkout@v2
1212

13-
- name: set up python 3.8
14-
uses: actions/setup-python@v1
13+
- name: set up python 3.10
14+
uses: actions/setup-python@v4
1515
with:
16-
python-version: 3.8
16+
python-version: '3.10'
1717

1818
- name: install pre-commit
1919
run: |

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ['3.6', '3.7', '3.8', '3.9']
11-
postgres-version: ['10', '11', '12', '13']
10+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
11+
postgres-version: ['11', '12', '13', '14', '15']
1212

1313
services:
1414

@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v1
2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: actions/setup-python@v1
29+
uses: actions/setup-python@v4
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repos:
2828
rev: 22.6.0
2929
hooks:
3030
- id: black
31-
language_version: python3.8
31+
language_version: python3.10
3232

3333

3434
- repo: https://github.com/pre-commit/mirrors-mypy

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ def get_version(package):
3030
author_email="[email protected]",
3131
license="MIT",
3232
description="A sqlalchemy/alembic extension for migrating procedures and views ",
33-
python_requires=">=3.6",
33+
python_requires=">=3.7",
3434
packages=find_packages("src"),
3535
package_dir={"": "src"},
3636
install_requires=[
3737
"alembic>=1.5.7",
3838
"flupy",
39-
"sqlalchemy>=1.3.0",
4039
"parse>=1.8.4",
40+
"sqlalchemy>=1.3.0,<2",
4141
"typing_extensions",
4242
],
4343
extras_require={
@@ -55,6 +55,7 @@ def get_version(package):
5555
"Programming Language :: Python :: 3.8",
5656
"Programming Language :: Python :: 3.9",
5757
"Programming Language :: Python :: 3.10",
58+
"Programming Language :: Python :: 3.11",
5859
"Programming Language :: SQL",
5960
],
6061
)

src/alembic_utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.8"
1+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)