|
8 | 8 | msgstr "" |
9 | 9 | "Project-Id-Version: Python Packaging User Guide \n" |
10 | 10 | "Report-Msgid-Bugs-To: \n" |
11 | | -"POT-Creation-Date: 2024-07-30 13:47+0000\n" |
| 11 | +"POT-Creation-Date: 2024-08-15 14:12+0000\n" |
12 | 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
13 | 13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
14 | 14 | "Language-Team: LANGUAGE < [email protected]>\n" |
@@ -2095,7 +2095,7 @@ msgstr "" |
2095 | 2095 |
|
2096 | 2096 | #: ../source/guides/analyzing-pypi-package-downloads.rst:77 |
2097 | 2097 | #: ../source/specifications/dependency-specifiers.rst:29 |
2098 | | -#: ../source/specifications/direct-url-data-structure.rst:344 |
| 2098 | +#: ../source/specifications/direct-url-data-structure.rst:347 |
2099 | 2099 | #: ../source/specifications/version-specifiers.rst:1067 |
2100 | 2100 | msgid "Examples" |
2101 | 2101 | msgstr "" |
@@ -8313,7 +8313,7 @@ msgstr "" |
8313 | 8313 | #: ../source/specifications/binary-distribution-format.rst:421 |
8314 | 8314 | #: ../source/specifications/core-metadata.rst:848 |
8315 | 8315 | #: ../source/specifications/dependency-specifiers.rst:477 |
8316 | | -#: ../source/specifications/direct-url-data-structure.rst:394 |
| 8316 | +#: ../source/specifications/direct-url-data-structure.rst:397 |
8317 | 8317 | #: ../source/specifications/direct-url.rst:67 |
8318 | 8318 | #: ../source/specifications/entry-points.rst:164 |
8319 | 8319 | #: ../source/specifications/externally-managed-environments.rst:472 |
@@ -9469,258 +9469,262 @@ msgstr "" |
9469 | 9469 | msgid "Depending on what ``url`` refers to, the second field MUST be one of ``vcs_info`` (if ``url`` is a VCS reference), ``archive_info`` (if ``url`` is a source archive or a wheel), or ``dir_info`` (if ``url`` is a local directory). These info fields have a (possibly empty) subdictionary as value, with the possible keys defined below." |
9470 | 9470 | msgstr "" |
9471 | 9471 |
|
9472 | | -#: ../source/specifications/direct-url-data-structure.rst:34 |
9473 | | -msgid "When persisted, ``url`` MUST be stripped of any sensitive authentication information, for security reasons." |
| 9472 | +#: ../source/specifications/direct-url-data-structure.rst:35 |
| 9473 | +msgid "Security Considerations" |
9474 | 9474 | msgstr "" |
9475 | 9475 |
|
9476 | 9476 | #: ../source/specifications/direct-url-data-structure.rst:37 |
| 9477 | +msgid "When persisted, ``url`` MUST be stripped of any sensitive authentication information, for security reasons." |
| 9478 | +msgstr "" |
| 9479 | + |
| 9480 | +#: ../source/specifications/direct-url-data-structure.rst:40 |
9477 | 9481 | msgid "The user:password section of the URL MAY however be composed of environment variables, matching the following regular expression:" |
9478 | 9482 | msgstr "" |
9479 | 9483 |
|
9480 | | -#: ../source/specifications/direct-url-data-structure.rst:45 |
| 9484 | +#: ../source/specifications/direct-url-data-structure.rst:48 |
9481 | 9485 | msgid "Additionally, the user:password section of the URL MAY be a well-known, non security sensitive string. A typical example is ``git`` in the case of a URL such as ``ssh:// [email protected]/user/repo``." |
9482 | 9486 | msgstr "" |
9483 | 9487 |
|
9484 | | -#: ../source/specifications/direct-url-data-structure.rst:50 |
| 9488 | +#: ../source/specifications/direct-url-data-structure.rst:53 |
9485 | 9489 | msgid "VCS URLs" |
9486 | 9490 | msgstr "" |
9487 | 9491 |
|
9488 | | -#: ../source/specifications/direct-url-data-structure.rst:52 |
| 9492 | +#: ../source/specifications/direct-url-data-structure.rst:55 |
9489 | 9493 | msgid "When ``url`` refers to a VCS repository, the ``vcs_info`` key MUST be present as a dictionary with the following keys:" |
9490 | 9494 | msgstr "" |
9491 | 9495 |
|
9492 | | -#: ../source/specifications/direct-url-data-structure.rst:55 |
| 9496 | +#: ../source/specifications/direct-url-data-structure.rst:58 |
9493 | 9497 | msgid "A ``vcs`` key (type ``string``) MUST be present, containing the name of the VCS (i.e. one of ``git``, ``hg``, ``bzr``, ``svn``). Other VCS's SHOULD be registered by writing a PEP to amend this specification. The ``url`` value MUST be compatible with the corresponding VCS, so an installer can hand it off without transformation to a checkout/download command of the VCS." |
9494 | 9498 | msgstr "" |
9495 | 9499 |
|
9496 | | -#: ../source/specifications/direct-url-data-structure.rst:61 |
| 9500 | +#: ../source/specifications/direct-url-data-structure.rst:64 |
9497 | 9501 | msgid "A ``requested_revision`` key (type ``string``) MAY be present naming a branch/tag/ref/commit/revision/etc (in a format compatible with the VCS). This field MUST match the revision requested by the user and MUST NOT exist when the user did not select a specific revision." |
9498 | 9502 | msgstr "" |
9499 | 9503 |
|
9500 | | -#: ../source/specifications/direct-url-data-structure.rst:65 |
| 9504 | +#: ../source/specifications/direct-url-data-structure.rst:68 |
9501 | 9505 | msgid "A ``commit_id`` key (type ``string``) MUST be present, containing the exact commit/revision number that was/is to be installed. If the VCS supports commit-hash based revision identifiers, such commit-hash MUST be used as ``commit_id`` in order to reference an immutable version of the source code." |
9502 | 9506 | msgstr "" |
9503 | 9507 |
|
9504 | | -#: ../source/specifications/direct-url-data-structure.rst:73 |
| 9508 | +#: ../source/specifications/direct-url-data-structure.rst:76 |
9505 | 9509 | msgid "Archive URLs" |
9506 | 9510 | msgstr "" |
9507 | 9511 |
|
9508 | | -#: ../source/specifications/direct-url-data-structure.rst:75 |
| 9512 | +#: ../source/specifications/direct-url-data-structure.rst:78 |
9509 | 9513 | msgid "When ``url`` refers to a source archive or a wheel, the ``archive_info`` key MUST be present as a dictionary with the following keys:" |
9510 | 9514 | msgstr "" |
9511 | 9515 |
|
9512 | | -#: ../source/specifications/direct-url-data-structure.rst:78 |
| 9516 | +#: ../source/specifications/direct-url-data-structure.rst:81 |
9513 | 9517 | msgid "A ``hashes`` key SHOULD be present as a dictionary mapping a hash name to a hex encoded digest of the file." |
9514 | 9518 | msgstr "" |
9515 | 9519 |
|
9516 | | -#: ../source/specifications/direct-url-data-structure.rst:81 |
| 9520 | +#: ../source/specifications/direct-url-data-structure.rst:84 |
9517 | 9521 | msgid "Multiple hashes can be included, and it is up to the consumer to decide what to do with multiple hashes (it may validate all of them or a subset of them, or nothing at all)." |
9518 | 9522 | msgstr "" |
9519 | 9523 |
|
9520 | | -#: ../source/specifications/direct-url-data-structure.rst:85 |
| 9524 | +#: ../source/specifications/direct-url-data-structure.rst:88 |
9521 | 9525 | msgid "These hash names SHOULD always be normalized to be lowercase." |
9522 | 9526 | msgstr "" |
9523 | 9527 |
|
9524 | | -#: ../source/specifications/direct-url-data-structure.rst:87 |
| 9528 | +#: ../source/specifications/direct-url-data-structure.rst:90 |
9525 | 9529 | msgid "Any hash algorithm available via :py:mod:`hashlib` (specifically any that can be passed to :py:func:`hashlib.new()` and do not require additional parameters) can be used as a key for the hashes dictionary. At least one secure algorithm from :py:data:`hashlib.algorithms_guaranteed` SHOULD always be included. At time of writing, ``sha256`` specifically is recommended." |
9526 | 9530 | msgstr "" |
9527 | 9531 |
|
9528 | | -#: ../source/specifications/direct-url-data-structure.rst:93 |
| 9532 | +#: ../source/specifications/direct-url-data-structure.rst:96 |
9529 | 9533 | msgid "A deprecated ``hash`` key (type ``string``) MAY be present for backwards compatibility purposes, with value ``<hash-algorithm>=<expected-hash>``." |
9530 | 9534 | msgstr "" |
9531 | 9535 |
|
9532 | | -#: ../source/specifications/direct-url-data-structure.rst:96 |
| 9536 | +#: ../source/specifications/direct-url-data-structure.rst:99 |
9533 | 9537 | msgid "Producers of the data structure SHOULD emit the ``hashes`` key whether one or multiple hashes are available. Producers SHOULD continue to emit the ``hash`` key in contexts where they did so before, so as to keep backwards compatibility for existing clients." |
9534 | 9538 | msgstr "" |
9535 | 9539 |
|
9536 | | -#: ../source/specifications/direct-url-data-structure.rst:100 |
| 9540 | +#: ../source/specifications/direct-url-data-structure.rst:103 |
9537 | 9541 | msgid "When both the ``hash`` and ``hashes`` keys are present, the hash represented in the ``hash`` key MUST also be present in the ``hashes`` dictionary, so consumers can consider the ``hashes`` key only if it is present, and fall back to ``hash`` otherwise." |
9538 | 9542 | msgstr "" |
9539 | 9543 |
|
9540 | | -#: ../source/specifications/direct-url-data-structure.rst:105 |
| 9544 | +#: ../source/specifications/direct-url-data-structure.rst:108 |
9541 | 9545 | msgid "Local directories" |
9542 | 9546 | msgstr "" |
9543 | 9547 |
|
9544 | | -#: ../source/specifications/direct-url-data-structure.rst:107 |
| 9548 | +#: ../source/specifications/direct-url-data-structure.rst:110 |
9545 | 9549 | msgid "When ``url`` refers to a local directory, the ``dir_info`` key MUST be present as a dictionary with the following key:" |
9546 | 9550 | msgstr "" |
9547 | 9551 |
|
9548 | | -#: ../source/specifications/direct-url-data-structure.rst:110 |
| 9552 | +#: ../source/specifications/direct-url-data-structure.rst:113 |
9549 | 9553 | msgid "``editable`` (type: ``boolean``): ``true`` if the distribution was/is to be installed in editable mode, ``false`` otherwise. If absent, default to ``false``." |
9550 | 9554 | msgstr "" |
9551 | 9555 |
|
9552 | | -#: ../source/specifications/direct-url-data-structure.rst:113 |
| 9556 | +#: ../source/specifications/direct-url-data-structure.rst:116 |
9553 | 9557 | msgid "When ``url`` refers to a local directory, it MUST have the ``file`` scheme and be compliant with :rfc:`8089`. In particular, the path component must be absolute. Symbolic links SHOULD be preserved when making relative paths absolute." |
9554 | 9558 | msgstr "" |
9555 | 9559 |
|
9556 | | -#: ../source/specifications/direct-url-data-structure.rst:119 |
| 9560 | +#: ../source/specifications/direct-url-data-structure.rst:122 |
9557 | 9561 | msgid "Projects in subdirectories" |
9558 | 9562 | msgstr "" |
9559 | 9563 |
|
9560 | | -#: ../source/specifications/direct-url-data-structure.rst:121 |
| 9564 | +#: ../source/specifications/direct-url-data-structure.rst:124 |
9561 | 9565 | msgid "A top-level ``subdirectory`` field MAY be present containing a directory path, relative to the root of the VCS repository, source archive or local directory, to specify where ``pyproject.toml`` or ``setup.py`` is located." |
9562 | 9566 | msgstr "" |
9563 | 9567 |
|
9564 | | -#: ../source/specifications/direct-url-data-structure.rst:126 |
| 9568 | +#: ../source/specifications/direct-url-data-structure.rst:129 |
9565 | 9569 | msgid "Registered VCS" |
9566 | 9570 | msgstr "" |
9567 | 9571 |
|
9568 | | -#: ../source/specifications/direct-url-data-structure.rst:128 |
| 9572 | +#: ../source/specifications/direct-url-data-structure.rst:131 |
9569 | 9573 | msgid "This section lists the registered VCS's; expanded, VCS-specific information on how to use the ``vcs``, ``requested_revision``, and other fields of ``vcs_info``; and in some cases additional VCS-specific fields. Tools MAY support other VCS's although it is RECOMMENDED to register them by writing a PEP to amend this specification. The ``vcs`` field SHOULD be the command name (lowercased). Additional fields that would be necessary to support such VCS SHOULD be prefixed with the VCS command name." |
9570 | 9574 | msgstr "" |
9571 | 9575 |
|
9572 | | -#: ../source/specifications/direct-url-data-structure.rst:138 |
9573 | | -msgid "Git" |
9574 | | -msgstr "" |
9575 | | - |
9576 | 9576 | #: ../source/specifications/direct-url-data-structure.rst:141 |
9577 | | -#: ../source/specifications/direct-url-data-structure.rst:168 |
9578 | | -#: ../source/specifications/direct-url-data-structure.rst:186 |
9579 | | -#: ../source/specifications/direct-url-data-structure.rst:204 |
9580 | | -msgid "Home page" |
9581 | | -msgstr "" |
9582 | | - |
9583 | | -#: ../source/specifications/direct-url-data-structure.rst:141 |
9584 | | -msgid "https://git-scm.com/" |
| 9577 | +msgid "Git" |
9585 | 9578 | msgstr "" |
9586 | 9579 |
|
9587 | 9580 | #: ../source/specifications/direct-url-data-structure.rst:144 |
9588 | 9581 | #: ../source/specifications/direct-url-data-structure.rst:171 |
9589 | 9582 | #: ../source/specifications/direct-url-data-structure.rst:189 |
9590 | 9583 | #: ../source/specifications/direct-url-data-structure.rst:207 |
9591 | | -msgid "vcs command" |
| 9584 | +msgid "Home page" |
9592 | 9585 | msgstr "" |
9593 | 9586 |
|
9594 | 9587 | #: ../source/specifications/direct-url-data-structure.rst:144 |
9595 | | -#: ../source/specifications/direct-url-data-structure.rst:147 |
9596 | | -msgid "git" |
| 9588 | +msgid "https://git-scm.com/" |
9597 | 9589 | msgstr "" |
9598 | 9590 |
|
9599 | 9591 | #: ../source/specifications/direct-url-data-structure.rst:147 |
9600 | 9592 | #: ../source/specifications/direct-url-data-structure.rst:174 |
9601 | 9593 | #: ../source/specifications/direct-url-data-structure.rst:192 |
9602 | 9594 | #: ../source/specifications/direct-url-data-structure.rst:210 |
9603 | | -msgid "``vcs`` field" |
| 9595 | +msgid "vcs command" |
9604 | 9596 | msgstr "" |
9605 | 9597 |
|
9606 | | -#: ../source/specifications/direct-url-data-structure.rst:151 |
9607 | | -#: ../source/specifications/direct-url-data-structure.rst:177 |
9608 | | -#: ../source/specifications/direct-url-data-structure.rst:195 |
9609 | | -#: ../source/specifications/direct-url-data-structure.rst:214 |
9610 | | -msgid "``requested_revision`` field" |
| 9598 | +#: ../source/specifications/direct-url-data-structure.rst:147 |
| 9599 | +#: ../source/specifications/direct-url-data-structure.rst:150 |
| 9600 | +msgid "git" |
9611 | 9601 | msgstr "" |
9612 | 9602 |
|
9613 | 9603 | #: ../source/specifications/direct-url-data-structure.rst:150 |
9614 | | -msgid "A tag name, branch name, Git ref, commit hash, shortened commit hash, or other commit-ish." |
| 9604 | +#: ../source/specifications/direct-url-data-structure.rst:177 |
| 9605 | +#: ../source/specifications/direct-url-data-structure.rst:195 |
| 9606 | +#: ../source/specifications/direct-url-data-structure.rst:213 |
| 9607 | +msgid "``vcs`` field" |
9615 | 9608 | msgstr "" |
9616 | 9609 |
|
9617 | 9610 | #: ../source/specifications/direct-url-data-structure.rst:154 |
9618 | 9611 | #: ../source/specifications/direct-url-data-structure.rst:180 |
9619 | 9612 | #: ../source/specifications/direct-url-data-structure.rst:198 |
9620 | | -#: ../source/specifications/direct-url-data-structure.rst:219 |
| 9613 | +#: ../source/specifications/direct-url-data-structure.rst:217 |
| 9614 | +msgid "``requested_revision`` field" |
| 9615 | +msgstr "" |
| 9616 | + |
| 9617 | +#: ../source/specifications/direct-url-data-structure.rst:153 |
| 9618 | +msgid "A tag name, branch name, Git ref, commit hash, shortened commit hash, or other commit-ish." |
| 9619 | +msgstr "" |
| 9620 | + |
| 9621 | +#: ../source/specifications/direct-url-data-structure.rst:157 |
| 9622 | +#: ../source/specifications/direct-url-data-structure.rst:183 |
| 9623 | +#: ../source/specifications/direct-url-data-structure.rst:201 |
| 9624 | +#: ../source/specifications/direct-url-data-structure.rst:222 |
9621 | 9625 | msgid "``commit_id`` field" |
9622 | 9626 | msgstr "" |
9623 | 9627 |
|
9624 | | -#: ../source/specifications/direct-url-data-structure.rst:154 |
| 9628 | +#: ../source/specifications/direct-url-data-structure.rst:157 |
9625 | 9629 | msgid "A commit hash (40 hexadecimal characters sha1)." |
9626 | 9630 | msgstr "" |
9627 | 9631 |
|
9628 | | -#: ../source/specifications/direct-url-data-structure.rst:158 |
| 9632 | +#: ../source/specifications/direct-url-data-structure.rst:161 |
9629 | 9633 | msgid "Tools can use the ``git show-ref`` and ``git symbolic-ref`` commands to determine if the ``requested_revision`` corresponds to a Git ref. In turn, a ref beginning with ``refs/tags/`` corresponds to a tag, and a ref beginning with ``refs/remotes/origin/`` after cloning corresponds to a branch." |
9630 | 9634 | msgstr "" |
9631 | 9635 |
|
9632 | | -#: ../source/specifications/direct-url-data-structure.rst:165 |
| 9636 | +#: ../source/specifications/direct-url-data-structure.rst:168 |
9633 | 9637 | msgid "Mercurial" |
9634 | 9638 | msgstr "" |
9635 | 9639 |
|
9636 | | -#: ../source/specifications/direct-url-data-structure.rst:168 |
| 9640 | +#: ../source/specifications/direct-url-data-structure.rst:171 |
9637 | 9641 | msgid "https://www.mercurial-scm.org/" |
9638 | 9642 | msgstr "" |
9639 | 9643 |
|
9640 | | -#: ../source/specifications/direct-url-data-structure.rst:171 |
9641 | 9644 | #: ../source/specifications/direct-url-data-structure.rst:174 |
| 9645 | +#: ../source/specifications/direct-url-data-structure.rst:177 |
9642 | 9646 | msgid "hg" |
9643 | 9647 | msgstr "" |
9644 | 9648 |
|
9645 | | -#: ../source/specifications/direct-url-data-structure.rst:177 |
| 9649 | +#: ../source/specifications/direct-url-data-structure.rst:180 |
9646 | 9650 | msgid "A tag name, branch name, changeset ID, shortened changeset ID." |
9647 | 9651 | msgstr "" |
9648 | 9652 |
|
9649 | | -#: ../source/specifications/direct-url-data-structure.rst:180 |
| 9653 | +#: ../source/specifications/direct-url-data-structure.rst:183 |
9650 | 9654 | msgid "A changeset ID (40 hexadecimal characters)." |
9651 | 9655 | msgstr "" |
9652 | 9656 |
|
9653 | | -#: ../source/specifications/direct-url-data-structure.rst:183 |
| 9657 | +#: ../source/specifications/direct-url-data-structure.rst:186 |
9654 | 9658 | msgid "Bazaar" |
9655 | 9659 | msgstr "" |
9656 | 9660 |
|
9657 | | -#: ../source/specifications/direct-url-data-structure.rst:186 |
| 9661 | +#: ../source/specifications/direct-url-data-structure.rst:189 |
9658 | 9662 | msgid "https://www.breezy-vcs.org/" |
9659 | 9663 | msgstr "" |
9660 | 9664 |
|
9661 | | -#: ../source/specifications/direct-url-data-structure.rst:189 |
9662 | 9665 | #: ../source/specifications/direct-url-data-structure.rst:192 |
| 9666 | +#: ../source/specifications/direct-url-data-structure.rst:195 |
9663 | 9667 | msgid "bzr" |
9664 | 9668 | msgstr "" |
9665 | 9669 |
|
9666 | | -#: ../source/specifications/direct-url-data-structure.rst:195 |
| 9670 | +#: ../source/specifications/direct-url-data-structure.rst:198 |
9667 | 9671 | msgid "A tag name, branch name, revision id." |
9668 | 9672 | msgstr "" |
9669 | 9673 |
|
9670 | | -#: ../source/specifications/direct-url-data-structure.rst:198 |
| 9674 | +#: ../source/specifications/direct-url-data-structure.rst:201 |
9671 | 9675 | msgid "A revision id." |
9672 | 9676 | msgstr "" |
9673 | 9677 |
|
9674 | | -#: ../source/specifications/direct-url-data-structure.rst:201 |
| 9678 | +#: ../source/specifications/direct-url-data-structure.rst:204 |
9675 | 9679 | msgid "Subversion" |
9676 | 9680 | msgstr "" |
9677 | 9681 |
|
9678 | | -#: ../source/specifications/direct-url-data-structure.rst:204 |
| 9682 | +#: ../source/specifications/direct-url-data-structure.rst:207 |
9679 | 9683 | msgid "https://subversion.apache.org/" |
9680 | 9684 | msgstr "" |
9681 | 9685 |
|
9682 | | -#: ../source/specifications/direct-url-data-structure.rst:207 |
9683 | 9686 | #: ../source/specifications/direct-url-data-structure.rst:210 |
| 9687 | +#: ../source/specifications/direct-url-data-structure.rst:213 |
9684 | 9688 | msgid "svn" |
9685 | 9689 | msgstr "" |
9686 | 9690 |
|
9687 | | -#: ../source/specifications/direct-url-data-structure.rst:213 |
| 9691 | +#: ../source/specifications/direct-url-data-structure.rst:216 |
9688 | 9692 | msgid "``requested_revision`` must be compatible with ``svn checkout`` ``--revision`` option. In Subversion, branch or tag is part of ``url``." |
9689 | 9693 | msgstr "" |
9690 | 9694 |
|
9691 | | -#: ../source/specifications/direct-url-data-structure.rst:217 |
| 9695 | +#: ../source/specifications/direct-url-data-structure.rst:220 |
9692 | 9696 | msgid "Since Subversion does not support globally unique identifiers, this field is the Subversion revision number in the corresponding repository." |
9693 | 9697 | msgstr "" |
9694 | 9698 |
|
9695 | | -#: ../source/specifications/direct-url-data-structure.rst:222 |
| 9699 | +#: ../source/specifications/direct-url-data-structure.rst:225 |
9696 | 9700 | msgid "JSON Schema" |
9697 | 9701 | msgstr "" |
9698 | 9702 |
|
9699 | | -#: ../source/specifications/direct-url-data-structure.rst:224 |
| 9703 | +#: ../source/specifications/direct-url-data-structure.rst:227 |
9700 | 9704 | msgid "The following JSON Schema can be used to validate the contents of ``direct_url.json``:" |
9701 | 9705 | msgstr "" |
9702 | 9706 |
|
9703 | | -#: ../source/specifications/direct-url-data-structure.rst:346 |
| 9707 | +#: ../source/specifications/direct-url-data-structure.rst:349 |
9704 | 9708 | msgid "Source archive:" |
9705 | 9709 | msgstr "" |
9706 | 9710 |
|
9707 | | -#: ../source/specifications/direct-url-data-structure.rst:359 |
| 9711 | +#: ../source/specifications/direct-url-data-structure.rst:362 |
9708 | 9712 | msgid "Git URL with tag and commit-hash:" |
9709 | 9713 | msgstr "" |
9710 | 9714 |
|
9711 | | -#: ../source/specifications/direct-url-data-structure.rst:372 |
| 9715 | +#: ../source/specifications/direct-url-data-structure.rst:375 |
9712 | 9716 | msgid "Local directory:" |
9713 | 9717 | msgstr "" |
9714 | 9718 |
|
9715 | | -#: ../source/specifications/direct-url-data-structure.rst:381 |
| 9719 | +#: ../source/specifications/direct-url-data-structure.rst:384 |
9716 | 9720 | msgid "Local directory in editable mode:" |
9717 | 9721 | msgstr "" |
9718 | 9722 |
|
9719 | | -#: ../source/specifications/direct-url-data-structure.rst:396 |
| 9723 | +#: ../source/specifications/direct-url-data-structure.rst:399 |
9720 | 9724 | msgid "March 2020: This specification was approved through :pep:`610`, defining the ``direct_url.json`` metadata file." |
9721 | 9725 | msgstr "" |
9722 | 9726 |
|
9723 | | -#: ../source/specifications/direct-url-data-structure.rst:398 |
| 9727 | +#: ../source/specifications/direct-url-data-structure.rst:401 |
9724 | 9728 | msgid "January 2023: Added the ``archive_info.hashes`` key (`discussion <archive-info-hashes_>`_)." |
9725 | 9729 | msgstr "" |
9726 | 9730 |
|
|
0 commit comments