File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,13 @@ jobs:
28
28
- name : Build wheels
29
29
uses : pypa/cibuildwheel@v2.6.1
30
30
env :
31
+ CIBW_BUILD : " cp311-*"
31
32
CIBW_ARCHS_LINUX : auto, aarch64
32
33
33
34
- name : Run test.py in develop mode
34
35
run : |
36
+ python -m pip install opencv-python setuptools
35
37
python setup_setuptools.py develop
36
- python -m pip install opencv-python
37
38
python --version
38
39
python test.py
39
40
Original file line number Diff line number Diff line change 33
33
"Programming Language :: Python :: 3.8" ,
34
34
"Programming Language :: Python :: 3.9" ,
35
35
"Programming Language :: Python :: 3.10" ,
36
+ "Programming Language :: Python :: 3.11" ,
37
+ "Programming Language :: Python :: 3.12" ,
36
38
"Programming Language :: C++" ,
37
39
"Programming Language :: Python :: Implementation :: CPython" ,
38
40
"Topic :: Scientific/Engineering" ,
39
41
"Topic :: Software Development" ,
40
42
],
41
- install_requires = ['opencv-python' , 'setuptools' ],
43
+ install_requires = ['opencv-python' ],
42
44
entry_points = {
43
45
'console_scripts' : ['scanbarcode=barcodeQrSDK.scripts:scanbarcode' ]
44
46
},
Original file line number Diff line number Diff line change @@ -126,12 +126,14 @@ def run(self):
126
126
"Programming Language :: Python :: 3.8" ,
127
127
"Programming Language :: Python :: 3.9" ,
128
128
"Programming Language :: Python :: 3.10" ,
129
+ "Programming Language :: Python :: 3.11" ,
130
+ "Programming Language :: Python :: 3.12" ,
129
131
"Programming Language :: C++" ,
130
132
"Programming Language :: Python :: Implementation :: CPython" ,
131
133
"Topic :: Scientific/Engineering" ,
132
134
"Topic :: Software Development" ,
133
135
],
134
- install_requires = ['opencv-python' , 'setuptools' ],
136
+ install_requires = ['opencv-python' ],
135
137
entry_points = {
136
138
'console_scripts' : ['scanbarcode=barcodeQrSDK.scripts:scanbarcode' ]
137
139
},
You can’t perform that action at this time.
0 commit comments