exclude latest ssdp version
This commit is contained in:
4
setup.py
4
setup.py
@@ -9,7 +9,7 @@ here = os.path.abspath(os.path.dirname(__file__))
|
|||||||
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
|
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
|
||||||
long_description = "\n" + fh.read()
|
long_description = "\n" + fh.read()
|
||||||
|
|
||||||
VERSION = "0.0.7"
|
VERSION = "0.0.8"
|
||||||
DESCRIPTION = "Stream Deck API Library"
|
DESCRIPTION = "Stream Deck API Library"
|
||||||
|
|
||||||
# Setting up
|
# Setting up
|
||||||
@@ -32,7 +32,7 @@ setup(
|
|||||||
"streamdeck==0.9.3",
|
"streamdeck==0.9.3",
|
||||||
"pillow>=9.4.0,<10.0.0",
|
"pillow>=9.4.0,<10.0.0",
|
||||||
"cairosvg==2.7.0",
|
"cairosvg==2.7.0",
|
||||||
"ssdp",
|
"ssdp!=1.2.0",
|
||||||
],
|
],
|
||||||
keywords=[],
|
keywords=[],
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|||||||
@@ -574,7 +574,7 @@ class StreamDeckApiSsdpProtocol(ssdp.SimpleServiceDiscoveryProtocol):
|
|||||||
print("Sending a response back to %s:%s", *addr)
|
print("Sending a response back to %s:%s", *addr)
|
||||||
|
|
||||||
address = get_local_ip()
|
address = get_local_ip()
|
||||||
location = f"http://example.net:{PLUGIN_PORT}/device.xml"
|
location = f"http://{address}:{PLUGIN_PORT}/device.xml"
|
||||||
usn = f"uuid:{str(uuid4())}::{SD_SSDP}"
|
usn = f"uuid:{str(uuid4())}::{SD_SSDP}"
|
||||||
server = "python/3 UPnP/1.1 ssdpy/0.4.1"
|
server = "python/3 UPnP/1.1 ssdpy/0.4.1"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user