TimeFeatures 1.0.15__tar.gz → 1.0.16__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.
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/PKG-INFO +1 -1
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/TimeFeatures.egg-info/PKG-INFO +1 -1
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/setup.py +1 -1
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/timefeatures/widgets/owtimefeaturesconstructor.py +1 -1
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/timefeatures/widgets/owvardependencygraph.py +2 -1
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/LICENSE +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/README.md +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/TimeFeatures.egg-info/SOURCES.txt +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/TimeFeatures.egg-info/dependency_links.txt +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/TimeFeatures.egg-info/entry_points.txt +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/TimeFeatures.egg-info/top_level.txt +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/setup.cfg +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/timefeatures/widgets/__init__.py +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/timefeatures/widgets/icons/graphgenerator.svg +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/timefeatures/widgets/icons/savedatadb.svg +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/timefeatures/widgets/icons/timefeature-xs.svg +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/timefeatures/widgets/icons/timefeature.svg +0 -0
- {TimeFeatures-1.0.15 → timefeatures-1.0.16}/timefeatures/widgets/owsavetodb.py +0 -0
|
@@ -19,7 +19,7 @@ setup(name="TimeFeatures",
|
|
|
19
19
|
packages=["timefeatures.widgets"],
|
|
20
20
|
package_data={"timefeatures.widgets": ["icons/*.svg", "icons/*.png"]},
|
|
21
21
|
entry_points={"orange.widgets": "Time-Features = timefeatures.widgets"},
|
|
22
|
-
version="1.0.
|
|
22
|
+
version="1.0.16",
|
|
23
23
|
author="Alejandro Rivas García",
|
|
24
24
|
author_email="alejandrorivasgarcia@gmail.com",
|
|
25
25
|
keywords=[
|
{TimeFeatures-1.0.15 → timefeatures-1.0.16}/timefeatures/widgets/owtimefeaturesconstructor.py
RENAMED
|
@@ -1114,7 +1114,7 @@ class owtimefeaturesconstructor(OWWidget, ConcurrentWidgetMixin):
|
|
|
1114
1114
|
|
|
1115
1115
|
if self.data is not None and self.expressions is not None:
|
|
1116
1116
|
if self.expressions is not None:
|
|
1117
|
-
if len(self.expressions.domain) >=
|
|
1117
|
+
if len(self.expressions.domain) >= 1 and (
|
|
1118
1118
|
self.expressions.domain[0].name != "Variable" or self.expressions.domain[1].name != "Expression"):
|
|
1119
1119
|
self.Warning.table_warning()
|
|
1120
1120
|
else:
|
|
@@ -207,13 +207,14 @@ class owvardependencygraph(OWWidget, ConcurrentWidgetMixin):
|
|
|
207
207
|
self.data = data
|
|
208
208
|
|
|
209
209
|
if self.data is not None:
|
|
210
|
-
if len(self.data.domain) >=
|
|
210
|
+
if len(self.data.domain) >= 1 and (self.data.domain[0].name != "Variable" or self.data.domain[1].name != "Expression"):
|
|
211
211
|
self.Error.generation_error("You need a configuration table (Variable-Expression).")
|
|
212
212
|
self.Outputs.network.send(None)
|
|
213
213
|
else:
|
|
214
214
|
self.generate()
|
|
215
215
|
self.btn_generate.setEnabled(True)
|
|
216
216
|
else:
|
|
217
|
+
self.Error.clear()
|
|
217
218
|
self.Outputs.network.send(None)
|
|
218
219
|
self.btn_generate.setEnabled(False)
|
|
219
220
|
|
|
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
|