Skip to content

Commit

Permalink
tests: pymssql universal2 wheels are broken on arm64 macOS
Browse files Browse the repository at this point in the history
`pymssql` 2.3.2 provides `universal2` macOS wheels for python >= 3.11,
but they are broken on arm64 macOS; the `pymssql._mssql` extension
fails to load with `symbol not found in flat namespace '_bcp_batch'`.
  • Loading branch information
rokm committed Nov 25, 2024
1 parent 5ba8673 commit acaee51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions requirements-test-libraries.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ pyusb==1.2.1
pyviz-comms==3.0.3
pyvjoy==1.0.1; sys_platform == 'win32'
pynput==1.7.7
# pymssql provides only x86_64 macOS wheels for python 3.8 and 3.10
pymssql==2.3.2; python_version >= "3.9" and (python_version >= '3.11' or sys_platform != 'darwin' or platform_machine != 'arm64')
# pymssql provides only x86_64 macOS wheels for python 3.8 and 3.10. But at the time of writing (v2.3.2), the universal2 wheels are broken on arm64 macOS as well.
pymssql==2.3.2; python_version >= "3.9" and (sys_platform != 'darwin' or platform_machine != 'arm64')
pystray==0.19.5
pythonnet==3.0.4
pytz==2024.2
Expand Down

0 comments on commit acaee51

Please sign in to comment.