Skip to content

Commit 5e28aff

Browse files
authored
Remove broken link (#3072)
1 parent b3fc5ca commit 5e28aff

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
rev: 1.15.0
2828
hooks:
2929
- id: blacken-docs
30-
additional_dependencies: [black==23.3]
30+
additional_dependencies: [black==23.7]
3131
- repo: https://github.com/astral-sh/ruff-pre-commit
3232
rev: "v0.0.280"
3333
hooks:

docs/changelog/3072.doc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix broken links - by :user:`gaborbernat`.

docs/development.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,10 @@ must have legal permission to distribute any code you contribute to tox and it m
132132
Provide tests that cover your changes and run the tests locally first. tox :ref:`supports <compatibility-requirements>`
133133
multiple Python versions and operating systems. Any pull request must consider and work on all these platforms.
134134

135-
Pull requests should be small to facilitate review. Keep them self-contained, and limited in scope. `Studies have shown
136-
<https://www.kessler.de/prd/smartbear/BestPracticesForPeerCodeReview.pdf>`_ that review quality falls off as patch size
137-
grows. Sometimes this will result in many small PRs to land a single large feature. In particular, pull requests must
138-
not be treated as "feature branches", with ongoing development work happening within the PR. Instead, the feature should
139-
be broken up into smaller, independent parts which can be reviewed and merged individually.
135+
Pull requests should be small to facilitate review. Keep them self-contained, and limited in scope. Studies have shown
136+
that review quality falls off as patch size grows. In particular, pull requests must not be treated as
137+
"feature branches", with ongoing development work happening within the PR. Instead, the feature should be broken up into
138+
smaller, independent parts which can be reviewed and merged individually.
140139

141140
Additionally, avoid including "cosmetic" changes to code that is unrelated to your change, as these make reviewing the
142141
PR more difficult. Examples include re-flowing text in comments or documentation, or addition or removal of blank lines

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ dependencies = [
5454
"filelock>=3.12.2",
5555
'importlib-metadata>=6.7; python_version < "3.8"',
5656
"packaging>=23.1",
57-
"platformdirs>=3.8.1",
57+
"platformdirs>=3.9.1",
5858
"pluggy>=1.2",
5959
"pyproject-api>=1.5.3",
6060
'tomli>=2.0.1; python_version < "3.11"',
6161
'typing-extensions>=4.7.1; python_version < "3.8"',
62-
"virtualenv>=20.23.1",
62+
"virtualenv>=20.24.1",
6363
]
6464
optional-dependencies.docs = [
6565
"furo>=2023.5.20",
@@ -76,8 +76,8 @@ optional-dependencies.testing = [
7676
"covdefaults>=2.3",
7777
"detect-test-pollution>=1.1.1",
7878
"devpi-process>=0.3.1",
79-
"diff-cover>=7.6",
80-
"distlib>=0.3.6",
79+
"diff-cover>=7.7",
80+
"distlib>=0.3.7",
8181
"flaky>=3.7",
8282
"hatch-vcs>=0.3",
8383
"hatchling>=1.17.1",

0 commit comments

Comments
 (0)