Skip to content

Commit

Permalink
Rework operating system checks
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Aug 24, 2023
1 parent 027cf3b commit 382b522
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
"asv-runner>=v0.0.9",
"json5",
"tabulate",
"colorama; os_name == 'nt'",
"colorama; platform_system == 'Windows'",
"pyyaml; platform_python_implementation != \"PyPy\"",
"pympler; platform_python_implementation != \"PyPy\"",
]
Expand All @@ -53,8 +53,8 @@ test = [
"feedparser",
"selenium",
"pytest-rerunfailures",
"python-hglib",
"rpy2"; platform_system!='Windows' and platform_python_implementation != 'PyPy'"
"python-hglib; platform_system != 'Windows'",
"rpy2; platform_system != 'Windows' and platform_python_implementation != 'PyPy'",
]
doc = [
"sphinx",
Expand Down

0 comments on commit 382b522

Please sign in to comment.