mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
Keep version numbers of all requirements fixed
This commit is contained in:
parent
bd61598266
commit
b8c6a0c894
5 changed files with 20 additions and 14 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -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
3
requirements/build.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# For the test action on github
|
||||
|
||||
pyinstaller==5.6.2
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
8
setup.py
8
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue