Skip to content

Commit cf1b0b4

Browse files
Merge pull request #3 from alexanderankin/update-package-and-docs-locations
update package and docs locations
2 parents e59cbdd + 5e1988a commit cf1b0b4

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

guide/getting-started-with-testcontainers-for-python/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ $ source venv/bin/activate
4444

4545
We are going to use https://www.psycopg.org/psycopg3/[psycopg3] for talking to the Postgres database,
4646
https://pytest.org/[pytest] for testing,
47-
and https://testcontainers-python.readthedocs.io/en/latest/README.html[testcontainers-python] for running a PostgreSQL database in a container.
47+
and https://testcontainers-python.readthedocs.io/[testcontainers-python] for running a PostgreSQL database in a container.
4848

4949
Once the virtual environment is activated, we can install the required dependencies using pip as follows:
5050

5151
[source,shell]
5252
----
53-
$ pip install psycopg pytest testcontainers-postgres
53+
$ pip install psycopg pytest testcontainers[postgres]
5454
$ pip freeze > requirements.txt
5555
----
5656

requirements.txt

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
certifi==2023.11.17
1+
certifi==2024.2.2
22
charset-normalizer==3.3.2
3-
docker==6.1.3
4-
idna==3.6
3+
docker==7.0.0
4+
exceptiongroup==1.2.1
5+
idna==3.7
56
iniconfig==2.0.0
6-
packaging==23.2
7-
pluggy==1.3.0
8-
psycopg==3.1.14
9-
psycopg2-binary==2.9.9
10-
pytest==7.4.3
7+
packaging==24.0
8+
pluggy==1.5.0
9+
psycopg==3.1.18
10+
pytest==8.1.1
1111
requests==2.31.0
12-
SQLAlchemy==2.0.23
13-
testcontainers-core==0.0.1rc1
14-
testcontainers-postgres==0.0.1rc1
15-
typing_extensions==4.8.0
16-
urllib3==2.1.0
17-
websocket-client==1.7.0
12+
testcontainers==4.4.0
13+
tomli==2.0.1
14+
typing_extensions==4.11.0
15+
urllib3==2.2.1
1816
wrapt==1.16.0

0 commit comments

Comments
 (0)