Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-pytest-check for 
openSUSE:Factory checked in at 2023-09-14 16:26:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-check (Old)
 and      /work/SRC/openSUSE:Factory/.python-pytest-check.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pytest-check"

Thu Sep 14 16:26:08 2023 rev:3 rq:1111063 version:2.2.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pytest-check/python-pytest-check.changes  
2023-07-25 11:53:07.250161275 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-pytest-check.new.1766/python-pytest-check.changes
        2023-09-14 16:29:05.897939738 +0200
@@ -1,0 +2,6 @@
+Thu Sep  7 09:23:40 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 2.2.1:
+  * Increase Python range to include 3.7.0. Thanks EliahKagan
+
+-------------------------------------------------------------------

Old:
----
  pytest_check-2.2.0.tar.gz

New:
----
  pytest_check-2.2.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-pytest-check.spec ++++++
--- /var/tmp/diff_new_pack.GUvEgd/_old  2023-09-14 16:29:06.981978463 +0200
+++ /var/tmp/diff_new_pack.GUvEgd/_new  2023-09-14 16:29:06.985978606 +0200
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-pytest-check
-Version:        2.2.0
+Version:        2.2.1
 Release:        0
 Summary:        A pytest plugin that allows multiple failures per test
 License:        MIT

++++++ pytest_check-2.2.0.tar.gz -> pytest_check-2.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest_check-2.2.0/.coveragerc 
new/pytest_check-2.2.1/.coveragerc
--- old/pytest_check-2.2.0/.coveragerc  1970-01-01 01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/.coveragerc  2020-07-19 00:16:04.325579400 +0200
@@ -0,0 +1,7 @@
+[run]
+branch = True
+
+[paths]
+source =
+   src
+   .tox/*/site-packages
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest_check-2.2.0/.github/FUNDING.yml 
new/pytest_check-2.2.1/.github/FUNDING.yml
--- old/pytest_check-2.2.0/.github/FUNDING.yml  1970-01-01 01:00:00.000000000 
+0100
+++ new/pytest_check-2.2.1/.github/FUNDING.yml  2023-02-13 16:03:38.536776800 
+0100
@@ -0,0 +1,3 @@
+# These are supported funding model platforms
+
+github: okken
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest_check-2.2.0/.github/workflows/main.yml 
new/pytest_check-2.2.1/.github/workflows/main.yml
--- old/pytest_check-2.2.0/.github/workflows/main.yml   1970-01-01 
01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/.github/workflows/main.yml   2023-06-06 
23:48:23.308157400 +0200
@@ -0,0 +1,30 @@
+name: Python package
+
+on:
+  push:
+    branches: [main]
+  pull_request:
+    branches: [main]
+
+env:
+  FORCE_COLOR: "1"
+  TOX_TESTENV_PASSENV: FORCE_COLOR
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
+
+    steps:
+      - uses: actions/checkout@v3
+      - name: Setup Python
+        uses: actions/setup-python@v4
+        with:
+          python-version: ${{ matrix.python }}
+      - name: Install Tox and any other packages
+        run: pip install tox
+      - name: Run Tox
+        run: tox -e py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pytest_check-2.2.0/.github/workflows/publish-to-pypi.yml 
new/pytest_check-2.2.1/.github/workflows/publish-to-pypi.yml
--- old/pytest_check-2.2.0/.github/workflows/publish-to-pypi.yml        
1970-01-01 01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/.github/workflows/publish-to-pypi.yml        
2023-02-09 22:03:32.608502900 +0100
@@ -0,0 +1,28 @@
+name: Publish to PyPI and TestPyPI
+
+on: push
+
+jobs:
+  build-n-publish:
+    name: Build and publish to PyPI and TestPyPI
+    if: startsWith(github.ref, 'refs/tags')
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v3
+    - name: Set up Python 3.11
+      uses: actions/setup-python@v4
+      with:
+        python-version: "3.11"
+    - name: Install pypa/build
+      run: python -m pip install build --user
+    - name: Build a binary wheel and a source tarball
+      run: python -m build --sdist --wheel --outdir dist/
+    - name: Publish to Test PyPI
+      uses: pypa/gh-action-pypi-publish@release/v1
+      with:
+        password: ${{ secrets.TEST_PYPI_API_TOKEN }}
+        repository_url: https://test.pypi.org/legacy/
+    - name: Publish to PyPI 
+      uses: pypa/gh-action-pypi-publish@release/v1
+      with:
+        password: ${{ secrets.PYPI_API_TOKEN }}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest_check-2.2.0/.gitignore 
new/pytest_check-2.2.1/.gitignore
--- old/pytest_check-2.2.0/.gitignore   1970-01-01 01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/.gitignore   2022-08-25 04:43:34.113669400 +0200
@@ -0,0 +1,15 @@
+*.egg-info
+*.pyc
+.tox
+dist/
+__pycache__
+.coverage
+.idea/
+cov_html/
+venv/
+README.html
+build/
+htmlcov/
+*.swp
+.python-version
+.vscode/
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest_check-2.2.0/PKG-INFO 
new/pytest_check-2.2.1/PKG-INFO
--- old/pytest_check-2.2.0/PKG-INFO     1970-01-01 01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/PKG-INFO     1970-01-01 01:00:00.000000000 +0100
@@ -1,9 +1,9 @@
 Metadata-Version: 2.1
 Name: pytest-check
-Version: 2.2.0
+Version: 2.2.1
 Summary: A pytest plugin that allows multiple failures per test.
 Author: Brian Okken
-Requires-Python: >3.7
+Requires-Python: >=3.7
 Description-Content-Type: text/markdown
 Classifier: License :: OSI Approved :: MIT License
 Classifier: Framework :: Pytest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest_check-2.2.0/changelog.md 
new/pytest_check-2.2.1/changelog.md
--- old/pytest_check-2.2.0/changelog.md 2023-07-14 21:48:04.857371800 +0200
+++ new/pytest_check-2.2.1/changelog.md 2023-08-11 22:40:49.526702200 +0200
@@ -19,6 +19,12 @@
 - nothing so far
 
 -->
+## [2.2.1] - 2023-Aug-11
+
+### Changed
+
+- Increase Python range to include 3.7.0. Thanks 
[EliahKagan](https://github.com/EliahKagan)
+
 ## [2.2.0] - 2023-July-14
 
 ### Added
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest_check-2.2.0/examples/.pytest_cache/.gitignore 
new/pytest_check-2.2.1/examples/.pytest_cache/.gitignore
--- old/pytest_check-2.2.0/examples/.pytest_cache/.gitignore    1970-01-01 
01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/examples/.pytest_cache/.gitignore    2023-07-13 
20:31:51.583774800 +0200
@@ -0,0 +1,2 @@
+# Created by pytest automatically.
+*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pytest_check-2.2.0/examples/.pytest_cache/CACHEDIR.TAG 
new/pytest_check-2.2.1/examples/.pytest_cache/CACHEDIR.TAG
--- old/pytest_check-2.2.0/examples/.pytest_cache/CACHEDIR.TAG  1970-01-01 
01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/examples/.pytest_cache/CACHEDIR.TAG  2023-07-13 
20:31:51.583937400 +0200
@@ -0,0 +1,4 @@
+Signature: 8a477f597d28d172789f06886806bc55
+# This file is a cache directory tag created by pytest.
+# For information about cache directory tags, see:
+#      https://bford.info/cachedir/spec.html
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest_check-2.2.0/examples/.pytest_cache/README.md 
new/pytest_check-2.2.1/examples/.pytest_cache/README.md
--- old/pytest_check-2.2.0/examples/.pytest_cache/README.md     1970-01-01 
01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/examples/.pytest_cache/README.md     2023-07-13 
20:31:51.583629100 +0200
@@ -0,0 +1,8 @@
+# pytest cache directory #
+
+This directory contains data from the pytest's cache plugin,
+which provides the `--lf` and `--ff` options, as well as the `cache` fixture.
+
+**Do not** commit this to version control.
+
+See [the docs](https://docs.pytest.org/en/stable/how-to/cache.html) for more 
information.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pytest_check-2.2.0/examples/.pytest_cache/v/cache/lastfailed 
new/pytest_check-2.2.1/examples/.pytest_cache/v/cache/lastfailed
--- old/pytest_check-2.2.0/examples/.pytest_cache/v/cache/lastfailed    
1970-01-01 01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/examples/.pytest_cache/v/cache/lastfailed    
2023-07-14 21:12:49.267706200 +0200
@@ -0,0 +1,9 @@
+{
+  "test_example_alt_names.py::ends_with_test": true,
+  "test_example_any_failures.py::test_any_failures_false": true,
+  "test_example_any_failures.py::test_any_failures_true": true,
+  "test_example_helpers.py::test_func": true,
+  "test_example_simple.py::test_fail": true,
+  "test_example_locals.py::test_ctx": true,
+  "test_example_locals.py::test_check_func": true
+}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pytest_check-2.2.0/examples/.pytest_cache/v/cache/nodeids 
new/pytest_check-2.2.1/examples/.pytest_cache/v/cache/nodeids
--- old/pytest_check-2.2.0/examples/.pytest_cache/v/cache/nodeids       
1970-01-01 01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/examples/.pytest_cache/v/cache/nodeids       
2023-07-14 21:16:58.880269800 +0200
@@ -0,0 +1,11 @@
+[
+  "test_example_alt_names.py::ends_with_test",
+  "test_example_alt_names.py::test_default_naming",
+  "test_example_any_failures.py::test_any_failures_false",
+  "test_example_any_failures.py::test_any_failures_true",
+  "test_example_helpers.py::test_func",
+  "test_example_locals.py::test_check_func",
+  "test_example_locals.py::test_ctx",
+  "test_example_simple.py::test_fail",
+  "test_example_simple.py::test_pass"
+]
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pytest_check-2.2.0/examples/.pytest_cache/v/cache/stepwise 
new/pytest_check-2.2.1/examples/.pytest_cache/v/cache/stepwise
--- old/pytest_check-2.2.0/examples/.pytest_cache/v/cache/stepwise      
1970-01-01 01:00:00.000000000 +0100
+++ new/pytest_check-2.2.1/examples/.pytest_cache/v/cache/stepwise      
2023-07-14 21:16:58.880551300 +0200
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest_check-2.2.0/pyproject.toml 
new/pytest_check-2.2.1/pyproject.toml
--- old/pytest_check-2.2.0/pyproject.toml       2023-07-14 21:48:04.857371800 
+0200
+++ new/pytest_check-2.2.1/pyproject.toml       2023-08-11 22:41:00.749737700 
+0200
@@ -4,8 +4,8 @@
 readme = "README.md"
 license = {file = "LICENSE.txt"}
 description="A pytest plugin that allows multiple failures per test."
-version = "2.2.0"
-requires-python = ">3.7"
+version = "2.2.1"
+requires-python = ">=3.7"
 classifiers = [
     "License :: OSI Approved :: MIT License",
     "Framework :: Pytest" ,

Reply via email to