Unpin froide dependency in setup.py

This commit is contained in:
Stefan Wehrmeyer 2023-02-03 17:42:27 +01:00
parent 80e56c1702
commit 575379c3fb
2 changed files with 2 additions and 1 deletions

View file

@ -14,6 +14,7 @@ docker compose up -d
python3 -m venv .venv python3 -m venv .venv
source .venv/bin/activate source .venv/bin/activate
# Install dependencies # Install dependencies
pip install -e git+https://github.com/okfde/froide.git@main#egg=froide
pip install -e . pip install -e .
# Setup initial database # Setup initial database
./manage.py migrate ./manage.py migrate

View file

@ -34,7 +34,7 @@ setup(
author_email="mail@stefanwehrmeyer.com", author_email="mail@stefanwehrmeyer.com",
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
"froide @ git+https://github.com/okfde/froide.git@main#egg=froide", "froide",
"django-cms", "django-cms",
"django-filer", "django-filer",
"psycopg2", "psycopg2",