Skip to content

Commit

Permalink
Use sys.platform check for cgsystemd dep
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Dec 5, 2023
1 parent 4b281c1 commit c43aa73
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cattrs = {version="==23.2.3", python_version=">='3.7'"}
certifi = "==2023.11.17"
charset-normalizer = "==3.3.2"
click = "==8.1.7"
cysystemd = {version="==1.6.0", extras=["systemd"]}
cysystemd = {version="==1.6.0", sys_platform="=='linux'"}
deprecated = "==1.2.14"
idna = {version="==3.6", python_version=">='3.5'"}
inquirerpy = "==0.3.4"
Expand Down
7 changes: 2 additions & 5 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cattrs==23.2.3; python_version >= '3.8'
certifi==2023.11.17; python_version >= '3.6'
charset-normalizer==3.3.2; python_full_version >= '3.7.0'
click==8.1.7; python_version >= '3.7'
cysystemd[systemd]==1.6.0; python_version >= '3.7' and python_version < '4'
cysystemd==1.6.0; python_version >= '3.7' and python_version < '4' and sys_platform == 'linux'
deprecated==1.2.14; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
idna==3.6; python_version >= '3.5'
inquirerpy==0.3.4; python_version >= '3.7' and python_version < '4.0'
Expand Down

0 comments on commit c43aa73

Please sign in to comment.