-
Notifications
You must be signed in to change notification settings - Fork 80
Support SQLAlchemy 2.0 #91
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
Open
phillipuniverse
wants to merge
22
commits into
juliotrigo:master
Choose a base branch
from
phillipuniverse:sqlalchemy-2.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
220d092
fix(models): Check for None entity when getting query models
javimudi 66e3941
sqlalchemy 1.4 infer tables also from select object (sqlalchemy 2.0 s…
bodik 7e0854a
sqlalchemy 1.4 infer tables also from select object (fix auto_join)
bodik c94c862
Conditional access of _legacy_setup_joins property
phillipuniverse db58232
Gitignore venv and local dev tool directories
phillipuniverse 407f7c3
Tox with SQLAlchemy 2
phillipuniverse dc7786e
Add all compatible Python versions to .python-version and remove from…
phillipuniverse b45a30c
Move tox to default dev dependencies
phillipuniverse 7fcb4c1
SQLAlchemy 2 compatibility with drop_all
phillipuniverse a951949
Avoid building wheels on later Python versions with mysql and postgre…
phillipuniverse 389b17c
Configure Tox for SQLAlchemy 2 and Python 3.11, 3.12
phillipuniverse debf911
SQLAlchemy 2 compatibility for hybrid properties and methods
phillipuniverse a0dea62
Move all Tox env configuration and version compatibility into tox.ini
phillipuniverse d7d2246
Fix tox expression for sqlalchemy-utils dep
phillipuniverse 526375f
SQLAlchemy 2 swapped order of columns in SELECT statement
phillipuniverse 39f54fc
Use tox version from setup.py
phillipuniverse bcd4848
Use Tox 3-compatible version of tox-gh-actions
phillipuniverse 73bed5e
Fix flake8
phillipuniverse 9fd5f99
Add Python 3.11 and 3.12 to CI
phillipuniverse 1865f0d
Minimum SQLAlchemy-Utils 0.38.3
phillipuniverse bef9e82
Merge branch 'master' into sqlalchemy-2.x
phillipuniverse 402e27d
Uncomment tests, first attempt at adding entities for SA 2
phillipuniverse File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,8 @@ __pycache__/ | |
.coverage.* | ||
.cache | ||
.tox | ||
|
||
venv | ||
.venv | ||
.idea | ||
build | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
3.7.17 | ||
3.8.18 | ||
3.9.18 | ||
3.10.13 | ||
3.11.7 | ||
3.12.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://sebastiandedeyne.com/setting-up-a-global-gitignore-file/