Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-aiounittest for 
openSUSE:Factory checked in at 2025-07-15 16:42:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-aiounittest (Old)
 and      /work/SRC/openSUSE:Factory/.python-aiounittest.new.7373 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-aiounittest"

Tue Jul 15 16:42:55 2025 rev:6 rq:1292329 version:1.5.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-aiounittest/python-aiounittest.changes    
2025-05-23 14:27:16.836270357 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-aiounittest.new.7373/python-aiounittest.changes
  2025-07-15 16:43:28.955038296 +0200
@@ -1,0 +2,11 @@
+Sat Jul 12 11:42:38 UTC 2025 - Dirk Müller <dmuel...@suse.com>
+
+- update to 1.5.0:
+  * package: include the requirements and tests in the sdist
+    package
+- update to 1.4.3:
+  * Drop travis in favor of gh actions
+  * Drop `nosetest`
+  * Add `DepracationWarning` for "old-python" tests
+
+-------------------------------------------------------------------

Old:
----
  aiounittest-1.4.2.tar.gz

New:
----
  aiounittest-1.5.0.tar.gz

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

Other differences:
------------------
++++++ python-aiounittest.spec ++++++
--- /var/tmp/diff_new_pack.EYlcZb/_old  2025-07-15 16:43:30.623100331 +0200
+++ /var/tmp/diff_new_pack.EYlcZb/_new  2025-07-15 16:43:30.647101224 +0200
@@ -19,7 +19,7 @@
 
 %define skip_python2 1
 Name:           python-aiounittest
-Version:        1.4.2
+Version:        1.5.0
 Release:        0
 Summary:        Test AyncIO Python Code Easily
 License:        MIT

++++++ aiounittest-1.4.2.tar.gz -> aiounittest-1.5.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aiounittest-1.4.2/.github/workflows/python-package.yml 
new/aiounittest-1.5.0/.github/workflows/python-package.yml
--- old/aiounittest-1.4.2/.github/workflows/python-package.yml  2022-06-13 
15:06:25.000000000 +0200
+++ new/aiounittest-1.5.0/.github/workflows/python-package.yml  2025-03-07 
08:26:29.000000000 +0100
@@ -11,11 +11,10 @@
 
 jobs:
   build:
-
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-20.04
     strategy:
       matrix:
-        python-version: [3.6, 3.7, 3.8]
+        python-version: [3.6.15, 3.7.17, 3.8.18, 3.9.21, 3.10.16, 3.11.11]
 
     steps:
     - uses: actions/checkout@v2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiounittest-1.4.2/.gitignore 
new/aiounittest-1.5.0/.gitignore
--- old/aiounittest-1.4.2/.gitignore    2022-06-13 15:06:25.000000000 +0200
+++ new/aiounittest-1.5.0/.gitignore    2025-03-07 08:26:29.000000000 +0100
@@ -41,7 +41,6 @@
 .coverage
 .coverage.*
 .cache
-nosetests.xml
 coverage.xml
 *.cover
 .hypothesis/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiounittest-1.4.2/.travis.yml 
new/aiounittest-1.5.0/.travis.yml
--- old/aiounittest-1.4.2/.travis.yml   2022-06-13 15:06:25.000000000 +0200
+++ new/aiounittest-1.5.0/.travis.yml   1970-01-01 01:00:00.000000000 +0100
@@ -1,15 +0,0 @@
-language: python
-python:
-  #- "3.4"
-  - "3.5"
-  - "3.6"
-matrix:
-  include:
-    - python: 3.7
-      dist: xenial
-      sudo: true
-# command to install dependencies
-install:
-  - "pip install -U importlib_metadata"
-  - "python setup.py install"
-script: nosetests
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiounittest-1.4.2/LICENSE 
new/aiounittest-1.5.0/LICENSE
--- old/aiounittest-1.4.2/LICENSE       2022-06-13 15:06:25.000000000 +0200
+++ new/aiounittest-1.5.0/LICENSE       2025-03-07 08:26:29.000000000 +0100
@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2017-2019 Krzysztof Warunek
+Copyright (c) 2017-2025 Krzysztof Warunek
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiounittest-1.4.2/MANIFEST.in 
new/aiounittest-1.5.0/MANIFEST.in
--- old/aiounittest-1.4.2/MANIFEST.in   2022-06-13 15:06:25.000000000 +0200
+++ new/aiounittest-1.5.0/MANIFEST.in   2025-03-07 08:26:29.000000000 +0100
@@ -1,6 +1,9 @@
 include README.rst
 include LICENSE
 include aiounittest/py.typed
