Skip to content

Commit

Permalink
Unlock requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored Sep 18, 2023
1 parent 96010f0 commit 944d8c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$dev = If ($Env:GITHUB_JOB -eq 'Build') { '' } Else { '-dev' }
# Ensures installation tools are up to date. This also aliases pip to pip3 on MacOS.
python -m pip install wheel pip setuptools --upgrade
pip install -r "$PSScriptRoot/requirements$dev.txt" --upgrade --pre # Prereleases needed for numpy 1.26
pip install -r "$PSScriptRoot/requirements$dev.txt" --upgrade

# Patch libraries so we don't have to install from git

Expand Down
8 changes: 4 additions & 4 deletions scripts/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
certifi
ImageHash>=4.3.1 # Contains type information + setup as package not module
git+https://github.com/boppreh/keyboard.git#egg=keyboard # Fix install on macos and linux-ci https://github.com/boppreh/keyboard/pull/568
numpy>1.25 # Python 3.12 support
numpy>=1.26 # Python 3.12 support
opencv-python-headless>=4.8.0.76 # Typing fixes
packaging
Pillow>=9.2 # gnome-screeshot checks
psutil
PyAutoGUI
PyWinCtl>=0.0.42 # py.typed
# PySide6-Essentials>=6.5.1 # fixes incomplete tuple return types https://bugreports.qt.io/browse/PYSIDE-2285
requests<=2.28.1 # 2.28.2 has issues with PyInstaller https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/534
PySide6-Essentials>=6.5.1 # fixes incomplete tuple return types https://bugreports.qt.io/browse/PYSIDE-2285
requests>=2.28.2 # charset_normalizer 3.x update
toml
typing-extensions>=4.4.0 # @override decorator support
#
# Build and compile resources
pyinstaller>=5.13 # Python 3.12 support
pyinstaller-hooks-contrib>=2022.9 # opencv-python 4.6 support. Changes for pywintypes and comtypes
pyinstaller-hooks-contrib>=2022.15 # charset-normalizer fix https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/534
#
# https://peps.python.org/pep-0508/#environment-markers
#
Expand Down

0 comments on commit 944d8c9

Please sign in to comment.