Hello community,

here is the log from the commit of package python-APScheduler for 
openSUSE:Factory checked in at 2018-10-18 15:39:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-APScheduler (Old)
 and      /work/SRC/openSUSE:Factory/.python-APScheduler.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-APScheduler"

Thu Oct 18 15:39:14 2018 rev:4 rq:642797 version:3.5.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-APScheduler/python-APScheduler.changes    
2017-11-30 12:45:13.562279437 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-APScheduler.new/python-APScheduler.changes   
    2018-10-18 15:39:25.510086392 +0200
@@ -1,0 +2,72 @@
+Thu Oct 18 08:02:10 UTC 2018 - Tomáš Chvátal <[email protected]>
+
+- Use license from the archive
+- Enable tests
+- Add all the recommended packages as suggests (databases)
+
+-------------------------------------------------------------------
+Wed Oct 17 14:35:19 UTC 2018 - [email protected]
+
+- update to 3.5.1
+  - (tag: v3.5.1) Compare next_date to start_date, not previous_fire_time
+  - Removed one leftover parameter annotation
+  - Fixed DST behavior for CronTrigger
+  - Added support for UTC offsets in datetime parsing
+  - Fixed erroneous changelog entry about month names in ``CronTrigger``
+  - Prevent deadlocks in scheduler shutdown (#268)
+  - Fixed CronTrigger with jitter producing fire times beyond end_date
+  - Fixed OverflowError on Windows when wait_seconds was too large
+  - Fixed DeprecationWarning for get_jobs()
+  - (tag: v3.5.0) Bumped up the fallback version
+  - Fixed Python 2.7 compatibility in trigger tests
+  - Added jitter support to combining triggers
+  - Fixed ineffective pickle tests for And/OrTrigger
+  - Renamed the base class for the combining triggers
+  - Added combining triggers (AndTrigger + OrTrigger)
+  - Added a troubleshooting section
+  - Allow multiple spaces in crontab format (#260)
+  - Cancel all pending futures on AsyncIOExecutor shutdown
+  - Fixed passing "wait" as keyword argument to AsyncIOScheduler.shutdown()
+  - Allow spaces around commas in CronTrigger fields
+  - Don't display empty jitter in the repr() of cron/interval triggers
+  - Added support for creating cron triggers from crontab expressions
+  - Added support for named months
+  - Added better validation for cron trigger expressions
+  - Added version history entry for PR #258
+  - Implement random jitter option for CronTrigger and IntervalTrigger (#258)
+  - Increased timeout to avoid test failure on pypy3
+  - Removed pytest-catchlog from test requirements
+  - Fixed traceback or its frames not being available for logger.exception()
+  - Fixed memory leak when scheduled jobs raise exceptions
+  - Fixed the maximum value for CronTrigger's "year" field
+  - Switched to using .readthedocs.yml for RTD configuration
+  - Fixed flake8's "Don't use bare except:" errors
+  - Don't require sudo where it's not needed
+  - Added the engine_options option to SQLAlchemyJobStore
+  - Fixed syntax highlighting and indentation issues
+  - (tag: v3.4.0) Added Gitter webhook
+  - Mentioned the Gitter room in README
+  - Formatted list items in changelog to be consistent with previous ones
+  - Moved the PyPy test jobs to the top
+  - Made the deploy stage conditional
+  - Test against PyQT5 on Python 3.6 too
+  - Added docker-compose configuration to facilitate testing
+  - Updated the docs to conform to the 99 column limit
+  - Added a workaround for import troubles with PyInstaller et al
+  - Added documentation and changelog entry for the "tableschema" argument
+  - Moved coverage configuration to setup.cfg
+  - Fixed minor error in Travis deployment configuration
+  - Fixed PyPy3 test failure
+  - Adding optional schema argument to SQLAlchemy (#224)
+  - Fixed asyncio tests on Python 3.4
+  - Updated Travis/tox configuration and the supported Python interpreters
+  - Added missing single quote in documentation
+  - Use getfixturevalue() instead of the deprecated getfuncargvalue()
+  - Renamed ZookeeperJobStore to ZooKeeperJobStore in setup.py  (#199)
+  - Use tuple in catching exceptions (#196)
+  - Fixed case where both Qt4 and Qt5 are installed, but Qt4 is already 
imported (#195)
+  - Fixed description in removed event (#188)
+  - Updated version history
+
+
+-------------------------------------------------------------------

Old:
----
  APScheduler-3.3.1.tar.gz
  LICENSE.txt

New:
----
  APScheduler-3.5.1.tar.gz

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

Other differences:
------------------
++++++ python-APScheduler.spec ++++++
--- /var/tmp/diff_new_pack.ZkBE9x/_old  2018-10-18 15:39:27.802083785 +0200
+++ /var/tmp/diff_new_pack.ZkBE9x/_new  2018-10-18 15:39:27.806083780 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-APScheduler
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,36 +12,53 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-APScheduler
-Version:        3.3.1
+Version:        3.5.1
 Release:        0
-Url:            http://pypi.python.org/pypi/APScheduler/
 Summary:        In-process task scheduler with Cron-like capabilities
 License:        MIT
 Group:          Development/Languages/Python
+URL:            http://pypi.python.org/pypi/APScheduler/
 Source:         
https://files.pythonhosted.org/packages/source/A/APScheduler/APScheduler-%{version}.tar.gz
-Source1:        LICENSE.txt
-BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module SQLAlchemy >= 0.8}
+BuildRequires:  %{python_module Twisted}
+BuildRequires:  %{python_module gevent}
+BuildRequires:  %{python_module pytest-tornado}
+BuildRequires:  %{python_module pytest}
+BuildRequires:  %{python_module pytz}
+BuildRequires:  %{python_module setuptools >= 0.7}
 BuildRequires:  %{python_module setuptools_scm}
-BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module six >= 1.4.0}
+BuildRequires:  %{python_module tornado}
+BuildRequires:  %{python_module tzlocal >= 1.2}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-%ifpython2
-Requires:       python2-funcsigs
-Requires:       python2-futures
-%endif
+BuildRequires:  python2-funcsigs
+BuildRequires:  python2-futures
+BuildRequires:  python2-mock
+BuildRequires:  python2-trollius
+BuildRequires:  python3-pytest-asyncio
 Requires:       python-pytz
 Requires:       python-six >= 1.4.0
 Requires:       python-tzlocal >= 1.2
-
+Recommends:     python-SQLAlchemy >= 0.8
+Recommends:     python-gevent
+Recommends:     python-Twisted
+Suggests:       python-kazoo
+Suggests:       python-pymongo >= 2.8
+Suggests:       python-redis
+Suggests:       python-tornado >= 4.3
 BuildArch:      noarch
-
+%ifpython2
+Requires:       python2-funcsigs
+Requires:       python2-futures
+Requires:       python2-trollius
+%endif
 %python_subpackages
 
 %description
@@ -67,18 +84,22 @@
 
 %prep
 %setup -q -n APScheduler-%{version}
+# we don't want the tweaked pytest config options
+rm setup.cfg
 
 %build
-install -m 644 %{SOURCE1} %{_builddir}/APScheduler-%{version}
 %python_build
 
 %install
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
+%check
+%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} 
py.test-%{$python_bin_suffix} -v
+
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc LICENSE.txt README.rst
+%license LICENSE.txt
+%doc README.rst
 %doc examples/
 %{python_sitelib}/*
 

++++++ APScheduler-3.3.1.tar.gz -> APScheduler-3.5.1.tar.gz ++++++
++++ 3111 lines of diff (skipped)


Reply via email to