Skip to content

Commit

Permalink
poetry=1.4.2, fix for psf/cachecontrol/issues/292
Browse files Browse the repository at this point in the history
Signed-off-by: bigcat88 <[email protected]>
  • Loading branch information
bigcat88 committed May 4, 2023
1 parent 21196fc commit 75ff39d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/yarn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -67,6 +67,7 @@ jobs:
with:
parallel: true
flag-name: Unit Test

coveralls_finish:
needs: test
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion docs/devinstall.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
---------------
Expand Down
2 changes: 1 addition & 1 deletion docs/prodinstall.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------------
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "nextcloudappstore/"
name = "nextcloudappstore"
version = "1.0.0"
description = "App store for Nextcloud apps"
authors = ["Morris Jobke <[email protected]>"]
Expand All @@ -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"
Expand All @@ -38,7 +38,7 @@ mypy = "*"
bandit = "*"
django-debug-toolbar = "*"
coverage = "*"
selenium = ""
selenium = "*"
coveralls = "*"
types-requests = "^2.26.3"
types-pyOpenSSL = "^23.0.0"
Expand Down

0 comments on commit 75ff39d

Please sign in to comment.