Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-nox-2024.3.2-1.2 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python311-nox Distribution: openSUSE Tumbleweed
Version: 2024.3.2 Vendor: openSUSE
Release: 1.2 Build date: Fri Mar 15 22:08:41 2024
Group: Unspecified Build host: reproducible
Size: 410754 Source RPM: python-nox-2024.3.2-1.2.src.rpm
Packager: https://bugs.opensuse.org
Url: https://nox.thea.codes
Summary: Flexible test automation
Flexible test automation.

Provides

Requires

License

Apache-2.0

Changelog

* Fri Mar 15 2024 Dirk Müller <dmueller@suse.com>
  - update to 2024.03.02:
    * Add `uv` backend
    * Add venv backend fallback
    * Add option `--reuse-venv {yes,no,never,always}`
    * Add environment variable `NOX_DEFAULT_VENV_BACKEND` for
      default backend
    * Rename `session.run_always` to `session.run_install`
    * Add more option argument completions
    * Implement `tox-to-nox` for tox 4
    * Allow `--force-python` on unparametrized sessions
    * Add `include_outer_env` parameter to `session.run` and
      friends
    * GitHub Action: Add support for the `~` version specifier
* Fri Jun 23 2023 Steve Kowalik <steven.kowalik@suse.com>
  - Add patch support-tox-4.patch:
    * Support tox 4
  - Refresh upstream tarball due to repo move.
* Tue Apr 25 2023 John Vandenberg <jayvdb@gmail.com>
  - Update to v2023.4.22
    * Add support for NOXPYTHON, NOXEXTRAPYTHON and NOXFORCEPYTHON
    * feat: --json --list-sessions
    * style: spelling and grammar fixes
    * Constrain tox to <4.0.0 and minor fixes
    * chore: long term fix for bugbear opinionated checks
    * chore: switch to hatchling
    * Don't run python 2.7 virtualenv tests for newer versions of virtualenv
    * allow the use of argcomplete 3
    * fix: enable list_sessions for session completion
    * chore: remove 3.6 tests, min version is 3.7
  - from v2022.11.21
    * Include Python 3.11 classifier & testing
    * Fixed a few typos
    * Drop dependency on py
    * nox.session.run now accepts a pathlib.Path for the command
    * Document nox.session.run's stdout and stderr arguments and
      add example of capturing output
    * Docs: fix argument passing in session.posargs example
    * GitHub Action: move to 3.11 final
    * Cleanup Python 2 style code
  - from 2022.8.7
    * Drop support for Python 3.6
    * Disable running session.install outside a venv
    * Official Nox GitHub Action
    * Missing interpreters now error the session on CI by default
    * Allow configurable child shutdown timeouts
    * Add session tags
    * Add short -N alias for --no-reuse-existing-virtualenvs
    * Export session name in NOX_CURRENT_SESSION environment variable
    * Add VENV_DIR to dev session in cookbook
    * Support descriptions in tox-to-nox
    * Document that silent=True returns the command output
    * Support argcomplete v2
    * Fix incorrect FileNotFoundError in load_nox_module
    * Update the classifiers, documentation, and more to point to the
      new Winterbloom location
    * Support PEP 621 (pyproject.toml)
    * Prefer type checking against Jinja2
    * Full strictness checking on mypy
    * Drop 99% coverage threshold flag for 3.10 in noxfile
  - from 2022.1.7
    * Add mamba backend
    * Add session.debug to show debug-level messages
    * Add cookbook page to the documentation
    * Add support for the FORCE_COLOR environment variable
    * Allow using session.chdir() as a context manager
    * Deprecate use of session.install() without a valid backend
    * Test against Python 3.10
    * Add support for the channel option when using the conda backend
    * Show more specific error message when the --keywords expression
      contains a syntax error
    * Include reference to session.notify() in tutorial page
    * Document how session.run() fails and how to handle failures
    * Allow the list of sessions to be empty
    * Fix broken temporary directory when using session.chdir()
    * Set the CONDA_PREFIX environment variable
    * Fix bin directory for the conda backend on Windows
    * Replace deprecated load_module with exec_module
    * Include tests with source distributions
    * Add missing copyright notices
    * Use the new ReadTheDocs configurations
    * Make setuptools use the standard library's distutils to
      work around virtualenv bug.
    * Use shlex.join() when logging a command
    * Use shutil.rmtree() over shelling out to rm -rf in noxfile
    * Fix missing Python 3.9 CI session
    * Unpin docs session and add --error-on-missing-interpreter to CI
    * Only run conda_tests session by default if user has conda installed
    * Update dependencies in requirements-conda-test.txt
  - from v2021.10.1
    * Add session.warn to output warnings
    * Add a shared session cache directory
    * Add session.invoked_from
    * Conda logs now respect nox.options.verbose
    * Add friendlier message if no noxfile.py is found
    * Show the noxfile.py docstring when using nox -l
    * Move configs into pyproject.toml or setup.cfg (flake8)
    * Use PEP 517 build system, remove setup.py, use setup.cfg
  - from v2021.6.12
    * Fix crash on Python 2 when reusing environments
    * Hide staleness check behind a feature flag
    * Group command-line options in --help message by function
    * Avoid polluting tests with a .nox directory
  - from v2021.6.6
    * Add option --no-install to skip install commands in
      reused environments
    * Add option --force-python as shorthand for --python and
    - -extra-python
    * Do not reuse environments if the interpreter or the
      environment type has changed
    * Allow common variations in session names with parameters,
      such as double quotes instead of single quotes.
      Session names are considered equal if they produce the same
      Python AST.
    * Preserve the order of parameters in session names
    * Allow @nox.parametrize to select the session Python
    * Allow passing posargs when scheduling another session via
      session.notify
    * Prevent sessions from modifying each other's posargs
    * Add nox.needs_version to specify Nox version requirements
    * Add session.name to get the session name
    * Gracefully shutdown child processes
    * Decode command output using the system locale if UTF-8
      decoding fails
    * Fix creation of Conda environments when venv_params is used
    * Various improvements to Nox's type annotations
    * Allow colorlog <7.0.0.
  - from v2020.12.31
    * Fix NoxColoredFormatter.format
    * Use conda remove to clean up existing conda environments
    * Support users specifying an undeclared parametrization of
      python via --extra-python
    * Support double-digit minor version in python keyword
    * Add py.typed to manifest.in
    * Update Nox to latest supported python versions
    * Decouple merging of --python with nox.options from --sessions
      and --keywords
    * Do not merge command-line options in place
  - from v2020.8.22
    * conda_install and install args are now automatically double-quoted
      when needed
    * Offline mode is now auto-detected by default by conda_install.
      This allows users to continue executing Nox sessions on already
      installed environments
    * Fix the default paths for Conda on Windows where the python.exe
      found was not the correct one
    * Add the --add-timestamp option
    * Add Session.run_always()
