python-sql 1.8.0__py3-none-any.whl → 1.8.1__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-sql
3
- Version: 1.8.0
3
+ Version: 1.8.1
4
4
  Summary: Library to write SQL queries
5
5
  Project-URL: homepage, https://www.tryton.org/
6
6
  Project-URL: changelog, https://code.tryton.org/python-sql/-/blob/branch/default/CHANGELOG
@@ -1,4 +1,4 @@
1
- sql/__init__.py,sha256=ReerLn64kM0SclPzFpBSL9fQNmDgl_U-FHazAJfVwiI,65346
1
+ sql/__init__.py,sha256=PUwBTtKhP7r6YWZEtv-7IwYF3OgICgCgHDVPFNqiVOk,65346
2
2
  sql/aggregate.py,sha256=Spg5T4y8SSUN5Tyc7GUVB6I_69AhrVHVCkOgzFX482A,6008
3
3
  sql/conditionals.py,sha256=xJY6ffEBeES6CiGKErXSa2dK2FXaEaR_QQl_CKILP30,2541
4
4
  sql/functions.py,sha256=htradjtMpm9HfDlgSnjKi-rFWRvX5ch8odE-ngAah1I,14125
@@ -35,7 +35,7 @@ sql/tests/test_update.py,sha256=09r_9047luX4WN0paJJBjchZGhFileZcavq1R1TqGV8,3772
35
35
  sql/tests/test_values.py,sha256=qKvaFSDEQmVWajWhMZgqD2-rQcWJeW_nsevVMsV3jD8,1053
36
36
  sql/tests/test_window.py,sha256=EpqjZX2cyQ-m7UWMubrB5MOtL_5uF8jSnNhODfE74xc,3183
37
37
  sql/tests/test_with.py,sha256=Ff9LYEnXsu6062bF6C86uZFwdYlpwswuvc1cdBZs8HY,2363
38
- python_sql-1.8.0.dist-info/METADATA,sha256=h8DNp0TuH7oqyBXd59Cju9TnDR-xCC8y7uJxK50sjb8,8146
39
- python_sql-1.8.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
40
- python_sql-1.8.0.dist-info/licenses/COPYRIGHT,sha256=qxgK78Jt_bk7V59177UafkZEm4lS6KVUuUp0DM24lIA,1627
41
- python_sql-1.8.0.dist-info/RECORD,,
38
+ python_sql-1.8.1.dist-info/METADATA,sha256=ywZsOeYln70IyzXLIkiB2VdN-VUr37qY6kiHoaSZtxc,8146
39
+ python_sql-1.8.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
40
+ python_sql-1.8.1.dist-info/licenses/COPYRIGHT,sha256=qxgK78Jt_bk7V59177UafkZEm4lS6KVUuUp0DM24lIA,1627
41
+ python_sql-1.8.1.dist-info/RECORD,,
sql/__init__.py CHANGED
@@ -7,7 +7,7 @@ from collections import defaultdict
7
7
  from itertools import chain
8
8
  from threading import current_thread, local
9
9
 
10
- __version__ = '1.8.0'
10
+ __version__ = '1.8.1'
11
11
  __all__ = [
12
12
  'Flavor', 'Table', 'Values', 'Literal', 'Column', 'Grouping', 'Conflict',
13
13
  'Matched', 'MatchedUpdate', 'MatchedDelete',