Keep version numbers of all requirements fixed

This commit is contained in:
Rebecca Breu 2023-11-22 22:26:23 +01:00
parent bd61598266
commit b8c6a0c894
5 changed files with 20 additions and 14 deletions

View file

@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install -r requirements/build.txt
pip install -e .
- name: Run Pyinstaller
run: |

3
requirements/build.txt Normal file
View file

@ -0,0 +1,3 @@
# For the test action on github
pyinstaller==5.6.2

View file

@ -1,6 +1,8 @@
-r test.txt
# For developers
flake8
pybadges
pyinstaller >= 4.5
yamllint
-r test.txt
-r build.txt
flake8==5.0.4
pybadges==3.0.0
yamllint==1.28.0

View file

@ -1,4 +1,5 @@
coverage
httpretty
pytest
pytest-qt>=4
# For the test action on github
coverage==6.5.0
httpretty==1.1.4
pytest==7.2.0
pytest-qt==4.2.0

View file

@ -9,10 +9,10 @@ setup(
license='LICENSE',
description='A simple reference image viewer',
install_requires=[
'pyQt6>=6.2.0',
'pyQt6-Qt6>=6.2.0',
'rectangle-packer>=2.0.1',
'exif',
'pyQt6==6.4.0',
'pyQt6-Qt6==6.4.0',
'rectangle-packer==2.0.1',
'exif==1.3.5',
],
packages=[
'beeref',