Skip to content

Commit b46f611

Browse files
committed
fix setup and workflow bugs
1 parent fbd4bd7 commit b46f611

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pytest-web.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
# install OpenQuake requirements EXCEPT django* packages:
6767
pip install -r "./requirements/${{ matrix.config.req-file }}"
6868
# install this package (upgrade when possible to latest):
69-
pip install -U ".[web]"
69+
pip install -Ue ".[web]"
7070
# install django (upgrade aggressively):
7171
PIP_INDEX_URL=https://pypi.org/simple pip install -U Django --upgrade-strategy eager
7272

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
'plotly>=5.10.0',
3838
'kaleido>=0.2.1', # required by plotly to save images
3939
'gunicorn>=21.2.0', # production server (not necessary local browser testing, but harmless)
40-
'python-dotenv>=1.2.2' # same as above (might be useful if we use .env in dev mode)
40+
'python-dotenv>=1.2.2', # same as above (might be useful if we use .env in dev mode)
4141
# test packages:
4242
'pytest',
4343
'pytest-django>=3.4.8',

0 commit comments

Comments
 (0)