Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some more type annotations to clients.py #382

Merged
merged 6 commits into from
Sep 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update install instructions to account for PEP 668
  • Loading branch information
mfussenegger committed Sep 9, 2024
commit 0a2e14af02c0bff2979c7cdfd1d2b9b2704f46c6
9 changes: 3 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,10 @@ Python >= 3.7 is required to use the command line tools.

Install them using `pip <https://pip.pypa.io/en/stable/>`_::

python3.7 -m pip install --user cr8

This will install ``cr8`` into ``~/.local/bin``. Either use
``~/.local/bin/cr8`` to launch it or add ``~/.local/bin`` to your ``$PATH``
environment variable.

python3 -m venv venv
venv/bin/python -m pip install cr8

This will install ``cr8`` into ``venv/bin``
An alternative is to download a single ``zipapp`` file from the `releases page
<https://github.com/mfussenegger/cr8/releases>`_.

Expand Down
Loading