File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ An unofficial Python wrapper for [Spout](https://leadedge.github.io/) using [pyb
6
6
Key features compared to some previous wrappers:
7
7
- Covers more of the SpoutGL API, including sendImage/receiveImage, setFrameSync/waitFrameSync and data sharing
8
8
- pybind11 instead of Boost Python which should make it easier to build for multiple Python versions
9
- - pip/wheel support for Python 3.7 + on both 64-bit and 32-bit Windows
9
+ - pip/wheel support for Python 3.8 + on both 64-bit and 32-bit Windows
10
10
- No external dependencies
11
11
12
12
# Installation
Original file line number Diff line number Diff line change 10
10
11
11
import sys
12
12
13
- __version__ = "0.1.0 "
13
+ __version__ = "0.1.1 "
14
14
15
15
is_64bits = sys .maxsize > 2 ** 32
16
16
@@ -75,7 +75,7 @@ def run(self):
75
75
"build" : CopyDllsAndBuildCommand
76
76
},
77
77
zip_safe = False ,
78
- python_requires = ">3.7 " ,
78
+ python_requires = ">3.8 " ,
79
79
80
80
packages = ["SpoutGL" ],
81
81
package_dir = {"" : "src" },
You can’t perform that action at this time.
0 commit comments