Skip to content

Commit

Permalink
fix #153 (#155)
Browse files Browse the repository at this point in the history
Fix dependency conflict during installation on Mac Apple Silicon, #153
  • Loading branch information
marvinschmitt committed Mar 19, 2024
1 parent b38f23e commit 543c45e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ install_requires =
seaborn >= 0.11
tqdm >= 4.65
matplotlib >= 3.5
tensorflow-macos >= 2.10, < 2.16; sys_platform == 'darwin' and platform_machine == 'arm64'
tensorflow >= 2.10.1, < 2.16; sys_platform != 'darwin' or platform_machine != 'arm64'
tensorflow-macos >= 2.10, < 2.16; sys_platform == 'darwin' and platform_machine == 'x86_64'
tensorflow >= 2.10.1, < 2.16; sys_platform != 'darwin' or platform_machine == 'arm64'
tensorflow_probability >= 0.17, < 0.24

[options.extras_require]
Expand Down

0 comments on commit 543c45e

Please sign in to comment.