Home
last modified time | relevance | path

Searched +full:publish +full:- +full:pypi (Results 1 – 7 of 7) sorted by relevance

/third_party/jinja2/.github/workflows/
Dpublish.yaml1 name: Publish
5 - '*'
8 runs-on: ubuntu-latest
12 - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
13 - uses: actions/setup-python@5ccb29d8773c3f3f653e1705f474dfaa8a06a912
15 python-version: '3.x'
17 cache-dependency-path: 'requirements/*.txt'
18 - run: pip install -r requirements/build.txt
20 - run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
21 - run: python -m build
[all …]
/third_party/python/Doc/installing/
Dindex.rst3 .. _installing-index:
9 :Email: distutils-sig@python.org
22 :ref:`distribution guide <distributing-index>`.
37 * A *virtual environment* is a semi-isolated Python environment that allows
47 * The `Python Package Index <https://pypi.org>`__ is a public
71 <https://packaging.python.org/installing/#creating-virtual-environments>`__
83 python -m pip install SomePackage
99 python -m pip install SomePackage==1.0.4 # specific version
100 python -m pip install "SomePackage>=1.0.4" # minimum version
106 python -m pip install --upgrade SomePackage
[all …]
/third_party/googletest/
DREADME.md8 [Abseil Live at Head philosophy](https://abseil.io/about/philosophy#upgrade-support).
10 … as possible](https://github.com/abseil/abseil-cpp/blob/master/FAQ.md#what-is-live-at-head-and-how
11 We do publish occasional semantic versions, tagged with
30 GitHub Actions were added for the convenience of open-source contributors. They
31 are exclusively maintained by the open-source community and not used by the
37 [Abseil](https://github.com/abseil/abseil-cpp).
66 * User-defined assertions: \
71 certain way, making it useful for testing error-handling code
72 * Fatal and non-fatal failures: \
74 non-fatal with Googletest, allowing tests to continue running even if a
[all …]
/third_party/python/Doc/distutils/
Dsetupscript.rst1 .. _setup-script:
13 :ref:`distutils-simple-example` above, the setup script consists mainly of a call to
33 url='https://www.python.org/sigs/distutils-sig/',
37 There are only two differences between this and the trivial one-file
38 distribution presented in section :ref:`distutils-simple-example`: more metadata, and the
43 meta-data, see section :ref:`meta-data`.
46 should be written using the Unix convention, i.e. slash-separated. The
47 Distutils will take care of converting this platform-neutral representation into
51 pathnames in this document are slash-separated.
62 .. _listing-packages:
[all …]
/third_party/python/Doc/whatsnew/
D3.9.rst34 sufficient; the e-mail address isn't necessary.
52 :pep:`596` - Python 3.9 Release Schedule
55 Summary -- Release highlights
67 New built-in features:
118 Test your application with the :option:`-W` ``default`` command-line option to see
120 :option:`-W` ``error`` to treat them as errors. :ref:`Warnings Filter
121 <warning-filter>` can be used to ignore warnings from third-party code.
127 Aliases to :ref:`Abstract Base Classes <collections-abstract-base-classes>` in
136 Note: a number of pre-existing deprecations were removed in this version of
137 Python as well. Consult the :ref:`removed-in-python-39` section.
[all …]
/third_party/python/Doc/howto/
Dlogging-cookbook.rst1 .. _logging-cookbook:
7 :Author: Vinay Sajip <vinay_sajip at red-dove dot com>
11 :ref:`cookbook-ref-links`.
16 ---------------------------------
39 formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
78 .. code-block:: none
80 2005-03-23 23:47:11,663 - spam_application - INFO -
82 2005-03-23 23:47:11,665 - spam_application.auxiliary.Auxiliary - INFO -
84 2005-03-23 23:47:11,665 - spam_application - INFO -
86 2005-03-23 23:47:11,668 - spam_application - INFO -
[all …]
/third_party/python/Misc/
DNEWS8 *Release date: 2023-06-06*
11 --------
13 - gh-issue-103142: The version of OpenSSL used in our binary builds has been
16 - gh-issue-99889: Fixed a security in flaw in :func:`uu.decode` that could
20 - gh-issue-104049: Do not expose the local on-disk location in directory
23 - gh-issue-102153: :func:`urllib.parse.urlsplit` now strips leading C0
25 by WHATWG in response to CVE-2023-24329. Patch by Illia Volochii.
28 -----------------
30 - gh-issue-105164: Ensure annotations are set up correctly if the only
34 - gh-issue-104615: Fix wrong ordering of assignments in code like ``a, a =
[all …]