Skip to content

Commit 834ebfe

Browse files
committed
remove unnecessary things
2 parents 8e5b2cc + 80e293d commit 834ebfe

3 files changed

Lines changed: 10 additions & 19 deletions

File tree

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ build/
33
.nox
44
*.pyc
55
__pycache__
6-
.DS_Store
7-
locales/.doctrees/
6+
.DS_Store

locales/messages.pot

Lines changed: 1 addition & 9 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: 2021-07-06 12:35+0800\n"
11+
"POT-Creation-Date: 2021-07-06 13:01+0800\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"
@@ -5732,10 +5732,6 @@ msgstr ""
57325732
msgid "Python and PyPI make it easy to upload both wheels and sdists together. Just follow the :doc:`tutorials/packaging-projects` tutorial."
57335733
msgstr ""
57345734

5735-
#: ../source/overview.rst:148
5736-
msgid "A summary of Python's packaging capabilities for tools and libraries."
5737-
msgstr ""
5738-
57395735
#: ../source/overview.rst:148
57405736
msgid "Python's recommended built-in library and tool packaging technologies. Excerpted from `The Packaging Gradient (2017) <https://www.youtube.com/watch?v=iLVNWfPWAC8>`_."
57415737
msgstr ""
@@ -6048,10 +6044,6 @@ msgstr ""
60486044
msgid "Embed your code on an `Adafruit <https://github.com/adafruit/circuitpython#adafruit-circuitpython>`_, `MicroPython <https://micropython.org/>`_, or more-powerful hardware running Python, then ship it to the datacenter or your users' homes. They plug and play, and you can call it a day."
60496045
msgstr ""
60506046

6051-
#: ../source/overview.rst:389
6052-
msgid "A summary of technologies used to package Python applications."
6053-
msgstr ""
6054-
60556047
#: ../source/overview.rst:389
60566048
msgid "The simplified gamut of technologies used to package Python applications."
60576049
msgstr ""

noxfile.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ def translation(session):
1111
session.install("-r", "requirements.txt")
1212
target_dir = "locales"
1313
session.run(
14-
"sphinx-build",
15-
"-b", # select a builder
16-
"gettext", # build gettext-style message catalogs (.pot file)
17-
"source/", # where the rst files are located
18-
target_dir, # where to put the .pot file
19-
"-d",
20-
".nox/", # path to put the cache
21-
)
14+
"sphinx-build",
15+
"-b", # select a builder
16+
"gettext", # build gettext-style message catalogs (.pot file)
17+
"source/", # where the rst files are located
18+
target_dir, # where to put the .pot file
19+
"-d",
20+
".nox/", # path to put the cache (.doctrees)
21+
)
2222

2323
@nox.session(py="3")
2424
def build(session, autobuild=False):

0 commit comments

Comments
 (0)