14
0

Accepting request 642664 from home:sjamgade:branches:devel:languages:python

- 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()

OBS-URL: https://build.opensuse.org/request/show/642664
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-APScheduler?expand=0&rev=17
This commit is contained in:
Tomáš Chvátal
2018-10-18 07:34:56 +00:00
committed by Git OBS Bridge
parent 503bebbc62
commit c918d57a2a
4 changed files with 70 additions and 5 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f68874dff1bdffcc6ce3adb7840c1e4d162c609a3e3f831351df30b75732767b
size 84198

3
APScheduler-3.5.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:952c8f46a11f32b9d5bfbe3e347dac2cdf0680d8b4799590dc9c3a9865b73b65
size 93129

View File

@@ -1,3 +1,68 @@
-------------------------------------------------------------------
Wed Oct 17 14:35:19 UTC 2018 - sjamgade@suse.com
- 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
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 28 16:40:20 UTC 2017 - sean.marlow@suse.com Tue Nov 28 16:40:20 UTC 2017 - sean.marlow@suse.com

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-APScheduler # 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 # 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
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-APScheduler Name: python-APScheduler
Version: 3.3.1 Version: 3.5.1
Release: 0 Release: 0
Url: http://pypi.python.org/pypi/APScheduler/ Url: http://pypi.python.org/pypi/APScheduler/
Summary: In-process task scheduler with Cron-like capabilities Summary: In-process task scheduler with Cron-like capabilities