Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to reflect 3.13's inclusion in CI #13005

Merged
merged 1 commit into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 22 additions & 8 deletions docs/html/development/ci.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ pip support a variety of Python interpreters:
- CPython 3.10
- CPython 3.11
- CPython 3.12
- CPython 3.13
- Latest PyPy3

on different operating systems:
Expand All @@ -35,8 +36,9 @@ and on different architectures:

- x64
- x86
- arm64 (macOS only)

so 42 hypothetical interpreters.
so 49 hypothetical interpreters.


Checks
Expand Down Expand Up @@ -99,6 +101,8 @@ Actual testing
| | +-------+---------------+-----------------+
| | | CP3.12| | |
| | +-------+---------------+-----------------+
| | | CP3.13| | |
| | +-------+---------------+-----------------+
| | | PyPy3 | | |
| Windows +----------+-------+---------------+-----------------+
| | x64 | CP3.8 | GitHub | GitHub |
Expand All @@ -107,9 +111,11 @@ Actual testing
| | +-------+---------------+-----------------+
| | | CP3.10| | |
| | +-------+---------------+-----------------+
| | | CP3.11| GitHub | GitHub |
| | | CP3.11| | |
| | +-------+---------------+-----------------+
| | | CP3.12| | |
| | | CP3.12| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | CP3.13| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | PyPy3 | | |
+-----------+----------+-------+---------------+-----------------+
Expand All @@ -123,6 +129,8 @@ Actual testing
| | +-------+---------------+-----------------+
| | | CP3.12| | |
| | +-------+---------------+-----------------+
| | | CP3.13| | |
| | +-------+---------------+-----------------+
| | | PyPy3 | | |
| Linux +----------+-------+---------------+-----------------+
| | x64 | CP3.8 | GitHub | GitHub |
Expand All @@ -135,17 +143,21 @@ Actual testing
| | +-------+---------------+-----------------+
| | | CP3.12| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | CP3.13| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | PyPy3 | | |
+-----------+----------+-------+---------------+-----------------+
| | arm64 | CP3.8 | | |
| | arm64 | CP3.8 | GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | CP3.9 | | |
| | | CP3.9 | GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | CP3.10| | |
| | | CP3.10| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | CP3.11| | |
| | | CP3.11| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | CP3.12| | |
| | | CP3.12| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | CP3.13| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | PyPy3 | | |
| macOS +----------+-------+---------------+-----------------+
Expand All @@ -159,5 +171,7 @@ Actual testing
| | +-------+---------------+-----------------+
| | | CP3.12| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | CP3.13| GitHub | GitHub |
| | +-------+---------------+-----------------+
| | | PyPy3 | | |
+-----------+----------+-------+---------------+-----------------+
2 changes: 1 addition & 1 deletion docs/html/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ $ pip install --upgrade pip
The current version of pip works on:

- Windows, Linux and macOS.
- CPython 3.8, 3.9, 3.10, 3.11, 3.12, and latest PyPy3.
- CPython 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, and latest PyPy3.

pip is tested to work on the latest patch version of the Python interpreter,
for each of the minor versions listed above. Previous patch versions are
Expand Down
Loading