sqlite-export-for-ynab 2.7.1__tar.gz → 2.7.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sqlite_export_for_ynab-2.7.1/sqlite_export_for_ynab.egg-info → sqlite_export_for_ynab-2.7.2}/PKG-INFO +3 -3
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/README.md +1 -1
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/setup.cfg +2 -2
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2/sqlite_export_for_ynab.egg-info}/PKG-INFO +3 -3
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab.egg-info/requires.txt +1 -1
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/LICENSE +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/pyproject.toml +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/setup.py +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/__init__.py +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/__main__.py +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/_main.py +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/ddl/__init__.py +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/ddl/create-relations.sql +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/ddl/drop-relations.sql +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/py.typed +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab.egg-info/SOURCES.txt +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab.egg-info/dependency_links.txt +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab.egg-info/entry_points.txt +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab.egg-info/top_level.txt +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/testing/__init__.py +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/testing/fixtures.py +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/tests/__init__.py +0 -0
- {sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/tests/_main_test.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sqlite_export_for_ynab
|
|
3
|
-
Version: 2.7.
|
|
3
|
+
Version: 2.7.2
|
|
4
4
|
Summary: SQLite Export for YNAB - Export YNAB Data to SQLite
|
|
5
5
|
Home-page: https://github.com/mxr/sqlite-export-for-ynab
|
|
6
6
|
Author: Max R
|
|
@@ -19,7 +19,7 @@ Requires-Dist: aiopathlib
|
|
|
19
19
|
Requires-Dist: aiosqlite
|
|
20
20
|
Requires-Dist: asyncio-for-ynab
|
|
21
21
|
Requires-Dist: fasteners
|
|
22
|
-
Requires-Dist: rich>=
|
|
22
|
+
Requires-Dist: rich>=10
|
|
23
23
|
Requires-Dist: tenacity
|
|
24
24
|
Provides-Extra: dev
|
|
25
25
|
Requires-Dist: covdefaults>=2.1.0; extra == "dev"
|
|
@@ -235,7 +235,7 @@ FROM (
|
|
|
235
235
|
WHERE
|
|
236
236
|
category_name = 'Apps'
|
|
237
237
|
AND SUBSTR(date_next, 1, 7) < SUBSTR(DATE('now', '+1 year'), 1, 7)
|
|
238
|
-
)
|
|
238
|
+
) AS spend
|
|
239
239
|
;
|
|
240
240
|
```
|
|
241
241
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = sqlite_export_for_ynab
|
|
3
|
-
version = 2.7.
|
|
3
|
+
version = 2.7.2
|
|
4
4
|
description = SQLite Export for YNAB - Export YNAB Data to SQLite
|
|
5
5
|
long_description = file: README.md
|
|
6
6
|
long_description_content_type = text/markdown
|
|
@@ -24,7 +24,7 @@ install_requires =
|
|
|
24
24
|
aiosqlite
|
|
25
25
|
asyncio-for-ynab
|
|
26
26
|
fasteners
|
|
27
|
-
rich>=
|
|
27
|
+
rich>=10
|
|
28
28
|
tenacity
|
|
29
29
|
python_requires = >=3.12
|
|
30
30
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sqlite_export_for_ynab
|
|
3
|
-
Version: 2.7.
|
|
3
|
+
Version: 2.7.2
|
|
4
4
|
Summary: SQLite Export for YNAB - Export YNAB Data to SQLite
|
|
5
5
|
Home-page: https://github.com/mxr/sqlite-export-for-ynab
|
|
6
6
|
Author: Max R
|
|
@@ -19,7 +19,7 @@ Requires-Dist: aiopathlib
|
|
|
19
19
|
Requires-Dist: aiosqlite
|
|
20
20
|
Requires-Dist: asyncio-for-ynab
|
|
21
21
|
Requires-Dist: fasteners
|
|
22
|
-
Requires-Dist: rich>=
|
|
22
|
+
Requires-Dist: rich>=10
|
|
23
23
|
Requires-Dist: tenacity
|
|
24
24
|
Provides-Extra: dev
|
|
25
25
|
Requires-Dist: covdefaults>=2.1.0; extra == "dev"
|
|
@@ -235,7 +235,7 @@ FROM (
|
|
|
235
235
|
WHERE
|
|
236
236
|
category_name = 'Apps'
|
|
237
237
|
AND SUBSTR(date_next, 1, 7) < SUBSTR(DATE('now', '+1 year'), 1, 7)
|
|
238
|
-
)
|
|
238
|
+
) AS spend
|
|
239
239
|
;
|
|
240
240
|
```
|
|
241
241
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/__init__.py
RENAMED
|
File without changes
|
{sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/__main__.py
RENAMED
|
File without changes
|
{sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/_main.py
RENAMED
|
File without changes
|
{sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/ddl/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sqlite_export_for_ynab-2.7.1 → sqlite_export_for_ynab-2.7.2}/sqlite_export_for_ynab/py.typed
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|