diff --git a/advanced_programming/structuring_projects.ipynb b/advanced_programming/structuring_projects.ipynb index dcc853acbc40d3ae5b910acbb1b14e096ee7eea2..c8de9a9be3f7362b82ad188588b5d607e4046040 100644 --- a/advanced_programming/structuring_projects.ipynb +++ b/advanced_programming/structuring_projects.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "2ad24151", + "id": "9f3a36c8", "metadata": {}, "source": [ "# Structuring a Python project\n", @@ -46,7 +46,6 @@ "> mymodule.py\n", "> README\n", "> LICENSE\n", - "> requirements.txt\n", "> pyproject.toml\n", "> ```\n", "\n", diff --git a/advanced_programming/structuring_projects.md b/advanced_programming/structuring_projects.md index 67c9f36544022e8bcf079210295471c226ffdaa8..f087613f7c1953a9f9d707a2805aaf07bea625ba 100644 --- a/advanced_programming/structuring_projects.md +++ b/advanced_programming/structuring_projects.md @@ -39,7 +39,6 @@ A Python project directory should, at the very least, have a structure that rese > mymodule.py > README > LICENSE -> requirements.txt > pyproject.toml > ```