Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to SQLAlchemy 2.0.30 #20

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,5 @@ dmypy.json
.pyre/

.vscode/
.idea/

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You will need the following softwares to run, build and test the dialect. Everyt

1. Python 3.x or higher
2. pip 22 or higher
3. sqlalchemy>=1.3.24,<=1.4.44
3. sqlalchemy>=2.0.30
4. vertica-python 1.1.1 or higher

### Vertica-Python
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You will need the following softwares to run, build and test the dialect. Everyt

1. Python 3.x or higher
2. pip 22 or higher
3. sqlalchemy>=1.3.24,<=1.4.44
3. sqlalchemy>=2.0.30
4. vertica-python 1.1.1 or higher

#####################################
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
),
install_requires=(
'six >= 1.10.0',
'sqlalchemy>=1.3.24,<=1.4.44',
'sqlalchemy>=2.0.30',
'vertica-python>=1.1.1'
),
extras_require={
Expand Down
15 changes: 15 additions & 0 deletions vertica_sqlalchemy_dialect/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# vertica_sqlalchemy_dialect/__init__.py
# Copyright (C) 2005-2022 the SQLAlchemy authors and contributors
# <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
# the MIT License: https://www.opensource.org/licenses/mit-license.php

from vertica_sqlalchemy_dialect.base import LONGVARCHAR, LONGVARBINARY, max_long_varchar_length

__all__ = (
"LONGVARCHAR",
"LONGVARBINARY",
"max_long_varchar_length"
)

Loading
Loading