Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pin PyQt5 and PyInstaller versions #4

Merged
merged 1 commit into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fbs/builtin_commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def freeze(debug=False):
if not _has_module('PyInstaller'):
raise FbsError(
"Could not find PyInstaller. Maybe you need to:\n"
" pip install PyInstaller~=4.1"
" pip install PyInstaller==4.1"
)
version = SETTINGS['version']
if not is_valid_version(version):
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PyQt5~=5.12
PyInstaller~=4.1
PyQt5==5.12.3
PyInstaller==4.1
rsa>=3.4.2
boto3
sentry-sdk>=0.6.6
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _get_package_data(pkg_dir, data_subdir):
'fbs/installer/mac', 'create-dmg'
)
},
install_requires=['PyInstaller~=4.1'],
install_requires=['PyInstaller==4.1'],
extras_require={
# Also update requirements.txt when you change this:
'licensing': ['rsa>=3.4.2'],
Expand Down