Skip to content

Commit 3cefe49

Browse files
jmchiltonmr-c
authored andcommitted
Include subprocess32 when building for Mac OS X. (#762)
The code gates imports on os.name == "posix", so the dependency gates should match right?
1 parent 8c832e6 commit 3cefe49

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ shellescape>=3.4.1,<3.5
55
schema-salad>=2.6.20170927145003,<3
66
typing>=3.5.3
77
pathlib2==2.3.2; python_version<"3"
8-
subprocess32 >= 3.5.0; platform_system=="Linux"
8+
subprocess32 >= 3.5.0; os.name=="posix"
99

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
'six >= 1.8.0',
5959
],
6060
extras_require={
61-
':platform_system=="Linux"': ['subprocess32 >= 3.5.0'],
61+
':os.name=="posix"': ['subprocess32 >= 3.5.0'],
6262
':python_version<"3"': ['pathlib2 == 2.3.2'],
6363
'deps': ["galaxy-lib >= 17.09.3"]
6464
},

0 commit comments

Comments
 (0)