summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Compare next_date to start_date, not previous_fire_timev3.5.1Alex Grönholm2018-01-161-3/+3
|
* Removed one leftover parameter annotationAlex Grönholm2018-01-161-2/+1
|
* Fixed DST behavior for CronTriggerAlex Grönholm2018-01-162-4/+43
| | | | Fixes #120.
* Added support for UTC offsets in datetime parsingAlex Grönholm2018-01-163-7/+28
| | | | Fixes #271.
* Fixed erroneous changelog entry about month names in ``CronTrigger``Alex Grönholm2018-01-161-1/+1
|
* Prevent deadlocks in scheduler shutdown (#268)Carey Metcalfe2018-01-061-3/+4
| | | | | | | | | By splitting up the executor lock and jobstore lock, this allows jobs that are shutting down to query their state from the database (requiring `self._jobstore_lock`) without causing a deadlock. Since setting `self.state` above prevents new jobs from being added to the executors as they shut down, breaking up these locks won't allow new jobs to run while the scheduler is shutting down.
* Fixed CronTrigger with jitter producing fire times beyond end_dateAlex Grönholm2018-01-033-3/+23
| | | | Fixes #269.
* Fixed OverflowError on Windows when wait_seconds was too largeAlex Grönholm2018-01-033-4/+13
| | | | Fixes #263.
* Fixed DeprecationWarning for get_jobs()Alex Grönholm2018-01-031-1/+1
| | | | Fixes #266.
* Bumped up the fallback versionv3.5.0Alex Grönholm2017-12-231-1/+1
|
* Fixed Python 2.7 compatibility in trigger testsAlex Grönholm2017-12-221-2/+2
|
* Added jitter support to combining triggersAlex Grönholm2017-12-222-12/+46
|
* Fixed ineffective pickle tests for And/OrTriggerAlex Grönholm2017-12-221-5/+5
|
* Renamed the base class for the combining triggersAlex Grönholm2017-12-211-3/+3
|
* Added combining triggers (AndTrigger + OrTrigger)Alex Grönholm2017-12-197-3/+205
| | | | Fixes #119.
* Added a troubleshooting sectionAlex Grönholm2017-12-191-0/+16
|
* Allow multiple spaces in crontab format (#260)Luc Tielen2017-12-132-2/+5
|
* Cancel all pending futures on AsyncIOExecutor shutdownAlex Grönholm2017-12-133-0/+29
| | | | Fixes #233.
* Fixed passing "wait" as keyword argument to AsyncIOScheduler.shutdown()Alex Grönholm2017-12-132-3/+6
|
* Allow spaces around commas in CronTrigger fieldsAlex Grönholm2017-12-123-6/+10
| | | | Fixes #229.
* Don't display empty jitter in the repr() of cron/interval triggersAlex Grönholm2017-12-123-26/+34
|
* Added support for creating cron triggers from crontab expressionsAlex Grönholm2017-12-124-0/+37
| | | | Fixes #240.
* Added support for named monthsAlex Grönholm2017-12-126-5/+46
|
* Added better validation for cron trigger expressionsAlex Grönholm2017-12-114-4/+52
| | | | Fixes #189.
* Added version history entry for PR #258Alex Grönholm2017-12-101-0/+2
|
* Implement random jitter option for CronTrigger and IntervalTrigger (#258)Gilbert Gilb's2017-12-106-34/+249
|
* Increased timeout to avoid test failure on pypy3Alex Grönholm2017-12-091-1/+1
|
* Removed pytest-catchlog from test requirementsAlex Grönholm2017-12-091-1/+0
| | | | It has been merged into pytest core.
* Fixed traceback or its frames not being available for logger.exception()Alex Grönholm2017-12-092-8/+8
|
* Fixed memory leak when scheduled jobs raise exceptionsAlex Grönholm2017-12-093-1/+33
| | | | Fixes #235.
* Fixed the maximum value for CronTrigger's "year" fieldAlex Grönholm2017-11-261-1/+1
| | | | datetime.date() does not take years higher than 9999.
* Switched to using .readthedocs.yml for RTD configurationAlex Grönholm2017-11-072-7/+13
|
* Fixed flake8's "Don't use bare except:" errorsAlex Grönholm2017-11-0711-14/+14
|
* Don't require sudo where it's not neededAlex Grönholm2017-11-071-2/+3
|
* Added the engine_options option to SQLAlchemyJobStoreAlex Grönholm2017-11-073-8/+18
| | | | Fixes #228.
* Fixed syntax highlighting and indentation issuesAlex Grönholm2017-11-071-15/+10
|
* Added Gitter webhookv3.4.0Alex Grönholm2017-10-211-0/+3
|
* Mentioned the Gitter room in READMEAlex Grönholm2017-10-211-15/+19
|
* Formatted list items in changelog to be consistent with previous onesAlex Grönholm2017-10-211-0/+2
|
* Moved the PyPy test jobs to the topAlex Grönholm2017-10-211-8/+8
| | | | This is hoping they will get started first, as they are the slowest.
* Made the deploy stage conditionalAlex Grönholm2017-10-211-1/+6
|
* Test against PyQT5 on Python 3.6 tooAlex Grönholm2017-10-211-1/+1
|
* Added docker-compose configuration to facilitate testingAlex Grönholm2017-10-213-19/+41
|
* Updated the docs to conform to the 99 column limitAlex Grönholm2017-10-215-173/+209
|
* Added a workaround for import troubles with PyInstaller et alAlex Grönholm2017-10-212-2/+10
|
* Added documentation and changelog entry for the "tableschema" argumentAlex Grönholm2017-10-212-0/+4
|
* Moved coverage configuration to setup.cfgAlex Grönholm2017-10-212-5/+6
|
* Fixed minor error in Travis deployment configurationAlex Grönholm2017-10-101-1/+1
|
* Fixed PyPy3 test failureAlex Grönholm2017-10-101-0/+3
|
* Adding optional schema argument to SQLAlchemy (#224)Meir Tseitlin2017-10-101-2/+3
|