fix for django-extra-views 0.12.0 Updated class EventSeriesForm to use factory_kwargs.
This commit is contained in:
12
Makefile
Normal file
12
Makefile
Normal 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; \
|
||||
)
|
||||
Reference in New Issue
Block a user