Skip to content

Commit eb4e061

Browse files
committed
feat(readme): notes for SQLAlchemy 2
1 parent 1fcfbb6 commit eb4e061

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ main.dSYM/
1212
.DS_Store
1313

1414
.idea
15-
sqlitecloud.egg-info
15+
**/*.egg-info
16+
**/dist
1617

1718
playground.ipynb
1819

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ repos:
66
rev: v3.2.0
77
hooks:
88
- id: trailing-whitespace
9+
exclude: '\.md$'
910
- id: end-of-file-fixer
1011
- id: detect-private-key
1112
- id: check-merge-conflict

sqlalchemy-sqlitecloud/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,16 @@ This package enables SQLAlchemy to work seamlessly with SQLite Cloud. The dialec
1111

1212
This dialect is in its early stages and is compatible with Python >= 3.6.
1313

14-
**Note:** It has been tested only `SQLAlchemy 1.4`.
14+
It has been tested on both `SQLAlchemy 2.0` and `SQLAlchemy 1.4`.
1515

1616
The dialect has undergone testing against the SQLAlchemy `test_suite`, as outlined in the [official documentation](https://github.com/sqlalchemy/sqlalchemy/blob/rel_1_4_53/README.dialects.rst).
1717

18-
You can track the progress of the remaining test issues [in this issue](https://github.com/sqlitecloud/sqlitecloud-py/issues/21#issuecomment-2305162632).
19-
20-
_The same tests failed and passed on both Python 3.6 and Python 3.11._
18+
You can track the progress of the remaining test issues [in this issue](https://github.com/sqlitecloud/sqlitecloud-py/issues/32).
19+
_The same tests failed and passed on Python 3.6, 3.7 and 3.11._
2120

2221
## References
2322

24-
- [SQLAlchemy Documentation](https://docs.sqlalchemy.org/en/14/index.html)
23+
- [SQLAlchemy Documentation](https://docs.sqlalchemy.org/en/20/)
2524
- [SQLAlchemy Official Website](https://www.sqlalchemy.org/)
2625

2726
## Installation and Usage

sqlalchemy-sqlitecloud/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
setup(
88
name="sqlalchemy-sqlitecloud",
9-
version="0.1.0",
9+
version="0.1.2",
1010
author="sqlitecloud.io",
1111
description="SQLAlchemy Dialect for SQLite Cloud.",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
url="https://github.com/sqlitecloud/sqlitecloud-py",
1515
packages=find_packages(),
1616
install_requires=[
17-
"sqlitecloud",
17+
"sqlitecloud >= 0.0.83",
1818
],
1919
keywords="SQLAlchemy SQLite Cloud",
2020
classifiers=[

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
placeholder
1+
placeholder for https://github.com/sqlitecloud/sqlitecloud-py/blob/main/README.md

0 commit comments

Comments
 (0)