tracktolib 0.61.0__tar.gz → 0.61.1__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.
- {tracktolib-0.61.0 → tracktolib-0.61.1}/PKG-INFO +1 -1
- {tracktolib-0.61.0 → tracktolib-0.61.1}/pyproject.toml +2 -2
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/pg/query.py +1 -1
- {tracktolib-0.61.0 → tracktolib-0.61.1}/LICENSE +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/README.md +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/__init__.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/api.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/http_utils.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/logs.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/pg/__init__.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/pg/utils.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/pg_sync.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/pg_utils.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/s3/__init__.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/s3/minio.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/s3/s3.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/tests.py +0 -0
- {tracktolib-0.61.0 → tracktolib-0.61.1}/tracktolib/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "tracktolib"
|
|
3
|
-
version = "0.61.
|
|
3
|
+
version = "0.61.1"
|
|
4
4
|
description = "Utility library for python"
|
|
5
5
|
authors = ["Julien Brayere <julien.brayere@tracktor.fr>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -83,7 +83,7 @@ pythonPlatform = "Linux"
|
|
|
83
83
|
|
|
84
84
|
[tool.commitizen]
|
|
85
85
|
name = "cz_conventional_commits"
|
|
86
|
-
version = "0.61.
|
|
86
|
+
version = "0.61.1"
|
|
87
87
|
tag_format = "$version"
|
|
88
88
|
version_files = [
|
|
89
89
|
"pyproject.toml:version"
|
|
@@ -270,7 +270,7 @@ class PGUpdateQuery(PGQuery):
|
|
|
270
270
|
if self.where:
|
|
271
271
|
return self.where
|
|
272
272
|
elif self.where_keys is not None:
|
|
273
|
-
start_from = self.start_from if self.start_from is not None else len(self.
|
|
273
|
+
start_from = self.start_from if self.start_from is not None else len(self.keys) - len(self.where_keys)
|
|
274
274
|
|
|
275
275
|
return "WHERE " + " AND ".join(f"{k} = ${i + start_from + 1}" for i, k in enumerate(self.where_keys))
|
|
276
276
|
return ""
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|