Skip to content

Commit

Permalink
Increased pyzmq>=24.0.0 for py38/39 to fix wheel build error on macOS 14
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <maiera@de.ibm.com>
  • Loading branch information
andy-maier committed Apr 28, 2024
1 parent f093455 commit 2298619
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dev-requirements.txt
Expand Up @@ -243,7 +243,8 @@ tornado>=6.3.3; python_version >= '3.8'

# pyzmq 17.0.0,17.1.0 fail installation when wheel is used
pyzmq>=17.1.3; python_version <= '3.5'
pyzmq>=23.0.0; python_version >= '3.6' and python_version <= '3.11'
pyzmq>=23.0.0; python_version >= '3.6' and python_version <= '3.7'
pyzmq>=24.0.0; python_version >= '3.8' and python_version <= '3.11'
pyzmq>=25.1.1; python_version >= '3.12'

# Aditional dependencies of examples
Expand Down
3 changes: 2 additions & 1 deletion minimum-constraints.txt
Expand Up @@ -282,7 +282,8 @@ pywin32==303; sys_platform == 'win32' and python_version >= '3.6' and python_ver
pywin32==306; sys_platform == 'win32' and python_version >= '3.12'

pyzmq==17.1.3; python_version <= '3.5'
pyzmq==23.0.0; python_version >= '3.6' and python_version <= '3.11'
pyzmq==23.0.0; python_version >= '3.6' and python_version <= '3.7'
pyzmq==24.0.0; python_version >= '3.8' and python_version <= '3.11'
pyzmq==25.1.1; python_version >= '3.12'

# Aditional dependencies of examples
Expand Down

0 comments on commit 2298619

Please sign in to comment.