Skip to content

Commit

Permalink
pin PyQt5 and PyInstaller versions (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mpr1c3 authored Aug 1, 2023
1 parent 1266d73 commit b813808
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
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

0 comments on commit b813808

Please sign in to comment.