Skip to content

Commit 4599b25

Browse files
Update messages.pot as of version 3da25bc
1 parent 319bdd9 commit 4599b25

1 file changed

Lines changed: 32 additions & 28 deletions

File tree

locales/messages.pot

Lines changed: 32 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python Packaging User Guide \n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-12-04 13:42+0000\n"
11+
"POT-Creation-Date: 2025-12-12 07:05+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6227,111 +6227,115 @@ msgstr ""
62276227
msgid "Do **not** use :ref:`distutils`, which is deprecated, and has been removed from the standard library in Python 3.12, although it still remains available from setuptools."
62286228
msgstr ""
62296229

6230-
#: ../source/guides/tool-recommendations.rst:112
6230+
#: ../source/guides/tool-recommendations.rst:115
6231+
msgid "Build backends for extension modules"
6232+
msgstr ""
6233+
6234+
#: ../source/guides/tool-recommendations.rst:117
62316235
msgid "For packages with :term:`extension modules <extension module>`, it is best to use a build system with dedicated support for the language the extension is written in, for example:"
62326236
msgstr ""
62336237

6234-
#: ../source/guides/tool-recommendations.rst:116
6238+
#: ../source/guides/tool-recommendations.rst:121
62356239
msgid ":ref:`setuptools` -- natively supports C and C++ (with third-party plugins for Go and Rust),"
62366240
msgstr ""
62376241

6238-
#: ../source/guides/tool-recommendations.rst:117
6242+
#: ../source/guides/tool-recommendations.rst:122
62396243
msgid ":ref:`meson-python` -- C, C++, Fortran, Rust, and other languages supported by Meson,"
62406244
msgstr ""
62416245

6242-
#: ../source/guides/tool-recommendations.rst:118
6246+
#: ../source/guides/tool-recommendations.rst:123
62436247
msgid ":ref:`scikit-build-core` -- C, C++, Fortran, and other languages supported by CMake,"
62446248
msgstr ""
62456249

6246-
#: ../source/guides/tool-recommendations.rst:119
6250+
#: ../source/guides/tool-recommendations.rst:124
62476251
msgid ":ref:`maturin` -- Rust, via Cargo."
62486252
msgstr ""
62496253

6250-
#: ../source/guides/tool-recommendations.rst:123
6254+
#: ../source/guides/tool-recommendations.rst:128
62516255
msgid "Building distributions"
62526256
msgstr ""
62536257

6254-
#: ../source/guides/tool-recommendations.rst:125
6258+
#: ../source/guides/tool-recommendations.rst:130
62556259
msgid "The standard tool to build :term:`source distributions <source distribution (or \"sdist\")>` and :term:`wheels <wheel>` for uploading to PyPI is :ref:`build`. It will invoke whichever build backend you :ref:`declared <pyproject-guide-build-system-table>` in :file:`pyproject.toml`."
62566260
msgstr ""
62576261

6258-
#: ../source/guides/tool-recommendations.rst:130
6262+
#: ../source/guides/tool-recommendations.rst:135
62596263
msgid "Do **not** use ``python setup.py sdist`` and ``python setup.py bdist_wheel`` for this task. All direct invocations of :file:`setup.py` are :ref:`deprecated <setup-py-deprecated>`."
62606264
msgstr ""
62616265

6262-
#: ../source/guides/tool-recommendations.rst:134
6266+
#: ../source/guides/tool-recommendations.rst:139
62636267
msgid "If you have :term:`extension modules <extension module>` and want to distribute wheels for multiple platforms, use :ref:`cibuildwheel` as part of your CI setup to build distributable wheels."
62646268
msgstr ""
62656269

6266-
#: ../source/guides/tool-recommendations.rst:140
6270+
#: ../source/guides/tool-recommendations.rst:145
62676271
msgid "Uploading to PyPI"
62686272
msgstr ""
62696273

6270-
#: ../source/guides/tool-recommendations.rst:142
6274+
#: ../source/guides/tool-recommendations.rst:147
62716275
msgid "For projects hosted on or published via supported CI/CD platforms, it is recommended to use the :ref:`Trusted Publishing <trusted-publishing>`, which allows the package to be securely uploaded to PyPI from a CI/CD workflow without a manually configured API token."
62726276
msgstr ""
62736277

