diff options
author | Matthew Butner <mfbutner@ucdavis.edu> | 2022-08-21 13:19:22 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 13:19:22 -0800 |
commit | e524b2025f5eb280e3b50d1457fb1ae4814ea02e (patch) | |
tree | 18f655c56493acb552302e453ba90a85d14f4182 /docs/userguide | |
parent | d486278ab44a3081a72b2eae29ce6321f5d762b0 (diff) | |
download | python-setuptools-git-e524b2025f5eb280e3b50d1457fb1ae4814ea02e.tar.gz |
[Docs] Typo in Dependency Management pyproject.toml
Under the Dependency Management pyproject.toml example, requests was mistyped as requires.
Diffstat (limited to 'docs/userguide')
-rw-r--r-- | docs/userguide/quickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/quickstart.rst b/docs/userguide/quickstart.rst index e2afdb8b..13846e20 100644 --- a/docs/userguide/quickstart.rst +++ b/docs/userguide/quickstart.rst @@ -309,7 +309,7 @@ The example below show how to configure this kind of dependencies: # ... dependencies = [ "docutils", - "requires <= 0.4", + "requests <= 0.4", ] # ... |