@@ -31,7 +31,7 @@ pipx inject pytest pytest-{forked,localftpserver,pythonpath,subprocess,timeout}
3131pipx inject pylint pyfakefs six mock pytest{,_forked,-localftpserver}
3232```
3333
34- Use the ` deadsnakes ` ppa to install Python versions like 3.8 and 3.11 (see below)
34+ Use the ` deadsnakes ` PPA to install Python versions like 3.8 and 3.11 (see below)
3535
3636## Development setup on Ubuntu 22.04
3737
@@ -105,15 +105,14 @@ Explanation:
105105
106106## Installation of all development dependencies
107107
108- Using pip-tools, you can extract the requirements and extras from ` pyptoject .toml` :
108+ Using pip-tools, you can extract the requirements and extras from ` pyproject .toml` :
109109
110110``` bash
111111PYTHON=python3.10
112112EXTRAS=.,test,mypy,pyright,pytype,tox
113- PFLAGS=" --no-warn-conflicts"
114113$PYTHON -m pip install pip-tools==7.3.0
115- $PYTHON -m piptools compile --extra=$EXTRAS -o - pyproject.toml |
116- $PYTHON -m pip install -r /dev/stdin $PFLAGS
114+ $PYTHON -m pip- compile --extra=$EXTRAS -o - pyproject.toml |
115+ $PYTHON -m pip install -r /dev/stdin --no-warn-conflicts "
117116` ` `
118117
119118With this, you can run most of the CI tests run by ` tox` and GitHub CI also from the shell.
@@ -192,7 +191,7 @@ To run `podman` as your user, run these as your user:
192191` ` ` bash
193192systemctl enable --now --user podman.socket # Only configures the podman socket
194193systemctl start --user podman.socket # Start the docker-compatible unix socket
195- # Ubuntu only, Fedora 37 configures it already with more unqualifies search registries:
194+ # Ubuntu only, Fedora 37 configures it already with more unqualified search registries:
196195echo 'unqualified-search-registries = [" docker.io" ]' | sudo tee -a /etc/containers/registries.conf
197196sudo touch /etc/containers/nodocker # Quiet the docker emulation notification
198197echo " --container-daemon-socket unix://$XDG_RUNTIME_DIR /podman/podman.sock" >>~/.actrc
@@ -215,7 +214,7 @@ Switch to `iptables-legacy` so that Docker will work:
215214# ## Copy selection on selecting test (without need for Ctrl-C)
216215
217216On traditional X11 and KDE Plasma, selected text is automatically copied
218- to the X selection/clipboard for pasting it. To use this engrained behavior
217+ to the X selection/clipboard for pasting it. To use this engrained behaviour
219218on Windows as well, it seems the only reliable way to have it for all apps
220219is a ` AutoHotKey` script:
221220
0 commit comments