From 5e1988a25a484761d92fba269473ea81e84e33f0 Mon Sep 17 00:00:00 2001 From: David Ankin Date: Thu, 25 Apr 2024 08:31:01 -0400 Subject: [PATCH] update package and docs locations --- .../index.adoc | 4 +-- requirements.txt | 26 +++++++++---------- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/guide/getting-started-with-testcontainers-for-python/index.adoc b/guide/getting-started-with-testcontainers-for-python/index.adoc index ff452a6..fea44a4 100644 --- a/guide/getting-started-with-testcontainers-for-python/index.adoc +++ b/guide/getting-started-with-testcontainers-for-python/index.adoc @@ -44,13 +44,13 @@ $ source venv/bin/activate We are going to use https://www.psycopg.org/psycopg3/[psycopg3] for talking to the Postgres database, https://pytest.org/[pytest] for testing, -and https://testcontainers-python.readthedocs.io/en/latest/README.html[testcontainers-python] for running a PostgreSQL database in a container. +and https://testcontainers-python.readthedocs.io/[testcontainers-python] for running a PostgreSQL database in a container. Once the virtual environment is activated, we can install the required dependencies using pip as follows: [source,shell] ---- -$ pip install psycopg pytest testcontainers-postgres +$ pip install psycopg pytest testcontainers[postgres] $ pip freeze > requirements.txt ---- diff --git a/requirements.txt b/requirements.txt index 90ea308..d6e342d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,18 +1,16 @@ -certifi==2023.11.17 +certifi==2024.2.2 charset-normalizer==3.3.2 -docker==6.1.3 -idna==3.6 +docker==7.0.0 +exceptiongroup==1.2.1 +idna==3.7 iniconfig==2.0.0 -packaging==23.2 -pluggy==1.3.0 -psycopg==3.1.14 -psycopg2-binary==2.9.9 -pytest==7.4.3 +packaging==24.0 +pluggy==1.5.0 +psycopg==3.1.18 +pytest==8.1.1 requests==2.31.0 -SQLAlchemy==2.0.23 -testcontainers-core==0.0.1rc1 -testcontainers-postgres==0.0.1rc1 -typing_extensions==4.8.0 -urllib3==2.1.0 -websocket-client==1.7.0 +testcontainers==4.4.0 +tomli==2.0.1 +typing_extensions==4.11.0 +urllib3==2.2.1 wrapt==1.16.0