6274-
#: ../source/guides/tool-recommendations.rst:147
6278+
#: ../source/guides/tool-recommendations.rst:152
62756279
msgid "As of November 2024, PyPI supports the following platforms as Trusted Publishing providers:"
62766280
msgstr ""
62776281

6278-
#: ../source/guides/tool-recommendations.rst:150
6282+
#: ../source/guides/tool-recommendations.rst:155
62796283
msgid "GitHub Actions (on ``https://github.com``)"
62806284
msgstr ""
62816285

6282-
#: ../source/guides/tool-recommendations.rst:151
6286+
#: ../source/guides/tool-recommendations.rst:156
62836287
msgid "GitLab CI/CD (on ``https://gitlab.com``)"
62846288
msgstr ""
62856289

6286-
#: ../source/guides/tool-recommendations.rst:152
6290+
#: ../source/guides/tool-recommendations.rst:157
62876291
msgid "ActiveState"
62886292
msgstr ""
62896293

6290-
#: ../source/guides/tool-recommendations.rst:153
6294+
#: ../source/guides/tool-recommendations.rst:158
62916295
msgid "Google Cloud"
62926296
msgstr ""
62936297

6294-
#: ../source/guides/tool-recommendations.rst:155
6298+
#: ../source/guides/tool-recommendations.rst:160
62956299
msgid "The other available method is to upload the package manually using :ref:`twine`."
62966300
msgstr ""
62976301

6298-
#: ../source/guides/tool-recommendations.rst:159
6302+
#: ../source/guides/tool-recommendations.rst:164
62996303
msgid "**Never** use ``python setup.py upload`` for this task. In addition to being :ref:`deprecated <setup-py-deprecated>`, it is insecure."
63006304
msgstr ""
63016305

6302-
#: ../source/guides/tool-recommendations.rst:164
6306+
#: ../source/guides/tool-recommendations.rst:169
63036307
msgid "Workflow tools"
63046308
msgstr ""
63056309

6306-
#: ../source/guides/tool-recommendations.rst:166
6310+
#: ../source/guides/tool-recommendations.rst:171
63076311
msgid "These tools are environment managers that automatically manage virtual environments for a project. They also act as \"task runners\", allowing you to define and invoke tasks such as running tests, compiling documentation, regenerating some files, etc. Some of them provide shortcuts for building distributions and uploading to PyPI, and some support lock files for applications. They often call the tools mentioned above under the hood. In alphabetical order:"
63086312
msgstr ""
63096313

6310-
#: ../source/guides/tool-recommendations.rst:174
6314+
#: ../source/guides/tool-recommendations.rst:179
63116315
msgid ":ref:`Flit`,"
63126316
msgstr ""
63136317

6314-
#: ../source/guides/tool-recommendations.rst:175
6318+
#: ../source/guides/tool-recommendations.rst:180
63156319
msgid ":ref:`Hatch`,"
63166320
msgstr ""
63176321

6318-
#: ../source/guides/tool-recommendations.rst:176
6322+
#: ../source/guides/tool-recommendations.rst:181
63196323
msgid ":doc:`nox <nox:index>`,"
63206324
msgstr ""
63216325

6322-
#: ../source/guides/tool-recommendations.rst:177
6326+
#: ../source/guides/tool-recommendations.rst:182
63236327
msgid ":ref:`PDM`,"
63246328
msgstr ""
63256329

6326-
#: ../source/guides/tool-recommendations.rst:178
6330+
#: ../source/guides/tool-recommendations.rst:183
63276331
msgid ":ref:`Pipenv`,"
63286332
msgstr ""
63296333

6330-
#: ../source/guides/tool-recommendations.rst:179
6334+
#: ../source/guides/tool-recommendations.rst:184
63316335
msgid ":ref:`Poetry`,"
63326336
msgstr ""
63336337

6334-
#: ../source/guides/tool-recommendations.rst:180
6338+
#: ../source/guides/tool-recommendations.rst:185
63356339
msgid ":doc:`tox <tox:index>`."
63366340
msgstr ""
63376341

0 commit comments

Comments
 (0)