File tree Expand file tree Collapse file tree 6 files changed +6
-23
lines changed Expand file tree Collapse file tree 6 files changed +6
-23
lines changed Original file line number Diff line number Diff line change 16
16
matrix :
17
17
include :
18
18
- os : ubuntu-20.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"
23
-
24
20
- os : ubuntu-20.04
25
21
python-version : " 3.10"
26
22
test-env : " PyQt5~=5.15.0"
49
45
extra-system-packages : " glibc-tools"
50
46
51
47
# macOS
52
- - os : macos-13
53
- python-version : 3.9
54
- test-env : " PyQt5~=5.14.0"
55
-
56
48
- os : macos-13
57
49
python-version : " 3.10"
58
50
test-env : " PyQt5~=5.15.0"
78
70
test-env : " PyQt6~=6.7.0 PyQt6-Qt6~=6.7.0"
79
71
80
72
# Windows
81
- - os : windows-2019
82
- python-version : 3.9
83
- test-env : " PyQt5~=5.15.0"
84
-
85
73
- os : windows-2019
86
74
python-version : " 3.10"
87
75
test-env : " PyQt5~=5.15.0"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: 2
3
3
build :
4
4
os : ubuntu-22.04
5
5
tools :
6
- python : " 3.9 "
6
+ python : " 3.10 "
7
7
8
8
python :
9
9
install :
Original file line number Diff line number Diff line change 16
16
import os
17
17
import shlex
18
18
19
- import importlib_metadata
20
- dist = importlib_metadata .distribution ("orange-canvas-core" )
19
+ import importlib . metadata
20
+ dist = importlib . metadata .distribution ("orange-canvas-core" )
21
21
22
22
# If extensions (or modules to document with autodoc) are in another directory,
23
23
# add these directories to sys.path here. If the directory is relative to the
Original file line number Diff line number Diff line change 11
11
from orangecanvas import config as _config
12
12
from orangecanvas .utils .pkgmeta import Distribution
13
13
14
- try :
15
- from importlib .resources import files as _files
16
- except ImportError :
17
- from importlib_resources import files as _files
14
+ from importlib .resources import files as _files
18
15
19
16
log = logging .getLogger (__name__ )
20
17
Original file line number Diff line number Diff line change 34
34
"pip>=18.0" ,
35
35
"dictdiffer" ,
36
36
"qasync>=0.10.0" ,
37
- "importlib_metadata>=4.6; python_version<'3.10'" ,
38
- "importlib_resources; python_version<'3.9'" ,
39
37
"typing_extensions" ,
40
38
"packaging" ,
41
39
"numpy" ,
64
62
"Documentation" : "https://orange-canvas-core.readthedocs.io/en/latest/" ,
65
63
}
66
64
67
- PYTHON_REQUIRES = ">=3.9 "
65
+ PYTHON_REQUIRES = ">=3.10 "
68
66
69
67
70
68
class InstallMultilingualCommand (install ):
You can’t perform that action at this time.
0 commit comments