diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 238f0c00d..b2f3212f4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -160,7 +160,7 @@ jobs: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }} restore-keys: ${{ runner.os }}-pip- - - run: pip install pyinstaller==4.4 + - run: pip install pyinstaller==5.3 - run: pip install -e . - if: startsWith(github.ref, 'refs/tags/v') run: python docker/set_build.py diff --git a/setup.py b/setup.py index e71b38ebe..1fd72734a 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( long_description_content_type="text/markdown", keywords="lbry protocol media", license='MIT', - python_requires='==3.9.*', + python_requires='>=3.9', packages=find_packages(exclude=('tests',)), zip_safe=False, entry_points={ @@ -40,7 +40,7 @@ setup( 'protobuf==3.17.2', 'prometheus_client==0.7.1', 'ecdsa==0.13.3', - 'pyyaml==5.3.1', + 'pyyaml==5.4', 'docopt==0.6.2', 'hachoir==3.1.2', 'coincurve==15.0.0',