Skip to content

Commit c6a6f94

Browse files
committed
Bump version to 0.1.1, bump minimum Python version to 3.8
1 parent 3353b25 commit c6a6f94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ An unofficial Python wrapper for [Spout](https://leadedge.github.io/) using [pyb
66
Key features compared to some previous wrappers:
77
- Covers more of the SpoutGL API, including sendImage/receiveImage, setFrameSync/waitFrameSync and data sharing
88
- 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
1010
- No external dependencies
1111

1212
# Installation

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import sys
1212

13-
__version__ = "0.1.0"
13+
__version__ = "0.1.1"
1414

1515
is_64bits = sys.maxsize > 2**32
1616

@@ -75,7 +75,7 @@ def run(self):
7575
"build": CopyDllsAndBuildCommand
7676
},
7777
zip_safe=False,
78-
python_requires=">3.7",
78+
python_requires=">3.8",
7979

8080
packages=["SpoutGL"],
8181
package_dir={"": "src"},

0 commit comments

Comments
 (0)