Skip to content
This repository has been archived by the owner on Nov 14, 2020. It is now read-only.

Commit

Permalink
Merge pull request #55 from firstlookmedia/51_pipenv
Browse files Browse the repository at this point in the history
Make pyobjc-* pipenv dependencies only install in macOS
  • Loading branch information
micahflee authored Oct 17, 2019
2 parents 58aef2a + 9ca684d commit bab4412
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 40 deletions.
6 changes: 3 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ requests = "*"
aiohttp = "==3.6.2"
appdirs = "*"
urllib3 = "*"
pyobjc-core = "*"
pyobjc-framework-cocoa = "*"
pyobjc-framework-quartz = "*"
pyqt5 = "*"
pyobjc-core = { version = "*", platform_system = "== 'Darwin'" }
pyobjc-framework-cocoa = { version = "*", platform_system = "== 'Darwin'" }
pyobjc-framework-quartz = { version = "*", platform_system = "== 'Darwin'" }

[requires]
python_version = "3.7"
Expand Down
80 changes: 43 additions & 37 deletions Pipfile.lock

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

0 comments on commit bab4412

Please sign in to comment.