Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-APScheduler for 
openSUSE:Factory checked in at 2021-10-31 22:55:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-APScheduler (Old)
 and      /work/SRC/openSUSE:Factory/.python-APScheduler.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-APScheduler"

Sun Oct 31 22:55:39 2021 rev:15 rq:928312 version:3.8.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-APScheduler/python-APScheduler.changes    
2021-10-16 22:48:21.100727889 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-APScheduler.new.1890/python-APScheduler.changes
  2021-10-31 22:56:20.779730712 +0100
@@ -1,0 +2,6 @@
+Tue Oct 26 20:13:38 UTC 2021 - Dirk M??ller <[email protected]>
+
+- update to 3.8.1:
+  * Allowed the use of tzlocal v4.0+ in addition to v2.*
+
+-------------------------------------------------------------------

Old:
----
  APScheduler-3.8.0.tar.gz

New:
----
  APScheduler-3.8.1.tar.gz

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

Other differences:
------------------
++++++ python-APScheduler.spec ++++++
--- /var/tmp/diff_new_pack.GUx80i/_old  2021-10-31 22:56:21.203731038 +0100
+++ /var/tmp/diff_new_pack.GUx80i/_new  2021-10-31 22:56:21.207731041 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without python2
 Name:           python-APScheduler
-Version:        3.8.0
+Version:        3.8.1
 Release:        0
 Summary:        In-process task scheduler with Cron-like capabilities
 License:        MIT

++++++ APScheduler-3.8.0.tar.gz -> APScheduler-3.8.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/APScheduler-3.8.0/APScheduler.egg-info/PKG-INFO 
new/APScheduler-3.8.1/APScheduler.egg-info/PKG-INFO
--- old/APScheduler-3.8.0/APScheduler.egg-info/PKG-INFO 2021-09-24 
00:09:23.000000000 +0200
+++ new/APScheduler-3.8.1/APScheduler.egg-info/PKG-INFO 2021-10-24 
22:57:25.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: APScheduler
-Version: 3.8.0
+Version: 3.8.1
 Summary: In-process task scheduler with Cron-like capabilities
 Home-page: https://github.com/agronholm/apscheduler
 Author: Alex Gr??nholm
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/APScheduler-3.8.0/APScheduler.egg-info/requires.txt 
new/APScheduler-3.8.1/APScheduler.egg-info/requires.txt
--- old/APScheduler-3.8.0/APScheduler.egg-info/requires.txt     2021-09-24 
00:09:23.000000000 +0200
+++ new/APScheduler-3.8.1/APScheduler.egg-info/requires.txt     2021-10-24 
22:57:25.000000000 +0200
@@ -1,7 +1,7 @@
 setuptools>=0.7
 six>=1.4.0
 pytz
-tzlocal~=2.0
+tzlocal!=3.*,>=2.0
 
 [:python_version < "3.5"]
 funcsigs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/APScheduler-3.8.0/PKG-INFO 
new/APScheduler-3.8.1/PKG-INFO
--- old/APScheduler-3.8.0/PKG-INFO      2021-09-24 00:09:23.105539600 +0200
+++ new/APScheduler-3.8.1/PKG-INFO      2021-10-24 22:57:26.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: APScheduler
-Version: 3.8.0
+Version: 3.8.1
 Summary: In-process task scheduler with Cron-like capabilities
 Home-page: https://github.com/agronholm/apscheduler
 Author: Alex Gr??nholm
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/APScheduler-3.8.0/docs/versionhistory.rst 
new/APScheduler-3.8.1/docs/versionhistory.rst
--- old/APScheduler-3.8.0/docs/versionhistory.rst       2021-09-23 
23:47:16.000000000 +0200
+++ new/APScheduler-3.8.1/docs/versionhistory.rst       2021-10-24 
22:30:36.000000000 +0200
@@ -4,6 +4,12 @@
 To find out how to migrate your application from a previous version of
 APScheduler, see the :doc:`migration section <migration>`.
 
+3.8.1
+-----
+
+* Allowed the use of tzlocal v4.0+ in addition to v2.*
+
+
 3.8.0
 -----
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/APScheduler-3.8.0/setup.py 
new/APScheduler-3.8.1/setup.py
--- old/APScheduler-3.8.0/setup.py      2021-09-23 23:08:26.000000000 +0200
+++ new/APScheduler-3.8.1/setup.py      2021-10-24 22:17:02.000000000 +0200
@@ -41,7 +41,7 @@
         'setuptools >= 0.7',
         'six >= 1.4.0',
         'pytz',
-        'tzlocal ~= 2.0',
+        'tzlocal >= 2.0, != 3.*'
     ],
     extras_require={
         ':python_version == "2.7"': ['futures'],

Reply via email to