-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move
PyQt_
dependency to a pip
-only file (requirements-pip.txt
)
- Loading branch information
1 parent
54c33ea
commit 80082c4
Showing
2 changed files
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pre-commit | ||
pytest-ordering | ||
sphinx-rtd-theme | ||
PyQt5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ numpy | |
openpyxl | ||
pandas | ||
Pillow | ||
PyQt | ||
scipy | ||
seaborn | ||
sqlalchemy==1.3.10 | ||
|
80082c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having
pyqt
inrequirements.txt
works for me withmake setup_env
and, at time of checking, installs v5.12.3.I think that, unless a package is unavailable in
conda
's channels, we should always aim to useconda
as the package manager, to avoid conflicts as much as we can. Moving installation torequirements-pip.txt
should be the less desirable option.80082c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It also worked for me locally; it did not work in CircleCI, though: 0949a46. I don't know if there's a different way to have it successfully run both locally and in CircleCI, but I have not yet found one.