15
0
forked from pool/python-nox

Compare commits

8 Commits

Author SHA256 Message Date
306fc3dec2 Accepting request 1318332 from devel:languages:python
- update to 2025.11.12:
  * Avoid warnings when running in script mode
  * `nox --report  ` should support `Path`
  * Install env was typed differently
  * pytest `log_level` is better than `log_cli_level`
  * Use last intel macOS image
  * Add a few more passing ruff checks
- update to 2025.10.16:
  * Make pbs-installer an optional dependency
  * Include time on longer runs (adds `humanize` dependency)
- update to 2025.10.14:
  * Add `--download-python` python option
  * Add `session.env_dir` to get the Path to the environment
  * Correct minimum versions and test

OBS-URL: https://build.opensuse.org/request/show/1318332
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-nox?expand=0&rev=13
2025-11-18 14:39:11 +00:00
fde8904e5d - update to 2025.11.12:
* Avoid warnings when running in script mode
  * `nox --report  ` should support `Path`
  * Install env was typed differently
  * pytest `log_level` is better than `log_cli_level`
  * Use last intel macOS image
  * Add a few more passing ruff checks
- update to 2025.10.16:
  * Make pbs-installer an optional dependency
  * Include time on longer runs (adds `humanize` dependency)
- update to 2025.10.14:
  * Add `--download-python` python option
  * Add `session.env_dir` to get the Path to the environment
  * Correct minimum versions and test

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-nox?expand=0&rev=27
2025-11-17 21:21:22 +00:00
a39bb9deca Accepting request 1307578 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1307578
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-nox?expand=0&rev=12
2025-09-29 14:32:44 +00:00
83245573b5 - update to 2025.05.01:
* This is a bugfix release that primarily adds support for uv
    0.7+. A few other small fixes were made.
- update to 2025.02.09:
  * This release improves PEP 723 support, including adding
    dependencies to the noxfile itself ("plugins"). It adds the
    long-awaited "requires" option, allowing sessions to require
    other sessions. And it brings further improvements to the
    `pyproject.toml` support, including helpers for dependency-
    groups and Python version lists.
  * More typing and test improvements
  * Some extra simplifications from Ruff
  * Use dependency-groups
  * Pull out env creation into helper method
  * Pulled out `get_virtualenv` & better typing
  * Fix broken mock on CPython 3.12.8+ in tests

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-nox?expand=0&rev=25
2025-09-21 14:46:53 +00:00
370a1e9e23 Accepting request 1232725 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1232725
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-nox?expand=0&rev=11
2024-12-20 14:27:28 +00:00
82be1e6156 - Add missing requirements
- Add fix-broken-mock-test.patch to fix testsuite

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-nox?expand=0&rev=23
2024-12-20 00:12:36 +00:00
f7013734a3 Accepting request 1217424 from devel:languages:python
- update to 2024.10.09:
  * This release adds explicit support for Python 3.13 and drops
    support for running Nox itself under Python 3.7. Note that
    you can still use 3.7 in your Nox sessions, we just dropped
    support for installing & running `nox` itself in 3.7.
  * Allow setting tags on parametrized sessions
  * Added support for `uv`-installed pythons
  * Added `session.install_and_run_script`
  * Updated type annotation of `stderr` parameter to make it
    optional
  * Removed `add_timestamp` from `noxfile.options`

OBS-URL: https://build.opensuse.org/request/show/1217424
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-nox?expand=0&rev=10
2024-10-24 13:43:18 +00:00
5894c92eae - update to 2024.10.09:
* This release adds explicit support for Python 3.13 and drops
    support for running Nox itself under Python 3.7. Note that
    you can still use 3.7 in your Nox sessions, we just dropped
    support for installing & running `nox` itself in 3.7.
  * Allow setting tags on parametrized sessions
  * Added support for `uv`-installed pythons
  * Added `session.install_and_run_script`
  * Updated type annotation of `stderr` parameter to make it
    optional
  * Removed `add_timestamp` from `noxfile.options`

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-nox?expand=0&rev=21
2024-10-23 20:29:50 +00:00
3 changed files with 40 additions and 2 deletions

View File

@@ -1,3 +1,41 @@
-------------------------------------------------------------------
Mon Nov 17 21:20:40 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 2025.11.12:
* Avoid warnings when running in script mode
* `nox --report ` should support `Path`
* Install env was typed differently
* pytest `log_level` is better than `log_cli_level`
* Use last intel macOS image
* Add a few more passing ruff checks
- update to 2025.10.16:
* Make pbs-installer an optional dependency
* Include time on longer runs (adds `humanize` dependency)
- update to 2025.10.14:
* Add `--download-python` python option
* Add `session.env_dir` to get the Path to the environment
* Correct minimum versions and test
-------------------------------------------------------------------
Sun Sep 21 14:44:49 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 2025.05.01:
* This is a bugfix release that primarily adds support for uv
0.7+. A few other small fixes were made.
- update to 2025.02.09:
* This release improves PEP 723 support, including adding
dependencies to the noxfile itself ("plugins"). It adds the
long-awaited "requires" option, allowing sessions to require
other sessions. And it brings further improvements to the
`pyproject.toml` support, including helpers for dependency-
groups and Python version lists.
* More typing and test improvements
* Some extra simplifications from Ruff
* Use dependency-groups
* Pull out env creation into helper method
* Pulled out `get_virtualenv` & better typing
* Fix broken mock on CPython 3.12.8+ in tests
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Dec 19 15:26:17 UTC 2024 - Nico Krapp <nico.krapp@suse.com> Thu Dec 19 15:26:17 UTC 2024 - Nico Krapp <nico.krapp@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-nox # spec file for package python-nox
# #
# Copyright (c) 2024 SUSE LLC # Copyright (c) 2025 SUSE LLC and contributors
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
%global padded_version 2024.04.15 %global padded_version 2024.04.15
Name: python-nox Name: python-nox
Version: 2024.10.9 Version: 2025.11.12
Release: 0 Release: 0
Summary: Flexible test automation Summary: Flexible test automation
License: Apache-2.0 License: Apache-2.0