fix for django-extra-views 0.12.0 Updated class EventSeriesForm to use factory_kwargs.

This commit is contained in:
2018-12-19 18:06:15 +01:00
parent a3ac722acf
commit bb7d4c8a08
4 changed files with 27 additions and 11 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
PROJECT_PATH=$(CURDIR)
VENV_PATH=$(PROJECT_PATH)/venv
.PHONY: venv
venv: ## create venv for this Django Project
python3.5 -m venv --clear $(VENV_PATH)
( \
source $(VENV_PATH)/bin/activate; \
pip --upgrade pip; \
pip install -r $(PROJECT_PATH)/requirements/development.txt; \
)