ReproNim / reproman

ReproMan (AKA NICEMAN, AKA ReproNim TRD3)
https://reproman.readthedocs.io
Other
24 stars 14 forks source link

OSX: we should not deman installation of reprozip #276

Closed yarikoptic closed 6 years ago

yarikoptic commented 6 years ago

it is not available for anything but linux and thus now pip install niceman fails on osx

remram44 commented 6 years ago

You can use something like:

install_requires=[
    'reprozip; sys_platform=="linux" or sys_platform=="linux2"',
    ...
]

See PEP 508

kyleam commented 6 years ago

@remram44 Thanks!