| /external/python/mako/.github/workflows/ |
| D | run-on-pr.yaml | 7 - main 8 paths-ignore: 9 - "doc/**" 12 run-test: 13 name: ${{ matrix.python-version }}-${{ matrix.os }}-${{matrix.tox-env}} 14 runs-on: ${{ matrix.os }} 19 - "ubuntu-latest" 20 python-version: 21 - "3.10" 22 tox-env: [all …]
|
| /external/python/apitools/ |
| D | .travis.yml | 4 - python: "2.7" 5 env: TOX_ENV=lint 6 - python: "2.7" 7 env: TOX_ENV=py27-oauth2client1 8 - python: "2.7" 9 env: TOX_ENV=py27-oauth2client2 10 - python: "2.7" 11 env: TOX_ENV=py27-oauth2client3 12 - python: "2.7" 13 env: TOX_ENV=py27-oauth2client4 [all …]
|
| /external/python/setuptools/ |
| D | tox.ini | 1 [tox] section 6 toxworkdir={env:TOX_WORK_DIR:.tox} argument 21 # honor git config in pytest-perf 23 # workaround for tox-dev/tox#2382 30 extras = testing-integration 34 # workaround for tox-dev/tox#2382 41 pytest --integration {posargs:-vv --durations=10 setuptools/tests/integration} 50 python -m sphinx -W --keep-going . {toxinidir}/build/html 66 python -m tools.vendored 78 TWINE_USERNAME = {env:TWINE_USERNAME:__token__} [all …]
|
| /external/python/dateutil/ |
| D | .travis.yml | 5 - "2.7" 6 - "3.3" 7 - "3.4" 8 - "3.5" 9 - "3.6" 10 - "nightly" 11 - "pypy-5.4" 12 - "pypy3" 13 env: 19 - python: 3.6 [all …]
|
| D | appveyor.yml | 4 - PYTHON_VERSION: 27 5 - PYTHON_VERSION: 33 6 - PYTHON_VERSION: 34 7 - PYTHON_VERSION: 35 8 - PYTHON_VERSION: 36 10 - x64 11 - x86 16 - platform: x86 18 - platform: x86 20 - platform: x86 [all …]
|
| /external/python/uritemplates/ |
| D | .travis.yml | 6 - python: 2.7 7 env: TOXENV=py27 8 - python: 3.4 9 env: TOXENV=py34 10 - python: 3.5 11 env: TOXENV=py35 12 - python: 3.6 13 env: TOXENV=py36 14 - python: 3.7 15 env: TOXENV=py37 [all …]
|
| /external/python/oauth2client/ |
| D | CONTRIBUTING.md | 13 ---------------------------------- 21 ------------------- 27 ------------- 31 the docs yourself via `tox -e docs` and make sure they're readable. 34 --------------------- 39 Expect some back-and-forth with regards to style and compliance of these 45 ---------------------------- 50 - While logged into your GitHub account, navigate to the `oauth2client` 52 - Fork and clone the `oauth2client` repository to your GitHub account 54 - Clone your fork of `oauth2client` from your GitHub account to your [all …]
|
| D | tox.ini | 1 [tox] section 21 commands = nosetests --ignore-files=test_appengine\.py --ignore-files=test__appengine_ndb\.py {posa… 27 --with-coverage \ 28 --cover-package=oauth2client \ 29 --cover-package=tests \ 30 --cover-erase \ 31 --cover-tests \ 32 --cover-branches \ 33 --ignore-files=test_appengine\.py \ 34 --ignore-files=test__appengine_ndb\.py [all …]
|
| D | .travis.yml | 7 - python: 3.5 8 env: 9 - TOX_ENV=py35 10 env: 12 - TOX_ENV=py26 13 - TOX_ENV=py27 14 - TOX_ENV=py33 15 - TOX_ENV=py34 16 - TOX_ENV=pypy 17 - TOX_ENV=docs [all …]
|
| /external/armnn/python/pyarmnn/ |
| D | README.md | 3 …extension for [Arm NN SDK](https://developer.arm.com/ip-products/processors/machine-learning/arm-n… 19 1. You have Python 3.6+ installed system-side. The package is not compatible with older Python vers… 20 2. You have python3.6-dev installed system-side. This contains header files needed to build PyArmNN… 22 …python3.6-dev build-essential checkinstall libreadline-gplv2-dev libncursesw5-dev libssl-dev libsq… 23 …To install it follow the guide on [SWIG GitHub](https://github.com/swig/swig/wiki/Getting-Started). 29 python -m venv env 30 source env/bin/activate 55 -DBUILD_PYTHON_SRC=1 61 -DSWIG_EXECUTABLE=<path_to_swig_executable> 72 * Linux x86 64bit machine: pyarmnn-32.0.0-cp36-cp36m-*linux_x86_64*.whl [all …]
|
| D | tox.ini | 1 [tox] section 7 pytest-cov==2.8.1 13 more-itertools==8.12.0 19 …python -m pytest test/ -v {posargs} --junit-xml=test_report_junit-{envname}.xml --cov=pyarmnn --co… 22 envdir = env 26 tox argument 28 commands = python -c "import sys; print('Dev environment created: ' + sys.executable)" 38 python setup.py clean --all 40 python setup.py build_ext --inplace 48 …python ./scripts/generate_docs.py --html --output-dir docs pyarmnn --force --template-dir=./docs_c… [all …]
|
| /external/fonttools/.github/workflows/ |
| D | test.yml | 12 env: 13 # turns off tox's output redirection so we can debug package installation 14 TOX_OPTIONS: -vv 18 runs-on: ubuntu-latest 19 # https://github.community/t/github-actions-does-not-respect-skip-ci/17325/8 22 - uses: actions/checkout@v4 23 - name: Set up Python 3.x 24 uses: actions/setup-python@v5 26 python-version: "3.x" 27 - name: Install packages [all …]
|
| D | wheels.yml | 7 …# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispat… 10 env: 11 # skip binary wheels for pypy (preferable to use pure-python) and 32-bit Linux 14 CIBW_TEST_REQUIRES: tox 17 CIBW_TEST_COMMAND: "tox -c {package}/tox.ini -e py-cy-noextra --installpkg {wheel}" 22 runs-on: ubuntu-latest 24 - uses: actions/checkout@v4 25 - name: Set up Python 26 uses: actions/setup-python@v5 28 python-version: '3.x' [all …]
|
| /external/fonttools/ |
| D | tox.ini | 1 [tox] section 3 envlist = lint, py3{8,9,10,11,12}-cov, htmlcov 9 # use 'download = true' to have tox install the latest pip inside the virtualenv. argument 10 # We need this to be able to install skia-pathops on Linux, which uses a 12 # https://github.com/tox-dev/tox/issues/791#issuecomment-518713438 14 # building lxml from source takes too long on CI, force it to download pre-compiled 15 # wheel or fail if none is found with --only-binary=lxml 16 install_command = python -m pip install --only-binary=lxml {opts} {packages} 20 pytest-randomly 21 # add -noextra to tox -e to skip installing extras and only test the core fonttools [all …]
|
| D | .gitignore | 1 # Byte-compiled / optimized / DLL files 14 *.egg-info/ 20 pip-log.txt 21 pip-delete-this-directory.txt 25 .tox/ 34 .env 36 env/ 38 ENV/ 39 env.bak/
|
| /external/google-cloud-java/ |
| D | .gitignore | 13 *.egg-info/ 18 .flattened-pom.xml 26 .env 28 env/ 30 ENV/ 31 env.bak/ 37 .tox
|
| /external/walt/pywalt/ |
| D | .gitignore | 1 # Byte-compiled / optimized / DLL files 11 env/ 13 develop-eggs/ 23 *.egg-info/ 34 pip-log.txt 35 pip-delete-this-directory.txt 39 .tox/ 58 .webassets-cache 73 .python-version 76 celerybeat-schedule [all …]
|
| /external/cronet/third_party/libc++/src/ |
| D | .gitignore | 1 # Byte-compiled / optimized / DLL files 10 env/ 12 develop-eggs/ 21 *.egg-info/ 26 pip-log.txt 27 pip-delete-this-directory.txt 31 .tox/ 51 env.lst 54 # Editor by-products
|
| /external/python/setuptools/setuptools/tests/ |
| D | environment.py | 11 name = '.env' 16 create_opts = ['--no-setuptools'] 22 # - tox isn't used to run tests and 23 # - PYTHONPATH is set to point to a specific setuptools codebase and 24 # - no custom env is explicitly set by a test 27 # Unless the test sets its own special env, pass a copy of the existing 29 if "env" not in kwargs: 30 env = dict(os.environ) 31 if "PYTHONPATH" in env: 32 del env["PYTHONPATH"] [all …]
|
| /external/libcxx/ |
| D | .gitignore | 1 # Byte-compiled / optimized / DLL files 10 env/ 12 develop-eggs/ 21 *.egg-info/ 32 pip-log.txt 33 pip-delete-this-directory.txt 37 .tox/ 57 env.lst 60 # Editor by-products
|
| /external/bazelbuild-rules_python/python/pip_install/ |
| D | .gitignore | 6 bazel-* 8 # Byte-compiled / optimized / DLL files 19 develop-eggs/ 29 pip-wheel-metadata/ 30 share/python-wheels/ 31 *.egg-info/ 43 pip-log.txt 44 pip-delete-this-directory.txt 48 .tox/ 68 db.sqlite3-journal [all …]
|
| /external/python/jinja/ |
| D | CONTRIBUTING.rst | 8 ----------------- 15 - The ``#get-help`` channel on our Discord chat: 17 - The mailing list flask@python.org for long term discussion or larger 19 - Ask on `Stack Overflow`_. Search with Google first using: 26 ---------------- 30 - Describe what you expected to happen. 31 - If possible, include a `minimal reproducible example`_ to help us 34 - Describe what actually happened. Include the full traceback if there 36 - List your Python and Jinja versions. If possible, check if this 40 .. _minimal reproducible example: https://stackoverflow.com/help/minimal-reproducible-example [all …]
|
| D | .gitignore | 5 *.egg-info/ 10 .tox/ 13 env/ 15 venv-*/
|
| /external/python/markupsafe/ |
| D | .gitignore | 6 env/ 10 *.egg-info/ 11 .tox/
|
| /external/python/timeout-decorator/ |
| D | .gitignore | 5 .env 12 *.egg-info 20 develop-eggs 26 pip-log.txt 30 .tox
|