* Wed Jun 17 2020 Steve Kowalik <steven.kowalik@suse.com>
  - Update to version 2020.5.24:
    * Add new options for `venv_backend`, including the ability to set the
      backend globally. (#326)
    * Fix various typos in the documentation. (#325, #326, #281)
    * Add `session.create_tmp`. (#320)
    * Place all of Nox's command-line options into argparse groups. (#306)
    * Add the `--pythons` command-line option to allow specifying which versions
      of Python to run. (#304)
    * Add a significant amount of type annotations. (#297, #294, #290, #282, #274)
    * Stop building universal wheels since we don't support Python 2. (#293)
    * Add the ability to specify additional options for the virtualenv backend using `venv_params`. (#280)
    * Prefer `importlib.metadata` for metadata loading, removing our dependency on `pkg_resources`. (#277)
    * Add OmegaConf and Hydra to list of projects that use Nox. (#279)
    * Use a more accurate error message, along with the cause, if loading of noxfile runs into error. (#272)
    * Test against Python 3.8. (#270)
    * Fix a syntax highlighting mistake in configuration docs. (#268)
    * Use `stdout.isatty` to finalize color instead of `stdin.isatty`. (#267)
* Thu May 21 2020 Petr Gajdos <pgajdos@suse.com>
  - %python3_only -> %python_alternative
* Mon Mar 30 2020 pgajdos@suse.com
  - version update to 2019.11.9
    - Fix example installation call for pip. (#259)
    - Allow colorlog 4. (#257)
    - Order Pythons in descending version in `appveyor.yml`. (#258)
    - Add link to GitHub Action for Nox. (#255)
    - Use double "\`" for inline code. (#254)
    - Add types to `_option_set.py`. (#249)
    - Add type hints to `tasks.py`. (#241)
    - Fix typo (virtulenvs). (#247)
    - Replace flake8 sorter with isort. (#242)
    - Pass `VIRTUAL_ENV` environment variable to commands executed in a virtualenv. (#245)
    - Fix docs to show correct list for parametrize. (#244)
    - Add argcomplete dependency to conda test session. (#240)
* Tue Oct 15 2019 John Vandenberg <jayvdb@gmail.com>
  - Remove upper version specifiers preventing use with latest colorlog
* Mon Oct 14 2019 John Vandenberg <jayvdb@gmail.com>
  - Initial spec for v2019.8.20

Files

/etc/alternatives/nox
/etc/alternatives/tox-to-nox
/usr/bin/nox
/usr/bin/nox-3.11
/usr/bin/tox-to-nox
/usr/bin/tox-to-nox-3.11
/usr/lib/python3.11/site-packages/nox
/usr/lib/python3.11/site-packages/nox-2023.4.22.dist-info
/usr/lib/python3.11/site-packages/nox-2023.4.22.dist-info/INSTALLER
/usr/lib/python3.11/site-packages/nox-2023.4.22.dist-info/METADATA
/usr/lib/python3.11/site-packages/nox-2023.4.22.dist-info/RECORD
/usr/lib/python3.11/site-packages/nox-2023.4.22.dist-info/REQUESTED
/usr/lib/python3.11/site-packages/nox-2023.4.22.dist-info/WHEEL
/usr/lib/python3.11/site-packages/nox-2023.4.22.dist-info/entry_points.txt
/usr/lib/python3.11/site-packages/nox-2023.4.22.dist-info/licenses
/usr/lib/python3.11/site-packages/nox-2023.4.22.dist-info/licenses/LICENSE
/usr/lib/python3.11/site-packages/nox/__init__.py
/usr/lib/python3.11/site-packages/nox/__main__.py
/usr/lib/python3.11/site-packages/nox/__pycache__
/usr/lib/python3.11/site-packages/nox/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/__main__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/__main__.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_decorators.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_decorators.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_option_set.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_option_set.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_options.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_options.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_parametrize.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_parametrize.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_typing.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_typing.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_version.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/_version.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/command.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/command.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/logger.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/logger.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/manifest.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/manifest.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/popen.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/popen.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/registry.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/registry.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/sessions.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/sessions.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/tasks.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/tasks.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/tox_to_nox.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/tox_to_nox.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/virtualenv.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/virtualenv.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/workflow.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/nox/__pycache__/workflow.cpython-311.pyc
/usr/lib/python3.11/site-packages/nox/_decorators.py
/usr/lib/python3.11/site-packages/nox/_option_set.py
/usr/lib/python3.11/site-packages/nox/_options.py
/usr/lib/python3.11/site-packages/nox/_parametrize.py
/usr/lib/python3.11/site-packages/nox/_typing.py
/usr/lib/python3.11/site-packages/nox/_version.py
/usr/lib/python3.11/site-packages/nox/command.py
/usr/lib/python3.11/site-packages/nox/logger.py
/usr/lib/python3.11/site-packages/nox/manifest.py
/usr/lib/python3.11/site-packages/nox/popen.py
/usr/lib/python3.11/site-packages/nox/py.typed
/usr/lib/python3.11/site-packages/nox/registry.py
/usr/lib/python3.11/site-packages/nox/sessions.py
/usr/lib/python3.11/site-packages/nox/tasks.py
/usr/lib/python3.11/site-packages/nox/tox4_to_nox.jinja2
/usr/lib/python3.11/site-packages/nox/tox_to_nox.jinja2
/usr/lib/python3.11/site-packages/nox/tox_to_nox.py
/usr/lib/python3.11/site-packages/nox/virtualenv.py
/usr/lib/python3.11/site-packages/nox/workflow.py
/usr/share/doc/packages/python311-nox
/usr/share/doc/packages/python311-nox/README.md
/usr/share/licenses/python311-nox
/usr/share/licenses/python311-nox/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Apr 20 23:22:12 2024