summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Require a new enough version of setuptools for entry points to work properlyAlex Grönholm2015-03-092-1/+3
|
* Fixed str(job) or unicode(job) raising an exception for pending jobs (fixes #67)Alex Grönholm2015-03-093-15/+28
|
* Fixed wrong job sort order in some job stores and a related exception in the ↵Alex Grönholm2015-03-097-8/+34
| | | | redis store (fixes #86)
* Added an explicit note about the effects of misfire_grace_timeAlex Grönholm2015-03-072-2/+14
|
* Fixed wrong lock being used when removing executorsAlex Grönholm2015-03-071-1/+1
|
* Fixed ValueError when the target callable has a default keyword argument ↵Alex Grönholm2015-01-063-2/+15
| | | | that wasn't overridden
* Merged in jarondl/apscheduler/add-license-to-manifest (pull request #15) Alex Grönholm2014-11-171-0/+1
|\ | | | | Add license to MANIFEST.in
| * Add license to MANIFEST.inYaron de Leeuw2014-11-171-0/+1
|/ | | | | Adding LICENSE.txt to MANIFEST.in. This will distribute the license with the tar file, as required by the license itself.
* Updated version historyAlex Grönholm2014-10-201-0/+16
|
* Cleanup to fix flake8 testsAlex Grönholm2014-10-201-1/+2
|
* Don't try to test rethinkdb on Python 3Alex Grönholm2014-10-201-21/+30
|
* Fixed _run_job_error() being called with the wrong number of arguments in ↵Alex Grönholm2014-10-205-24/+48
| | | | most executors
* Fixed start date getting set too far in the future in IntervalTrigger (fixes ↵Alex Grönholm2014-10-202-1/+6
| | | | #70)
* Raise exception when attempting to serialize a job that doesn't have ↵Alex Grönholm2014-10-191-0/+6
| | | | func_ref filled in
* Modified get_callable_name() to work with a wider variety of callablesAlex Grönholm2014-10-102-20/+28
|
* Modified tox configuration to pass through arbitrary arguments to py.testAlex Grönholm2014-10-091-1/+1
|
* Improved the test for ref_to_obj()Alex Grönholm2014-09-091-1/+2
|
* Shortened the ID column of the apscheduler_jobs table in the SQLAlchemy job ↵Alex Grönholm2014-08-121-2/+2
| | | | store to accommodate MySQL limitations (again).
* Fixed BlockingScheduler, BackgroundScheduler and GeventScheduler incorrectly ↵Brendan McCollam2014-07-152-1/+21
| | | | waiting MAX_WAIT_TIME when wait_seconds is 0
* Updated the changelogAlex Grönholm2014-07-081-0/+6
|
* Bumped up version to indicate development statusAlex Grönholm2014-07-081-3/+3
|
* Merged in linuxdynasty/apscheduler (pull request #8) Alex Grönholm2014-07-084-3/+236
|\ | | | | Rethinkdb jobstore
| * Merged agronholm/apscheduler into masterAllen Sanabria2014-07-075-7/+32
| |\ | |/ |/|
* | Bumped version to 3.0.0rc1v3.0.0rc1Alex Grönholm2014-07-071-2/+2
| |
* | Clarified the requirements for get_due_jobs() and get_all_jobs() in BaseJobStoreAlex Grönholm2014-07-071-2/+4
| |
* | Use Float instead of BigInteger in SQLAlchemyJobStore to maintain proper job ↵Alex Grönholm2014-07-072-3/+11
| | | | | | | | order in cases where next run times differ by less than a second (fixes #63)
* | Added docstrings to datetime_to_utc_timestamp() and utc_timestamp_to_datetime()Alex Grönholm2014-07-071-0/+14
| |
* | Decreased maximum length of the "id" column in SQLAlchemyJobStore due to ↵Alex Grönholm2014-07-021-1/+2
| | | | | | | | MySQL/InnoDB limitations
| * All test for python 2.7 are now passing.Allen Sanabria2014-06-301-2/+6
| |
| * Merged agronholm/apscheduler into masterAllen Sanabria2014-06-304-25/+26
| |\ | |/ |/|
* | Fixed falsely passing tests and the bugs they uncovered in BaseSchedulerAlex Grönholm2014-07-013-24/+25
| |
* | Added a minimum version requirement for sixAlex Grönholm2014-06-301-1/+1
| |
| * Added rethinkdb to setup.pyAllen Sanabria2014-06-301-0/+1
| |
| * All tests are passing on python 2.7 except for the 3 same tests.Allen Sanabria2014-06-302-30/+48
| | | | | | | | This tests fails each time next_run_time in None: test_update_job_clear_next_runtime
| * Working on testAllen Sanabria2014-06-302-28/+42
| |
| * moved rethinkdb.py to rethink_db.py because of conflicts of rethinkdb driverAllen Sanabria2014-06-301-6/+8
| |
| * Fixed next_run_time parserAllen Sanabria2014-06-301-2/+2
| |
| * All test completedAllen Sanabria2014-06-302-8/+7
| |
| * Added rethinkdb to test suiteAllen Sanabria2014-06-302-1/+14
| |
| * Initial commit for new rethinkdb jobstore for apscheduler 3.0Allen Sanabria2014-06-302-119/+182
| |
| * Merged agronholm/apscheduler into masterAllen Sanabria2014-06-2996-2930/+5731
| |\ | |/ |/|
* | Bumped version to 3.0.0b2v3.0.0b2Alex Grönholm2014-06-281-2/+2
| |
* | Bail out if the name of the local timezone cannot be determinedAlex Grönholm2014-06-282-0/+12
| |
* | Fixed EVENT_JOB_MISSED event not being created correctly in run_job()Alex Grönholm2014-06-272-9/+27
| |
* | Handle naive datetimes passed as next_run_timeBrendan McCollam2014-06-278-24/+26
| |
* | Added PyPy3 as a tox test environmentAlex Grönholm2014-06-271-34/+26
| |
* | Prevent unnecessary installation of "futures" when installing the wheel on ↵Alex Grönholm2014-06-271-0/+7
| | | | | | | | Python 3
* | Use [bdist_wheel] instead of [wheel] as the wheel options section in ↵Alex Grönholm2014-06-181-1/+1
| | | | | | | | setup.cfg (the latter is now discouraged)
* | Fixed wrong number of arguments to _run_job_error()Alex Grönholm2014-06-181-1/+1
| |
* | Bumped version to 3.0.0b1v3.0.0b1Alex Grönholm2014-06-181-4/+4
| |