- Create a virtual environment
python -m venv venv
- Activate virtual environment
source venv/bin/activate
- Pip install requirements
pip install -r requirements.txt
- Run dev server
mkdocs serve
- Add the following lines and update the text to
overrides/main.html
{% block announce %}
<p>Attend the <a href="https://conference.pytexas.org">PyTexas 2025 Conference</a> April 11 - 13, 2025</p>
{% endblock %}
- Edit constraints.txt to add or update any library version constraints.
- Compile the
requirements.in
withconstraints.txt
to generate a version lockedrequirements.txt
file. If usinguv
:If usinguv pip compile requirements.in -c constraints.txt -o requirements.txt
pip-tools
:pip compile requirements.in -c constraints.txt -o requirements.txt
- Commit the changed
requirements.txt
and log a Pull Request.