Skip to content

Commit 8b59b0c

Browse files
committed
Remove remaining tickets
1 parent d3cad77 commit 8b59b0c

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

src/doc/en/developer/git_advanced.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ that is not associated to any local branch::
6363
This is perfectly fine. You can switch to an existing branch (with the
6464
usual ``git checkout my_branch``) and back to your detached head.
6565

66-
Detached heads can be used to your advantage when reviewing tickets. Just check
66+
Detached heads can be used to your advantage when reviewing PRs. Just check
6767
out the commit (look at the "Commits" tab of the PR) that you are reviewing as
6868
a detached head. Then you can look at the changes and run tests in the detached
6969
head. When you are finished with the review, you just abandon the detached

src/doc/en/developer/packaging_sage_library.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ The source directory of a distribution package, such as
167167
the current development release is ``9.7.beta8``, then such a
168168
version could be marked ``9.7.beta8.post1``.
169169

170-
Also sometimes when working on tickets it may be necessary to
170+
Also sometimes when working on PRs it may be necessary to
171171
increment the version because a new feature is needed in another
172172
distribution package. Such versions should be marked by using the
173173
version number of the anticipated next development release and

src/doc/en/developer/review.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ lisp, gmp), it is no longer a problem that belongs in our tracker.
157157
If your distribution's Pari package is buggy for example, file a
158158
bug report with them. We are usually willing and able to solve
159159
the problem, but there are no guarantees that we will help you
160-
out. Looking at the open number of tickets that are Sage specific,
160+
out. Looking at the open number of PRs that are Sage specific,
161161
you hopefully will understand why.
162162

163163
**No Support Discussions**: GitHub is not meant to
@@ -184,7 +184,7 @@ Sage Release Manager uses to make releases. Here it is as of 2023:
184184
**Beta Release Stage**: For preparing a new beta release or the first release
185185
candidate, all positively reviewed PRs with the forthcoming release
186186
milestone are considered. PRs that have dependencies not merged yet are ignored.
187-
The Release Manager merges PRs in batches of 10 to 20 tickets, taking the
187+
The Release Manager merges PRs in batches of 10 to 20 PRs, taking the
188188
PR priority into account. If a merge conflict of a PR to the Release
189189
Manager's branch occurs, the PR is set back to "needs work" status by the
190190
Release Manager, and the list of the PRs already merged to the Release

src/doc/en/developer/tools.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,15 +162,15 @@ more thorough check::
162162
When preparing a branch for a PR that adds new code,
163163
developers should verify that ``./sage -tox -e pycodestyle`` does not
164164
issue warnings for the added code. This will avoid later cleanup
165-
tickets as the Sage codebase is moving toward full PEP 8 compliance.
165+
PRs as the Sage codebase is moving toward full PEP 8 compliance.
166166

167167
On the other hand, it is usually not advisable to mix coding-style
168168
fixes with productive changes on the same PR because this would
169169
makes it harder for reviewers to evaluate the changes.
170170

171171
By passing the options ``--count -qq`` we can reduce the output to
172172
only show the number of style violation warnings. This can be helpful
173-
for planning work on coding-style clean-up tickets that focus on one
173+
for planning work on coding-style clean-up PRs that focus on one
174174
or a few related issues::
175175

176176
$ ./sage -tox -e pycodestyle -- --count -qq src/sage

src/doc/en/developer/walkthrough.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,10 @@ time.
251251
.. NOTE::
252252

253253
If you have `pulled a branch from the GitHub Sage repository
254-
<https://doc.sagemath.org/html/en/developer/manual_git.html#checking-out-tickets>`_,
255-
it may depend on changes to third-party packages, so ``./sage -br``
256-
may fail. If this happens (and you believe the code in this branch
257-
should compile), try running ``make build``.
254+
<https://doc.sagemath.org/html/en/developer/workflows.html#checking-out-an-existing-pr>`_,
255+
it may depend on changes to third-party packages, so ``./sage -br`` may
256+
fail. If this happens (and you believe the code in this branch should
257+
compile), try running ``make build``.
258258

259259
Rarely there are conflicts with other packages,
260260
or with the already-installed older version of the package that you

src/doc/en/faq/faq-contribute.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ I submitted a bug fix to the GitHub Sage repo several weeks ago. Why are you ign
172172
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
173173

174174
We are not trying to ignore your branch. Most people who work on Sage do so
175-
in their free time. With hundreds of open tickets of varying degrees of
176-
impacts on the whole Sage community, people who work on tickets need
177-
to prioritize their time and work on those tickets that interest
175+
in their free time. With hundreds of open PRs of varying degrees of
176+
impacts on the whole Sage community, people who work on PRs need
177+
to prioritize their time and work on those PRs that interest
178178
them. Sometimes you may be the only person who understands your
179179
branch. In that case, you are encouraged to take extra care to make it
180180
as easy as possible for anyone to review. Here are some
@@ -189,7 +189,7 @@ tips on making your branch easy to review:
189189
* Have you clearly described how your branch solves the problem under
190190
consideration?
191191
* Have you clearly described how to test the changes in your branch?
192-
* Have you listed any tickets that your branch depends on?
192+
* Have you listed any issues/PRs that your branch depends on?
193193
* Is your branch based on a recent (preferably, the latest) Sage beta version?
194194
* Does your branch
195195
`follow relevant conventions <https://doc.sagemath.org/html/en/developer/#writing-code-for-sage>`_

src/doc/en/faq/faq-general.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ testing <../developer/portability_testing.html>`_ in the Developer's
258258
Guide for details.
259259

260260

261-
With so many bugs in Sage and hundreds of open tickets, why don't you produce a stabilization release?
261+
With so many bugs in Sage and hundreds of open issues, why don't you produce a stabilization release?
262262
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
263263

264264
Any software package contains bug. With something as complex as Sage, neither
@@ -269,7 +269,7 @@ A Sage release cycle lasts for a few months, with several betas appearing at
269269
1-2 week intervals, followed by several release candidates (as of 2022). Under
270270
this schedule and with the limited capacity of the Sage developer community,
271271
the project cannot make stabilization releases. However, important
272-
bug fix tickets are merged with high priority and will be available in the
272+
bug fix PRs are merged with high priority and will be available in the
273273
development release. Thanks to rigorous integration testing by our dedicated
274274
Release Manager, development releases (betas and release candidates) are
275275
generally safe and reliable to use.

0 commit comments

Comments
 (0)