Skip to content

Commit

Permalink
Fix conditional requirement on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbrittain committed Nov 17, 2016
1 parent aa1e4fa commit 42a1a44
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGE HISTORY
==============

1.7.2
-----
- Fixed Windows dependencies

1.7.1
-----
- Fixed Linux distribution
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@
'pyfiglet >= 0.7.2',
'Pillow >= 2.7.0',
'future',
] + (['pypiwin32'] if sys.platform == 'win32' else []),
],
extras_require={
':sys_platform == "win32"': ['pypiwin32'],
},
setup_requires=['setuptools_scm'],
tests_require=[
'mock',
Expand Down

0 comments on commit 42a1a44

Please sign in to comment.