Searched +full:publish +full:- +full:pypi (Results 1 – 7 of 7) sorted by relevance
| /third_party/jinja2/.github/workflows/ |
| D | publish.yaml | 1 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/protobuf/python/ |
| D | release.sh | 3 set -ex 6 grep "__version__ = '.*'" python/google/protobuf/__init__.py | sed -r "s/__version__ = '(.*)'/\1/" 12 local PYPI=$3 15 # pass --no-setuptools here and then install an older setuptools version 17 virtualenv -p `which $PYTHON` --no-setuptools test-venv 21 touch test-venv/bin/protoc 22 chmod +x test-venv/bin/protoc 24 source test-venv/bin/activate 26 pip install -i ${PYPI} protobuf==${VERSION} --no-cache-dir 28 rm -fr test-venv [all …]
|
| /third_party/python/Doc/installing/ |
| D | index.rst | 3 .. _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/python/Doc/distutils/ |
| D | setupscript.rst | 1 .. _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/ |
| D | 3.9.rst | 34 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/ |
| D | logging-cookbook.rst | 1 .. _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/ |
| D | NEWS | 8 *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 …]
|