Skip to content

Commit 3bf3625

Browse files
committed
Fixing websocket dependency on 12.0, which is known to work (14+ definitely brakes things down).
1 parent 0086f2b commit 3bf3625

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = [
2525
]
2626
dependencies = [
2727
"pyzmq",
28-
"websockets",
28+
"websockets==12.0",
2929
"PyYAML",
3030
]
3131
requires-python = ">=3.9"

recodex-monitor.spec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
%define name recodex-monitor
22
%define short_name monitor
33
%define version 1.2.0
4-
%define unmangled_version 56bfec2ffa5d4eff0d3b8b92bce3837175ca0b53
5-
%define release 2
4+
%define unmangled_version 0086f2b6faa213766bc50f2746ee1bf0bdae77c1
5+
%define release 3
66

77
Summary: Publish ZeroMQ messages through WebSockets
88
Name: %{name}
@@ -26,7 +26,7 @@ Requires(preun): systemd
2626
Requires(postun): systemd
2727
# %{?fedora:Requires: python3-PyYAML python3-websockets python3-zmq}
2828
# %{?rhel:Requires: python3-PyYAML python3-websockets python3-pyzmq}
29-
Requires: python3-PyYAML python3-websockets python3-pyzmq
29+
Requires: python3-PyYAML python3-websockets <= 12.0 python3-pyzmq
3030

3131
Source0: https://github.com/ReCodEx/%{short_name}/archive/%{unmangled_version}.tar.gz#/%{short_name}-%{unmangled_version}.tar.gz
3232

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
pyzmq
77

88
# WebSockets
9-
websockets
9+
websockets==12.0
1010

1111
# Configuration parsing
1212
PyYAML

0 commit comments

Comments
 (0)