未验证 提交 0bf881fc 编写于 作者: K Kian-Meng Ang 提交者: GitHub

doc: fix typos (#1088)

上级 36f51bd1
......@@ -9,7 +9,7 @@ Release v1.15.0 (2022-05-16)
- Replace the editable entry in `pyproject.toml` when running `pdm add --no-editable <package>`. [#1050](https://github.com/pdm-project/pdm/issues/1050)
- Ensure the pip module inside venv in installation script. [#1053](https://github.com/pdm-project/pdm/issues/1053)
- Fix the py2 compatiblity issue in the in-process `get_sysconfig_path.py` script. [#1056](https://github.com/pdm-project/pdm/issues/1056)
- Fix the py2 compatibility issue in the in-process `get_sysconfig_path.py` script. [#1056](https://github.com/pdm-project/pdm/issues/1056)
- Fix a bug that file paths in URLs are not correctly unquoted. [#1073](https://github.com/pdm-project/pdm/issues/1073)
- Fix a bug on Python 3.11 that overriding an existing command from plugins raises an error. [#1075](https://github.com/pdm-project/pdm/issues/1075)
- Replace the `${PROJECT_ROOT}` variable in the result of `export` command. [#1079](https://github.com/pdm-project/pdm/issues/1079)
......@@ -85,7 +85,7 @@ Release v1.13.5 (2022-03-23)
- Fix the compatibility when fetching license information in `show` command. [#966](https://github.com/pdm-project/pdm/issues/966)
- Don't follow symlinks for the paths in the requirement strings. [#976](https://github.com/pdm-project/pdm/issues/976)
- Use the default install scheme when installing build requirements. [#983](https://github.com/pdm-project/pdm/issues/983)
- Fix a bug that `_.site_packages` is overriden by default option value. [#985](https://github.com/pdm-project/pdm/issues/985)
- Fix a bug that `_.site_packages` is overridden by default option value. [#985](https://github.com/pdm-project/pdm/issues/985)
Release v1.13.4 (2022-03-09)
......
......@@ -9,7 +9,7 @@ The following configuration items can be retrieved and modified by `pdm config`
| `check_update` | Check if there is any newer version available | True | No | |
| `global_project.fallback` | Use the global project implicitly if no local project is found | `False` | No | |
| `global_project.path` | The path to the global project | `~/.pdm/global-project` | No | |
| `global_project.user_site` | Whther to install to user site | `False` | No | |
| `global_project.user_site` | Whether to install to user site | `False` | No | |
| `install.cache` | Enable caching of wheel installations | False | Yes | |
| `install.cache_method` | Specify how to create links to the caches(`symlink` or `pth`) | `symlink` | Yes | |
| `install.parallel` | Whether to perform installation and uninstallation in parallel | `True` | Yes | `PDM_PARALLEL_INSTALL` |
......
# PEP 621 Metadata
The standard format and all metdata fields are defined by [PEP 621](https://www.python.org/dev/peps/pep-0621/) and
The standard format and all metadata fields are defined by [PEP 621](https://www.python.org/dev/peps/pep-0621/) and
[PEP 639](https://www.python.org/dev/peps/pep-0639/).
View the PEPs for the detailed specification. These metadata are stored in `[project]` table of `pyproject.toml`.
......
......@@ -274,7 +274,7 @@ _New in version 1.12.0_
```toml
[tool.pdm.overrides]
asgiref = "3.2.10" # exact version
urllib3 = ">=1.26.2" # verison range
urllib3 = ">=1.26.2" # version range
pytz = "file:///${PROJECT_ROOT}/pytz-2020.9-py3-none-any.whl" # absolute URL
```
Each entry of that table is a package name with the wanted version.
......
......@@ -454,7 +454,7 @@ class Halo(object):
if not self.enabled:
# in case we're disabled or stream is closed while still rendering,
# we render the frame and increment the frame index, so the proper
# frame is rendered if we're reenabled or the stream opens again.
# frame is rendered if we're re-enabled or the stream opens again.
return
frame = self.frame()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册