Skip to content

Commit

Permalink
Merge pull request #7 from stout-yeoman/sqlalchemy2
Browse files Browse the repository at this point in the history
Sqlalchemy2
  • Loading branch information
pjwerneck authored Dec 8, 2023
2 parents 503e227 + 8d179e1 commit e304d7b
Show file tree
Hide file tree
Showing 10 changed files with 661 additions and 548 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,6 @@ ENV/

# Rope project settings
.ropeproject

# VS Code
.vscode
504 changes: 301 additions & 203 deletions poetry.lock

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ keywords = ['sqlachemy', 'sql', 'rql', 'querying', 'httpapi']
[tool.poetry.dependencies]
python = "^3.8"
pyrql = "^0.6.0"
sqlalchemy = "<2.0"
sqlalchemy = "^2.0"

[tool.poetry.dev-dependencies]
pytest = ">=4.4.1"
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
black = "^23.11.0"
pytest = "^7.4.3"

[build-system]
requires = ["poetry>=0.12"]
Expand Down
6 changes: 3 additions & 3 deletions rqlalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# -*- coding: utf-8 -*-


from rqlalchemy.query import RQLQueryError
from rqlalchemy.query import RQLQueryMixIn
from rqlalchemy.query import RQLSelect
from rqlalchemy.query import RQLSelectError

__title__ = "rqlalchemy"
__version__ = "0.4.5"
__author__ = "Pedro Werneck"
__license__ = "MIT"


__all__ = ["RQLQueryMixIn", "RQLQueryError"]
__all__ = ["RQLSelect", "RQLSelectError"]
Loading

0 comments on commit e304d7b

Please sign in to comment.