Skip to content

Commit

Permalink
Fix development installation on Windows
Browse files Browse the repository at this point in the history
Fixes 3107e41

Since that commit, installing benchexec[dev] would require installation
of pystemd, which does not make sense and does not work on Windows.
We can fix this by declaring pystemd as a dependency only for
non-Windows platforms.
  • Loading branch information
PhilippWendler committed Oct 8, 2024
1 parent fae2bf9 commit 7b04ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dev =
pytest
lxml
systemd =
pystemd >= 0.7.0
pystemd >= 0.7.0; platform_system != 'Windows'

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit 7b04ac9

Please sign in to comment.