-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (94 loc) · 4.83 KB
/
Copy pathpyproject.toml
File metadata and controls
104 lines (94 loc) · 4.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "RFSwarm_development"
version = "1.0.0"
description = "rfswarm dev environment."
requires-python = ">=3.9,<4.0"
[tool.poetry]
package-mode = false
[dependency-groups]
# numpy-2.2.3 crashes on windows with python 3.13 with error below, but works on other python versions
# potentially this issue https://github.com/numpy/numpy/issues/26038
# <frozen importlib._bootstrap>:488: Warning: Numpy built with MINGW-W64 on Windows 64 bits is experimental, and only available for testing. You are advised not to use it for production.
#
# CRASHES ARE TO BE EXPECTED - PLEASE REPORT THEM TO NUMPY DEVELOPERS
# C:\hostedtoolcache\windows\Python\3.13.2\x64\Lib\site-packages\numpy\core\getlimits.py:225: RuntimeWarning: invalid value encountered in exp2 epsneg_f128 = exp2(ld(-113))
# C:\hostedtoolcache\windows\Python\3.13.2\x64\Lib\site-packages\numpy\core\getlimits.py:226: RuntimeWarning: invalid value encountered in exp2 tiny_f128 = exp2(ld(-16382))
# C:\hostedtoolcache\windows\Python\3.13.2\x64\Lib\site-packages\numpy\core\getlimits.py:240: RuntimeWarning: invalid value encountered in exp2 eps=exp2(ld(-112)),
# C:\hostedtoolcache\windows\Python\3.13.2\x64\Lib\site-packages\numpy\core\getlimits.py:41: RuntimeWarning: invalid value encountered in nextafter self._smallest_subnormal = nextafter(
# C:\hostedtoolcache\windows\Python\3.13.2\x64\Lib\site-packages\numpy\core\getlimits.py:52: RuntimeWarning: invalid value encountered in log10 self.precision = int(-log10(self.eps))
agent_test = [
"robotframework-databaselibrary (>=2.4.1,<3.0.0)",
"robotframework-httpctrl (>=0.3.1,<0.4.0)",
]
# pyscreeze 0.1.29 doesn't seem to work with pyautogui 0.9.53
# pyautogui 0.9.54 has issues on MacOS https://github.com/asweigart/pyautogui/issues/783
# pyautogui is a prerequisite of imagehorizonlibrary
# pymupdf has to be >=1.23.1 beacuse it require numpy > 2
manager_test = [
"numpy (!=2.2.3)",
"numpy (>2) ; python_version > '3.12'",
"pymupdf (>=1.28.2)",
"pyautogui (!=0.9.54)",
"clipboard (>=0.0.4,<0.0.5)",
"pyyaml (>=6.0.3,<7.0.0)",
"pyscreeze (==1.0.1)",
"robotframework-imagehorizonlibrary (>=1.0,<2.0)",
"robotframework-databaselibrary (>=2.3.3,<3.0.0)",
"robotframework-ocrlibrary (>=2.0.0,<3.0.0)",
"robotframework-requests (>=0.9.7,<0.10.0)",
"opencv-python-headless (>=4.10.0)",
"pymupdf (!=1.27.2.2)",
]
# pyscreeze 0.1.29 doesn't seem to work with pyautogui 0.9.53 - this version works with robotframework-imagehorizonlibrary 1.0.0
# pyautogui 0.9.54 has issues on MacOS https://github.com/asweigart/pyautogui/issues/783
# pyautogui is a prerequisite of imagehorizonlibrary
# pymupdf has to be >=1.23.1 beacuse it require numpy > 2
# 2026-06-21 Not sure which one broke the tests but something did in the last week, but only for python builds 3.11+ not for python 3.10
# so I compared what the differences in the installs were and python 3.10 had numpy (2.2.6), networkx (3.4.2), scipy (1.15.3)
# & tifffile (2025.5.10)
# while python 3.11+ had numpy (2.4.6), networkx (3.6.1), scipy (1.17.1), tifffile (2026.3.3) which are all big jumps
# Python 3.10 also had parsimonious (0.11.0), pyautogui (0.9.53), pydantic-core (2.46.4), pylibdmtx (0.1.10), pymupdf (1.27.2.3),
# pytesseract (0.3.13), python-dateutil (2.9.0.post0) & python-xlib (0.33) which didn't get installed on python 3.11
# 2026-06-21 - Update looks like it's tifffile (2026.3.3), when tifffile (2026.6.1) is used tests pass
# 2026-06-21 - tifffile (2025.12.20) aslo seems to not work on windows / macos
reporter_test = [
"numpy (!=2.2.3)",
"numpy (>2) ; python_version > '3.12'",
"pymupdf (>=1.28.2)",
"pydantic (>=2.13.4,<3.0.0)",
"pillow (>=11.3.0,<12.0.0)",
"pyautogui (!=0.9.54)",
"clipboard (>=0.0.4,<0.0.5)",
"python-docx (>=1.2.0,<2.0.0)",
"openpyxl (>=3.1.5,<4.0.0)",
"openpyxl-image-loader (>=1.0.5,<2.0.0)",
"pandas (>=2.3.3,<3.0.0)",
"psutil (>=7.1.3,<8.0.0)",
"pyyaml (>=6.0.3,<7.0.0)",
"robotframework-doctestlibrary (==0.29.1) ; python_version >= '3.10' and python_version <= '3.12'",
"robotframework-doctestlibrary (>=0.20.0,<0.31.0)",
"robotframework-imagehorizonlibrary (>=1.0,<2.0)",
"robotframework-databaselibrary (>=2.3.3,<3.0.0)",
"robotframework-ocrlibrary (>=2.0.0,<3.0.0)",
"robotframework-archivelibrary (>=0.4.3,<0.5.0)",
"opencv-python-headless (>=4.10.0)",
"pyscreeze (==0.1.28)",
"pynput (>=1.8.2,<2.0.0)",
"tifffile (<2026.0.0)"
]
dev = [
{ include-group = "agent_test" },
{ include-group = "manager_test" },
{ include-group = "reporter_test" },
]
[tool.poetry.group.agent_test]
optional = true
[tool.poetry.group.manager_test]
optional = true
[tool.poetry.group.reporter_test]
optional = true
[tool.poetry.group.dev]
optional = true
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"