From 244b0a456ceaafdecf4ccc517d4287a6b04aaa82 Mon Sep 17 00:00:00 2001 From: Martin Mares <mj@ucw.cz> Date: Sat, 2 Jan 2021 02:21:32 +0100 Subject: [PATCH] =?UTF-8?q?Instalace:=20Je=C5=A1t=C4=9B=20mra=C5=BEen?= =?UTF-8?q?=C3=AD=20z=C3=A1vislost=C3=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ++++++++---- constraints.txt | 25 +++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 4 deletions(-) create mode 100644 constraints.txt diff --git a/README.md b/README.md index ea542f28..18ea3502 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,11 @@ ## Instalace vývojového prostředí -python3 -m venv venv -. venv/bin/activate -pip install wheel -pip install -e . + python3 -m venv venv + . venv/bin/activate + pip install wheel + pip install -c constraints.txt -e . + +## Mražení závislostí + + pip freeze | grep -v '^osmo=' >constraints.txt diff --git a/constraints.txt b/constraints.txt new file mode 100644 index 00000000..41952034 --- /dev/null +++ b/constraints.txt @@ -0,0 +1,25 @@ +bcrypt==3.2.0 +blinker==1.4 +cffi==1.14.4 +click==7.1.2 +dateutils==0.6.12 +dominate==2.6.0 +Flask==1.1.2 +Flask-Bootstrap==3.3.7.1 +Flask-SQLAlchemy==2.4.4 +Flask-WTF==0.14.3 +inflect==5.0.2 +itsdangerous==1.1.0 +Jinja2==2.11.2 +MarkupSafe==1.1.1 +pkg-resources==0.0.0 +psycopg2==2.8.6 +pycparser==2.20 +python-dateutil==2.8.1 +pytz==2020.5 +six==1.15.0 +sqlacodegen==2.3.0 +SQLAlchemy==1.3.22 +visitor==0.1.3 +Werkzeug==1.0.1 +WTForms==2.3.3 -- GitLab