File tree Expand file tree Collapse file tree 5 files changed +8
-20
lines changed Expand file tree Collapse file tree 5 files changed +8
-20
lines changed Original file line number Diff line number Diff line change 16
16
matrix :
17
17
include :
18
18
- os : ubuntu-22.04
19
- python : 3.9
19
+ python : " 3.10 "
20
20
21
21
steps :
22
22
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 17
17
matrix :
18
18
include :
19
19
# Linux
20
- - os : ubuntu-20.04
21
- python-version : 3.9
22
- test-env : " PyQt5~=5.14.0 PyQtWebEngine~=5.14.0"
23
-
24
20
- os : ubuntu-20.04
25
21
python-version : " 3.10"
26
22
test-env : " PyQt5~=5.15.0 PyQtWebEngine~=5.15.0"
50
46
extra-system-packages : " libegl1-mesa libxcb-cursor0 glibc-tools"
51
47
52
48
# macOS
53
- - os : macos-13
54
- python-version : 3.9
55
- test-env : " PyQt5~=5.14.0 PyQtWebEngine~=5.14.0"
56
-
57
49
- os : macos-14
58
50
python-version : " 3.10"
59
51
test-env : " PyQt5~=5.15.0 PyQtWebEngine~=5.15.0"
75
67
test-env : " PyQt6~=6.7.0 PyQt6-Qt6~=6.7.0 PyQt6-WebEngine~=6.7.0 PyQt6-WebEngine-Qt6~=6.7.0"
76
68
77
69
# Windows
78
- - os : windows-2019
79
- python-version : 3.9
80
- test-env : " PyQt5~=5.15.0 PyQtWebEngine~=5.15.0"
81
-
82
70
- os : windows-2019
83
71
python-version : " 3.10"
84
72
test-env : " PyQt5~=5.15.0 PyQtWebEngine~=5.15.0"
Original file line number Diff line number Diff line change 1
1
version : 2
2
2
3
+ sphinx :
4
+ # Path to your Sphinx configuration file.
5
+ configuration : doc/source/conf.py
6
+
3
7
build :
4
8
os : ubuntu-22.04
5
9
tools :
6
- python : " 3.9 "
10
+ python : " 3.10 "
7
11
8
12
python :
9
13
install :
Original file line number Diff line number Diff line change 29
29
from orangewidget .utils .itemmodels import PyListModel , signal_blocking
30
30
31
31
32
- try :
33
- from importlib .resources import files as _resources_files
34
- except ImportError :
35
- from importlib_resources import files as _resources_files
32
+ from importlib .resources import files as _resources_files
36
33
37
34
__re_label = re .compile (r"(^|[^%])%\((?P<value>[a-zA-Z]\w*)\)" )
38
35
Original file line number Diff line number Diff line change 60
60
"typing_extensions>=3.7.4.3" ,
61
61
"orange-canvas-core>=0.2a.dev0,<0.3a" ,
62
62
'appnope; sys_platform=="darwin"' ,
63
- "importlib_resources; python_version<'3.10'"
64
63
]
65
64
66
65
EXTRAS_REQUIRE = {
@@ -193,7 +192,7 @@ def setup_package():
193
192
},
194
193
extras_require = EXTRAS_REQUIRE ,
195
194
entry_points = ENTRY_POINTS ,
196
- python_requires = ">=3.9 " ,
195
+ python_requires = ">=3.10 " ,
197
196
zip_safe = False ,
198
197
)
199
198
You can’t perform that action at this time.
0 commit comments