fugue 0.9.3__tar.gz → 0.9.4__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.
Files changed (163) hide show
  1. {fugue-0.9.3 → fugue-0.9.4}/PKG-INFO +3 -4
  2. {fugue-0.9.3 → fugue-0.9.4}/fugue.egg-info/PKG-INFO +3 -4
  3. {fugue-0.9.3 → fugue-0.9.4}/fugue.egg-info/requires.txt +2 -3
  4. fugue-0.9.4/fugue_version/__init__.py +1 -0
  5. {fugue-0.9.3 → fugue-0.9.4}/setup.py +3 -3
  6. fugue-0.9.3/fugue_version/__init__.py +0 -1
  7. {fugue-0.9.3 → fugue-0.9.4}/LICENSE +0 -0
  8. {fugue-0.9.3 → fugue-0.9.4}/README.md +0 -0
  9. {fugue-0.9.3 → fugue-0.9.4}/fugue/__init__.py +0 -0
  10. {fugue-0.9.3 → fugue-0.9.4}/fugue/_utils/__init__.py +0 -0
  11. {fugue-0.9.3 → fugue-0.9.4}/fugue/_utils/display.py +0 -0
  12. {fugue-0.9.3 → fugue-0.9.4}/fugue/_utils/exception.py +0 -0
  13. {fugue-0.9.3 → fugue-0.9.4}/fugue/_utils/interfaceless.py +0 -0
  14. {fugue-0.9.3 → fugue-0.9.4}/fugue/_utils/io.py +0 -0
  15. {fugue-0.9.3 → fugue-0.9.4}/fugue/_utils/misc.py +0 -0
  16. {fugue-0.9.3 → fugue-0.9.4}/fugue/_utils/registry.py +0 -0
  17. {fugue-0.9.3 → fugue-0.9.4}/fugue/api.py +0 -0
  18. {fugue-0.9.3 → fugue-0.9.4}/fugue/bag/__init__.py +0 -0
  19. {fugue-0.9.3 → fugue-0.9.4}/fugue/bag/array_bag.py +0 -0
  20. {fugue-0.9.3 → fugue-0.9.4}/fugue/bag/bag.py +0 -0
  21. {fugue-0.9.3 → fugue-0.9.4}/fugue/collections/__init__.py +0 -0
  22. {fugue-0.9.3 → fugue-0.9.4}/fugue/collections/partition.py +0 -0
  23. {fugue-0.9.3 → fugue-0.9.4}/fugue/collections/sql.py +0 -0
  24. {fugue-0.9.3 → fugue-0.9.4}/fugue/collections/yielded.py +0 -0
  25. {fugue-0.9.3 → fugue-0.9.4}/fugue/column/__init__.py +0 -0
  26. {fugue-0.9.3 → fugue-0.9.4}/fugue/column/expressions.py +0 -0
  27. {fugue-0.9.3 → fugue-0.9.4}/fugue/column/functions.py +0 -0
  28. {fugue-0.9.3 → fugue-0.9.4}/fugue/column/sql.py +0 -0
  29. {fugue-0.9.3 → fugue-0.9.4}/fugue/constants.py +0 -0
  30. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/__init__.py +0 -0
  31. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/api.py +0 -0
  32. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/array_dataframe.py +0 -0
  33. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/arrow_dataframe.py +0 -0
  34. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/dataframe.py +0 -0
  35. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/dataframe_iterable_dataframe.py +0 -0
  36. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/dataframes.py +0 -0
  37. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/function_wrapper.py +0 -0
  38. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/iterable_dataframe.py +0 -0
  39. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/pandas_dataframe.py +0 -0
  40. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataframe/utils.py +0 -0
  41. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataset/__init__.py +0 -0
  42. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataset/api.py +0 -0
  43. {fugue-0.9.3 → fugue-0.9.4}/fugue/dataset/dataset.py +0 -0
  44. {fugue-0.9.3 → fugue-0.9.4}/fugue/dev.py +0 -0
  45. {fugue-0.9.3 → fugue-0.9.4}/fugue/exceptions.py +0 -0
  46. {fugue-0.9.3 → fugue-0.9.4}/fugue/execution/__init__.py +0 -0
  47. {fugue-0.9.3 → fugue-0.9.4}/fugue/execution/api.py +0 -0
  48. {fugue-0.9.3 → fugue-0.9.4}/fugue/execution/execution_engine.py +0 -0
  49. {fugue-0.9.3 → fugue-0.9.4}/fugue/execution/factory.py +0 -0
  50. {fugue-0.9.3 → fugue-0.9.4}/fugue/execution/native_execution_engine.py +0 -0
  51. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/__init__.py +0 -0
  52. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/_builtins/__init__.py +0 -0
  53. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/_builtins/creators.py +0 -0
  54. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/_builtins/outputters.py +0 -0
  55. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/_builtins/processors.py +0 -0
  56. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/_utils.py +0 -0
  57. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/context.py +0 -0
  58. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/creator/__init__.py +0 -0
  59. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/creator/convert.py +0 -0
  60. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/creator/creator.py +0 -0
  61. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/outputter/__init__.py +0 -0
  62. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/outputter/convert.py +0 -0
  63. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/outputter/outputter.py +0 -0
  64. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/processor/__init__.py +0 -0
  65. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/processor/convert.py +0 -0
  66. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/processor/processor.py +0 -0
  67. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/transformer/__init__.py +0 -0
  68. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/transformer/constants.py +0 -0
  69. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/transformer/convert.py +0 -0
  70. {fugue-0.9.3 → fugue-0.9.4}/fugue/extensions/transformer/transformer.py +0 -0
  71. {fugue-0.9.3 → fugue-0.9.4}/fugue/plugins.py +0 -0
  72. {fugue-0.9.3 → fugue-0.9.4}/fugue/py.typed +0 -0
  73. {fugue-0.9.3 → fugue-0.9.4}/fugue/registry.py +0 -0
  74. {fugue-0.9.3 → fugue-0.9.4}/fugue/rpc/__init__.py +0 -0
  75. {fugue-0.9.3 → fugue-0.9.4}/fugue/rpc/base.py +0 -0
  76. {fugue-0.9.3 → fugue-0.9.4}/fugue/rpc/flask.py +0 -0
  77. {fugue-0.9.3 → fugue-0.9.4}/fugue/sql/__init__.py +0 -0
  78. {fugue-0.9.3 → fugue-0.9.4}/fugue/sql/_utils.py +0 -0
  79. {fugue-0.9.3 → fugue-0.9.4}/fugue/sql/_visitors.py +0 -0
  80. {fugue-0.9.3 → fugue-0.9.4}/fugue/sql/api.py +0 -0
  81. {fugue-0.9.3 → fugue-0.9.4}/fugue/sql/workflow.py +0 -0
  82. {fugue-0.9.3 → fugue-0.9.4}/fugue/test/__init__.py +0 -0
  83. {fugue-0.9.3 → fugue-0.9.4}/fugue/test/pandas_tester.py +0 -0
  84. {fugue-0.9.3 → fugue-0.9.4}/fugue/test/plugins.py +0 -0
  85. {fugue-0.9.3 → fugue-0.9.4}/fugue/workflow/__init__.py +0 -0
  86. {fugue-0.9.3 → fugue-0.9.4}/fugue/workflow/_checkpoint.py +0 -0
  87. {fugue-0.9.3 → fugue-0.9.4}/fugue/workflow/_tasks.py +0 -0
  88. {fugue-0.9.3 → fugue-0.9.4}/fugue/workflow/_workflow_context.py +0 -0
  89. {fugue-0.9.3 → fugue-0.9.4}/fugue/workflow/api.py +0 -0
  90. {fugue-0.9.3 → fugue-0.9.4}/fugue/workflow/input.py +0 -0
  91. {fugue-0.9.3 → fugue-0.9.4}/fugue/workflow/module.py +0 -0
  92. {fugue-0.9.3 → fugue-0.9.4}/fugue/workflow/workflow.py +0 -0
  93. {fugue-0.9.3 → fugue-0.9.4}/fugue.egg-info/SOURCES.txt +0 -0
  94. {fugue-0.9.3 → fugue-0.9.4}/fugue.egg-info/dependency_links.txt +0 -0
  95. {fugue-0.9.3 → fugue-0.9.4}/fugue.egg-info/entry_points.txt +0 -0
  96. {fugue-0.9.3 → fugue-0.9.4}/fugue.egg-info/top_level.txt +0 -0
  97. {fugue-0.9.3 → fugue-0.9.4}/fugue_contrib/__init__.py +0 -0
  98. {fugue-0.9.3 → fugue-0.9.4}/fugue_contrib/contrib.py +0 -0
  99. {fugue-0.9.3 → fugue-0.9.4}/fugue_contrib/seaborn/__init__.py +0 -0
  100. {fugue-0.9.3 → fugue-0.9.4}/fugue_contrib/viz/__init__.py +0 -0
  101. {fugue-0.9.3 → fugue-0.9.4}/fugue_contrib/viz/_ext.py +0 -0
  102. {fugue-0.9.3 → fugue-0.9.4}/fugue_dask/__init__.py +0 -0
  103. {fugue-0.9.3 → fugue-0.9.4}/fugue_dask/_constants.py +0 -0
  104. {fugue-0.9.3 → fugue-0.9.4}/fugue_dask/_dask_sql_wrapper.py +0 -0
  105. {fugue-0.9.3 → fugue-0.9.4}/fugue_dask/_io.py +0 -0
  106. {fugue-0.9.3 → fugue-0.9.4}/fugue_dask/_utils.py +0 -0
  107. {fugue-0.9.3 → fugue-0.9.4}/fugue_dask/dataframe.py +0 -0
  108. {fugue-0.9.3 → fugue-0.9.4}/fugue_dask/execution_engine.py +0 -0
  109. {fugue-0.9.3 → fugue-0.9.4}/fugue_dask/registry.py +0 -0
  110. {fugue-0.9.3 → fugue-0.9.4}/fugue_dask/tester.py +0 -0
  111. {fugue-0.9.3 → fugue-0.9.4}/fugue_duckdb/__init__.py +0 -0
  112. {fugue-0.9.3 → fugue-0.9.4}/fugue_duckdb/_io.py +0 -0
  113. {fugue-0.9.3 → fugue-0.9.4}/fugue_duckdb/_utils.py +0 -0
  114. {fugue-0.9.3 → fugue-0.9.4}/fugue_duckdb/dask.py +0 -0
  115. {fugue-0.9.3 → fugue-0.9.4}/fugue_duckdb/dataframe.py +0 -0
  116. {fugue-0.9.3 → fugue-0.9.4}/fugue_duckdb/execution_engine.py +0 -0
  117. {fugue-0.9.3 → fugue-0.9.4}/fugue_duckdb/registry.py +0 -0
  118. {fugue-0.9.3 → fugue-0.9.4}/fugue_duckdb/tester.py +0 -0
  119. {fugue-0.9.3 → fugue-0.9.4}/fugue_ibis/__init__.py +0 -0
  120. {fugue-0.9.3 → fugue-0.9.4}/fugue_ibis/_compat.py +0 -0
  121. {fugue-0.9.3 → fugue-0.9.4}/fugue_ibis/_utils.py +0 -0
  122. {fugue-0.9.3 → fugue-0.9.4}/fugue_ibis/dataframe.py +0 -0
  123. {fugue-0.9.3 → fugue-0.9.4}/fugue_ibis/execution_engine.py +0 -0
  124. {fugue-0.9.3 → fugue-0.9.4}/fugue_notebook/__init__.py +0 -0
  125. {fugue-0.9.3 → fugue-0.9.4}/fugue_notebook/env.py +0 -0
  126. {fugue-0.9.3 → fugue-0.9.4}/fugue_notebook/nbextension/README.md +0 -0
  127. {fugue-0.9.3 → fugue-0.9.4}/fugue_notebook/nbextension/__init__.py +0 -0
  128. {fugue-0.9.3 → fugue-0.9.4}/fugue_notebook/nbextension/description.yaml +0 -0
  129. {fugue-0.9.3 → fugue-0.9.4}/fugue_notebook/nbextension/main.js +0 -0
  130. {fugue-0.9.3 → fugue-0.9.4}/fugue_polars/__init__.py +0 -0
  131. {fugue-0.9.3 → fugue-0.9.4}/fugue_polars/_utils.py +0 -0
  132. {fugue-0.9.3 → fugue-0.9.4}/fugue_polars/polars_dataframe.py +0 -0
  133. {fugue-0.9.3 → fugue-0.9.4}/fugue_polars/registry.py +0 -0
  134. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/__init__.py +0 -0
  135. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/_constants.py +0 -0
  136. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/_utils/__init__.py +0 -0
  137. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/_utils/cluster.py +0 -0
  138. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/_utils/dataframe.py +0 -0
  139. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/_utils/io.py +0 -0
  140. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/dataframe.py +0 -0
  141. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/execution_engine.py +0 -0
  142. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/registry.py +0 -0
  143. {fugue-0.9.3 → fugue-0.9.4}/fugue_ray/tester.py +0 -0
  144. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/__init__.py +0 -0
  145. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/_constants.py +0 -0
  146. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/_utils/__init__.py +0 -0
  147. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/_utils/convert.py +0 -0
  148. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/_utils/io.py +0 -0
  149. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/_utils/misc.py +0 -0
  150. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/_utils/partition.py +0 -0
  151. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/dataframe.py +0 -0
  152. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/execution_engine.py +0 -0
  153. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/registry.py +0 -0
  154. {fugue-0.9.3 → fugue-0.9.4}/fugue_spark/tester.py +0 -0
  155. {fugue-0.9.3 → fugue-0.9.4}/fugue_sql/__init__.py +0 -0
  156. {fugue-0.9.3 → fugue-0.9.4}/fugue_sql/exceptions.py +0 -0
  157. {fugue-0.9.3 → fugue-0.9.4}/fugue_test/__init__.py +0 -0
  158. {fugue-0.9.3 → fugue-0.9.4}/fugue_test/bag_suite.py +0 -0
  159. {fugue-0.9.3 → fugue-0.9.4}/fugue_test/builtin_suite.py +0 -0
  160. {fugue-0.9.3 → fugue-0.9.4}/fugue_test/dataframe_suite.py +0 -0
  161. {fugue-0.9.3 → fugue-0.9.4}/fugue_test/execution_suite.py +0 -0
  162. {fugue-0.9.3 → fugue-0.9.4}/fugue_test/fixtures.py +0 -0
  163. {fugue-0.9.3 → fugue-0.9.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fugue
3
- Version: 0.9.3
3
+ Version: 0.9.4
4
4
  Summary: An abstraction layer for distributed computation
5
5
  Home-page: http://github.com/fugue-project/fugue
6
6
  Author: The Fugue Development Team
@@ -40,7 +40,7 @@ Provides-Extra: ray
40
40
  Requires-Dist: ray[data]>=2.30.0; extra == "ray"
41
41
  Requires-Dist: duckdb>=0.5.0; extra == "ray"
42
42
  Requires-Dist: pyarrow>=7.0.0; extra == "ray"
43
- Requires-Dist: pandas<2.2; extra == "ray"
43
+ Requires-Dist: pandas; extra == "ray"
44
44
  Provides-Extra: duckdb
45
45
  Requires-Dist: qpd>=0.4.4; extra == "duckdb"
46
46
  Requires-Dist: fugue-sql-antlr>=0.2.0; extra == "duckdb"
@@ -56,7 +56,6 @@ Requires-Dist: fugue-sql-antlr>=0.2.0; extra == "ibis"
56
56
  Requires-Dist: sqlglot<28; extra == "ibis"
57
57
  Requires-Dist: jinja2; extra == "ibis"
58
58
  Requires-Dist: ibis-framework[pandas]; extra == "ibis"
59
- Requires-Dist: pandas<2.2; extra == "ibis"
60
59
  Provides-Extra: notebook
61
60
  Requires-Dist: notebook; extra == "notebook"
62
61
  Requires-Dist: jupyterlab; extra == "notebook"
@@ -75,7 +74,7 @@ Requires-Dist: jupyterlab; extra == "all"
75
74
  Requires-Dist: ipython>=7.10.0; extra == "all"
76
75
  Requires-Dist: duckdb>=0.5.0; extra == "all"
77
76
  Requires-Dist: pyarrow>=6.0.1; extra == "all"
78
- Requires-Dist: pandas<2.2,>=2.0.2; extra == "all"
77
+ Requires-Dist: pandas>=2.0.2; extra == "all"
79
78
  Requires-Dist: ibis-framework[duckdb,pandas]; extra == "all"
80
79
  Requires-Dist: polars; extra == "all"
81
80
  Dynamic: author
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fugue
3
- Version: 0.9.3
3
+ Version: 0.9.4
4
4
  Summary: An abstraction layer for distributed computation
5
5
  Home-page: http://github.com/fugue-project/fugue
6
6
  Author: The Fugue Development Team
@@ -40,7 +40,7 @@ Provides-Extra: ray
40
40
  Requires-Dist: ray[data]>=2.30.0; extra == "ray"
41
41
  Requires-Dist: duckdb>=0.5.0; extra == "ray"
42
42
  Requires-Dist: pyarrow>=7.0.0; extra == "ray"
43
- Requires-Dist: pandas<2.2; extra == "ray"
43
+ Requires-Dist: pandas; extra == "ray"
44
44
  Provides-Extra: duckdb
45
45
  Requires-Dist: qpd>=0.4.4; extra == "duckdb"
46
46
  Requires-Dist: fugue-sql-antlr>=0.2.0; extra == "duckdb"
@@ -56,7 +56,6 @@ Requires-Dist: fugue-sql-antlr>=0.2.0; extra == "ibis"
56
56
  Requires-Dist: sqlglot<28; extra == "ibis"
57
57
  Requires-Dist: jinja2; extra == "ibis"
58
58
  Requires-Dist: ibis-framework[pandas]; extra == "ibis"
59
- Requires-Dist: pandas<2.2; extra == "ibis"
60
59
  Provides-Extra: notebook
61
60
  Requires-Dist: notebook; extra == "notebook"
62
61
  Requires-Dist: jupyterlab; extra == "notebook"
@@ -75,7 +74,7 @@ Requires-Dist: jupyterlab; extra == "all"
75
74
  Requires-Dist: ipython>=7.10.0; extra == "all"
76
75
  Requires-Dist: duckdb>=0.5.0; extra == "all"
77
76
  Requires-Dist: pyarrow>=6.0.1; extra == "all"
78
- Requires-Dist: pandas<2.2,>=2.0.2; extra == "all"
77
+ Requires-Dist: pandas>=2.0.2; extra == "all"
79
78
  Requires-Dist: ibis-framework[duckdb,pandas]; extra == "all"
80
79
  Requires-Dist: polars; extra == "all"
81
80
  Dynamic: author
@@ -15,7 +15,7 @@ jupyterlab
15
15
  ipython>=7.10.0
16
16
  duckdb>=0.5.0
17
17
  pyarrow>=6.0.1
18
- pandas<2.2,>=2.0.2
18
+ pandas>=2.0.2
19
19
  ibis-framework[duckdb,pandas]
20
20
  polars
21
21
 
@@ -41,7 +41,6 @@ fugue-sql-antlr>=0.2.0
41
41
  sqlglot<28
42
42
  jinja2
43
43
  ibis-framework[pandas]
44
- pandas<2.2
45
44
 
46
45
  [notebook]
47
46
  notebook
@@ -55,7 +54,7 @@ polars
55
54
  ray[data]>=2.30.0
56
55
  duckdb>=0.5.0
57
56
  pyarrow>=7.0.0
58
- pandas<2.2
57
+ pandas
59
58
 
60
59
  [spark]
61
60
  pyspark>=3.1.1
@@ -0,0 +1 @@
1
+ __version__ = "0.9.4"
@@ -54,7 +54,7 @@ setup(
54
54
  "ray[data]>=2.30.0",
55
55
  "duckdb>=0.5.0",
56
56
  "pyarrow>=7.0.0",
57
- "pandas<2.2",
57
+ "pandas",
58
58
  ],
59
59
  "duckdb": SQL_DEPENDENCIES
60
60
  + [
@@ -62,7 +62,7 @@ setup(
62
62
  "numpy",
63
63
  ],
64
64
  "polars": ["polars"],
65
- "ibis": SQL_DEPENDENCIES + ["ibis-framework[pandas]", "pandas<2.2"],
65
+ "ibis": SQL_DEPENDENCIES + ["ibis-framework[pandas]"],
66
66
  "notebook": ["notebook", "jupyterlab", "ipython>=7.10.0"],
67
67
  "all": SQL_DEPENDENCIES
68
68
  + [
@@ -75,7 +75,7 @@ setup(
75
75
  "ipython>=7.10.0",
76
76
  "duckdb>=0.5.0",
77
77
  "pyarrow>=6.0.1",
78
- "pandas>=2.0.2,<2.2", # because of Ray and ibis
78
+ "pandas>=2.0.2",
79
79
  "ibis-framework[pandas,duckdb]",
80
80
  "polars",
81
81
  ],
@@ -1 +0,0 @@
1
- __version__ = "0.9.3"
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
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
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
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
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
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
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