diff --git a/.github/workflows/yarn.yml b/.github/workflows/yarn.yml index 4336c33d7c3..1ca2cd94c6e 100644 --- a/.github/workflows/yarn.yml +++ b/.github/workflows/yarn.yml @@ -42,7 +42,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install poetry - run: pip install poetry==1.1.12 + run: pip install poetry==1.4.2 - uses: browser-actions/setup-firefox@latest with: firefox-version: latest @@ -67,6 +67,7 @@ jobs: with: parallel: true flag-name: Unit Test + coveralls_finish: needs: test runs-on: ubuntu-latest diff --git a/docs/devinstall.rst b/docs/devinstall.rst index d7550be573b..d5f8db7ed1f 100644 --- a/docs/devinstall.rst +++ b/docs/devinstall.rst @@ -39,7 +39,7 @@ Install poetry -------------- Install poetry to handle python dependencies:: - pip install poetry==1.1.12 + pip install poetry==1.4.2 App Store Setup --------------- diff --git a/docs/prodinstall.rst b/docs/prodinstall.rst index de86360074e..26c31ad53a4 100644 --- a/docs/prodinstall.rst +++ b/docs/prodinstall.rst @@ -67,7 +67,7 @@ Next install the required libraries:: pip install --upgrade wheel pip install --upgrade pip - pip install poetry==1.1.12 + pip install poetry==1.4.2 Setting Up Poetry ----------------- diff --git a/pyproject.toml b/pyproject.toml index 6c92a373e6f..1ce486e8dd6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "nextcloudappstore/" +name = "nextcloudappstore" version = "1.0.0" description = "App store for Nextcloud apps" authors = ["Morris Jobke "] @@ -13,7 +13,7 @@ django-parler-rest = "^2.1" django-parler = "^2.3" django-allauth = "^0.47.0" lxml = "^4.7.1" -requests = "^2.27.0" +requests = ">=2.27.0, <2.30.0" # till cachecontrol get updated django-cors-middleware = "^1.5.0" django-csp = "^3.7" pyOpenSSL = "^23.0.0" @@ -38,7 +38,7 @@ mypy = "*" bandit = "*" django-debug-toolbar = "*" coverage = "*" -selenium = "" +selenium = "*" coveralls = "*" types-requests = "^2.26.3" types-pyOpenSSL = "^23.0.0"