8000 Actualizar la documentación para indicar que el clon debe ser recursivo by kbiggers · Pull Request #3353 · python/python-docs-es · GitHub
[go: up one dir, main page]

Skip to content

Actualizar la documentación para indicar que el clon debe ser recursivo #3353

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Hacer que no instentamos instalar los requisitos de requirements.txt …
…a menos que estamos haciendo una construcción¨
  • Loading branch information
kbiggers committed Jan 27, 2025
commit effa44412a3a4df59c8cbc1c98d887a537c580fc
13 changes: 0 additions & 13 deletions .overrides/CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,6 @@ podrás realizar todas las contribuciones que quieras.
``powrap`` y ``pospell`` para poder verificar tus archivos traducidos,
y también construir la documentación localmente.

.. note::

Si vas a querer construir la documentación de una manera local, debes inicializar
los submódulos para poder hacer la construcción. (nota: esta inicialización puede llevar tiempo)
```
git submodule update --init
pip install -r requirements.txt
```
y después para hacer la construcción
```
make build
```

.. _que-archivo-traducir:

Paso 1: ¿Qué archivo traducir?
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
0