Skip to content

Commit 36f232c

Browse files
committed
Update the README
Now that there is only a single dependency configuration we need to update the README's directions for updating Python dependencies.
1 parent 723a78e commit 36f232c

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

README.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,15 @@ docker compose down
5959

6060
## How to update Python dependencies ##
6161

62-
The Python dependencies are maintained using a
63-
[Pipenv](https://github.com/pypa/pipenv) configuration for each
64-
supported Python version. Changes to requirements should be made to
65-
the respective `src/py<Python version>/Pipfile`. More information
66-
about the `Pipfile` format can be found in the [`pipenv`
67-
documentation](https://pipenv.pypa.io/en/latest/pipfile.html#example-pipfile).
68-
The accompanying `Pipfile.lock` files contain the specific dependency
69-
versions that will be installed. These files can be updated like so
70-
(using the Python 3.9 configuration as an example):
62+
The Lambda's Python dependencies are maintained using a [Pipenv](https://github.com/pypa/pipenv)
63+
configuration. Changes to requirements should be made to the `Pipfile` located at
64+
`build/Pipfile`. More information about the `Pipfile` format can be found in the
65+
[`pipenv` documentation](https://pipenv.pypa.io/en/latest/pipfile.html#example-pipfile).
66+
The accompanying `Pipfile.lock` file contains the specific dependency versions
67+
that will be installed. This file is updated automatically like so:
7168

7269
```console
73-
cd src/py3.9
70+
cd build
7471
pipenv lock
7572
```
7673

0 commit comments

Comments
 (0)