Skip to content

Commit a3dd9f9

Browse files
Merge pull request #1783 from dandi/bf-tests2
Fix macOS-15-intel CI failures: h5py and opencv-python regressions
2 parents 836a059 + 7871a98 commit a3dd9f9

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ dependencies = [
5353

5454
"fasteners",
5555
"fscacher >= 0.3.0",
56-
# Workaround for no wheels for intel OSX as of 3.15
57-
"h5py<3.15 ; sys_platform == 'darwin' and platform_machine != 'arm64'",
58-
"h5py ; sys_platform != 'darwin' or platform_machine == 'arm64'",
5956
# 3.14.4: https://github.com/hdmf-dev/hdmf/issues/1186
6057
"hdmf != 3.5.0,!=3.14.4",
6158
"humanize",
@@ -104,7 +101,9 @@ style = [
104101
test = [
105102
"anys ~= 0.2",
106103
"coverage",
107-
"opencv-python",
104+
# Workaround for VideoWriter regression in 4.13.0.90 on Intel macOS
105+
"opencv-python < 4.13 ; sys_platform == 'darwin' and platform_machine != 'arm64'",
106+
"opencv-python ; sys_platform != 'darwin' or platform_machine == 'arm64'",
108107
"pytest",
109108
"pytest-cov",
110109
"pytest-mock",

0 commit comments

Comments
 (0)