+include requirements.txt
+
+recursive-include tests *.py
 
 recursive-exclude * __pycache__
 recursive-exclude * *.py[co]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiounittest-1.4.2/docs/conf.py 
new/aiounittest-1.5.0/docs/conf.py
--- old/aiounittest-1.4.2/docs/conf.py  2022-06-13 15:06:25.000000000 +0200
+++ new/aiounittest-1.5.0/docs/conf.py  2025-03-07 08:26:29.000000000 +0100
@@ -51,7 +51,7 @@
 
 # General information about the project.
 project = u'aiounittest'
-copyright = u'2019, Krzysztof Warunek'
+copyright = u'2025, Krzysztof Warunek'
 author = u'Krzysztof Warunek'
 
 # The version info for the project you're documenting, acts as replacement for
@@ -59,9 +59,9 @@
 # built documents.
 #
 # The short X.Y version.
-version = u'1.4.0'
+version = u'1.5.0'
 # The full version, including alpha/beta/rc tags.
-release = u'1.4.0'
+release = u'1.5.0'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiounittest-1.4.2/pyproject.toml 
new/aiounittest-1.5.0/pyproject.toml
--- old/aiounittest-1.4.2/pyproject.toml        1970-01-01 01:00:00.000000000 
+0100
+++ new/aiounittest-1.5.0/pyproject.toml        2025-03-07 08:26:29.000000000 
+0100
@@ -0,0 +1,8 @@
+# pyproject.toml
+[tool.pytest.ini_options]
+filterwarnings = [
+    "ignore::DeprecationWarning:.*test_asynctestcase.*:30",  # 
asyncio.get_event_loop
+    "ignore::DeprecationWarning:.*test_asynctestcase.*:39",  # 
@asyncio.coroutine
+    "ignore::DeprecationWarning:.*test_asynctestcase.*:45",  # 
@asyncio.coroutine
+    "ignore::DeprecationWarning:.*test_asynctestcase.*:60",  # 
@asyncio.coroutine
+]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiounittest-1.4.2/requirements.txt 
new/aiounittest-1.5.0/requirements.txt
--- old/aiounittest-1.4.2/requirements.txt      1970-01-01 01:00:00.000000000 
+0100
+++ new/aiounittest-1.5.0/requirements.txt      2025-03-07 08:26:29.000000000 
+0100
@@ -0,0 +1 @@
+wrapt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiounittest-1.4.2/setup.py 
new/aiounittest-1.5.0/setup.py
--- old/aiounittest-1.4.2/setup.py      2022-06-13 15:06:25.000000000 +0200
+++ new/aiounittest-1.5.0/setup.py      2025-03-07 08:26:29.000000000 +0100
@@ -8,7 +8,7 @@
 setup(
     name='aiounittest',
     packages=['aiounittest'],
-    version='1.4.2',
+    version='1.5.0',
     author='Krzysztof Warunek',
     author_email='krzysz...@warunek.net',
     description='Test asyncio code more easily.',
@@ -16,9 +16,8 @@
     keywords='asyncio, async, unittest, coroutine',
     url='https://github.com/kwarunek/aiounittest',
     long_description=open('README.rst').read(),
-    tests_require=['nose', 'coverage'],
     package_data={'aiounittest': ['py.typed']},
-    install_requires=['wrapt'],
+    install_requires=open('requirements.txt').read().splitlines(),
     license="MIT",
     classifiers=[
         'License :: OSI Approved :: MIT License',

Reply via email to