26 lines
758 B
Diff
26 lines
758 B
Diff
|
From d54f697042e85d670db6f5c2d618b51682f9bd1a Mon Sep 17 00:00:00 2001
|
||
|
From: j1nx <p.steenbergen@j1nx.nl>
|
||
|
Date: Thu, 29 Sep 2022 12:35:11 +0200
|
||
|
Subject: [PATCH 1/1] Loosen arrow requirement
|
||
|
|
||
|
---
|
||
|
setup.py | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/setup.py b/setup.py
|
||
|
index 0ef1cd3..9d1116f 100755
|
||
|
--- a/setup.py
|
||
|
+++ b/setup.py
|
||
|
@@ -20,7 +20,7 @@ setup(
|
||
|
package_data={'ovos_skill_homescreen': ["vocab/*", "ui/*", "skill/*, *.json"]},
|
||
|
packages=['ovos_skill_homescreen'],
|
||
|
include_package_data=True,
|
||
|
- install_requires=["astral==1.4", "arrow==0.12.0"],
|
||
|
+ install_requires=["astral==1.4", "arrow>=0.12.0"],
|
||
|
keywords='ovos skill plugin',
|
||
|
entry_points={'ovos.plugin.skill': PLUGIN_ENTRY_POINT}
|
||
|
)
|
||
|
--
|
||
|
2.34.1
|
||
|
|