Skip to content

Commit b5c48af

Browse files
committed
Update README for poetry
1 parent f2205cb commit b5c48af

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

doc/developing.rst

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ adjust the code and the installed software will reflect the changes.
5959
6060
$ tmuxp
6161
62-
Using pipenv
62+
Using poetry
6363
^^^^^^^^^^^^
6464

6565
To begin developing, check out the code from github:
@@ -70,33 +70,26 @@ To begin developing, check out the code from github:
7070
$ cd tmuxp
7171
7272
You can create a virtualenv, and install all of the locked
73-
packages as listed in Pipfile.lock:
73+
packages as listed in poetry.lock:
7474

7575
.. code-block:: bash
7676
77-
$ pipenv install --ignore-pipfile --dev
78-
79-
If you prefer to install updated packages based on Pipfile only, not being
80-
bound by Pipfile.lock:
81-
82-
.. code-block:: bash
83-
84-
$ pipenv install --skip-lock --dev
77+
$ poetry install
8578
8679
If you ever need to update packages during your development session, the
87-
following command can be used to update all packages as per Pipfile settings or
80+
following command can be used to update all packages as per poetry settings or
8881
individual package (second command):
8982

9083
.. code-block:: bash
9184
92-
$ pipenv update --dev
93-
$ pipenv update requests
85+
$ poetry update
86+
$ poetry update requests
9487
9588
Then activate it to your current tty / terminal session with:
9689

9790
.. code-block:: bash
9891
99-
$ pipenv shell
92+
$ poetry shell
10093
10194
That is it! You are now ready to code!
10295

0 commit comments

Comments
 (0)