Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .overrides/CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ podrás realizar todas las contribuciones que quieras.

#. (Opcional) Instala los requerimientos del proyecto::

pip install -r requirements.txt
pip install -r requirements-own.txt

.. note::

Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ do_build:
setup: venv
git submodule sync
git submodule update --init --force --depth 1 $(CPYTHON_PATH)
# Now that we've initialized the submodules, install all requirements necessary for the build
$(VENV)/bin/python -m pip install -q -r requirements.txt



# venv: create a virtual environment which will be used by almost every
Expand All @@ -66,7 +69,7 @@ venv:
$(PYTHON) -m venv --prompt $(LANGUAGE_TEAM) $(VENV); \
fi

$(VENV)/bin/python -m pip install -q -r requirements.txt
$(VENV)/bin/python -m pip install -q -r requirements-own.txt


# serve: serve the documentation in a simple local web server, using cpython
Expand Down