From 9b8dada012a58acbfb3750e125bd43b77aa65ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Sun, 27 Mar 2016 17:43:42 +0300 Subject: Migrated code to Github --- README.rst | 5 ++--- docs/contributing.rst | 6 +++--- docs/modules/jobstores/memory.rst | 2 +- docs/modules/jobstores/mongodb.rst | 2 +- docs/modules/jobstores/redis.rst | 2 +- docs/modules/jobstores/sqlalchemy.rst | 2 +- docs/modules/schedulers/asyncio.rst | 2 +- docs/modules/schedulers/background.rst | 2 +- docs/modules/schedulers/blocking.rst | 2 +- docs/modules/schedulers/gevent.rst | 2 +- docs/modules/schedulers/qt.rst | 2 +- docs/modules/schedulers/tornado.rst | 2 +- docs/modules/schedulers/twisted.rst | 2 +- docs/userguide.rst | 2 +- setup.py | 2 +- 15 files changed, 18 insertions(+), 19 deletions(-) diff --git a/README.rst b/README.rst index 803175a..269472c 100644 --- a/README.rst +++ b/README.rst @@ -44,14 +44,13 @@ Documentation can be found `here `_. +The source can be browsed at `Github `_. Reporting bugs -------------- -A `bug tracker `_ -is provided by bitbucket.org. +A `bug tracker `_ is provided by Github. Getting help diff --git a/docs/contributing.rst b/docs/contributing.rst index c983ab8..41cae5f 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -9,14 +9,14 @@ changes accepted. This is to maintain the high quality of the code base. Contribution Process ==================== -1. Fork the project on BitBucket +1. Fork the project on Github 2. Clone the fork to your local machine 3. Make the changes to the project 4. Run the test suite with tox (if you changed any code) 5. Repeat steps 3-4 until the test suite passes 6. Commit if you haven't already -7. Push the changes to your BitBucket fork -8. Make a pull request on BitBucket +7. Push the changes to your Github fork +8. Make a pull request on Github There is no need to update the change log -- this will be done prior to the next release at the latest. Should the test suite fail even before your changes (which should be rare), make sure you're at least not adding to the diff --git a/docs/modules/jobstores/memory.rst b/docs/modules/jobstores/memory.rst index 31913e3..c91935c 100644 --- a/docs/modules/jobstores/memory.rst +++ b/docs/modules/jobstores/memory.rst @@ -23,7 +23,7 @@ unreachable globally and use job non-serializable job arguments. - none * - Example - ``examples/schedulers/blocking.py`` - (`view online `_). + (`view online `_). .. caution:: Unlike with other job stores, changes made to any mutable job arguments persist across job invocations. You can use this to your advantage, however. diff --git a/docs/modules/jobstores/mongodb.rst b/docs/modules/jobstores/mongodb.rst index 4454dba..ffc1375 100644 --- a/docs/modules/jobstores/mongodb.rst +++ b/docs/modules/jobstores/mongodb.rst @@ -22,4 +22,4 @@ MongoDBJobStore stores jobs in a `MongoDB `_ database. - `pymongo `_ * - Example - ``examples/jobstores/mongodb.py`` - (`view online `_). + (`view online `_). diff --git a/docs/modules/jobstores/redis.rst b/docs/modules/jobstores/redis.rst index 55284ee..e016c44 100644 --- a/docs/modules/jobstores/redis.rst +++ b/docs/modules/jobstores/redis.rst @@ -22,4 +22,4 @@ RedisJobStore stores jobs in a `redis `_ database. - `redis `_ * - Example - ``examples/jobstores/redis_.py`` - (`view online `_). + (`view online `_). diff --git a/docs/modules/jobstores/sqlalchemy.rst b/docs/modules/jobstores/sqlalchemy.rst index 937bab3..bde80c1 100644 --- a/docs/modules/jobstores/sqlalchemy.rst +++ b/docs/modules/jobstores/sqlalchemy.rst @@ -25,4 +25,4 @@ connection URL. - `SQLAlchemy `_ (+ the backend specific driver package) * - Example - ``examples/jobstores/sqlalchemy_.py`` - (`view online `_). + (`view online `_). diff --git a/docs/modules/schedulers/asyncio.rst b/docs/modules/schedulers/asyncio.rst index e22d786..db8a07d 100644 --- a/docs/modules/schedulers/asyncio.rst +++ b/docs/modules/schedulers/asyncio.rst @@ -29,4 +29,4 @@ If you have an application that runs on an AsyncIO event loop, you will want to * Python <= 3.2: `trollius `_ * - Example - ``examples/schedulers/asyncio_.py`` - (`view online `_). + (`view online `_). diff --git a/docs/modules/schedulers/background.rst b/docs/modules/schedulers/background.rst index f9b0158..b12cd20 100644 --- a/docs/modules/schedulers/background.rst +++ b/docs/modules/schedulers/background.rst @@ -26,4 +26,4 @@ after the call returns. - none * - Example - ``examples/schedulers/background.py`` - (`view online `_). + (`view online `_). diff --git a/docs/modules/schedulers/blocking.rst b/docs/modules/schedulers/blocking.rst index 1cab028..d923471 100644 --- a/docs/modules/schedulers/blocking.rst +++ b/docs/modules/schedulers/blocking.rst @@ -27,4 +27,4 @@ BlockingScheduler can be useful if you want to use APScheduler as a standalone s - none * - Example - ``examples/schedulers/blocking.py`` - (`view online `_). + (`view online `_). diff --git a/docs/modules/schedulers/gevent.rst b/docs/modules/schedulers/gevent.rst index 2260ced..56f63a5 100644 --- a/docs/modules/schedulers/gevent.rst +++ b/docs/modules/schedulers/gevent.rst @@ -25,7 +25,7 @@ GeventScheduler uses gevent natively, so it doesn't require monkey patching. By - `gevent `_ * - Example - ``examples/schedulers/gevent_.py`` - (`view online `_). + (`view online `_). .. tip:: Until there is an official Python 3 compatible release of gevent, you can use an `unofficial port `_. diff --git a/docs/modules/schedulers/qt.rst b/docs/modules/schedulers/qt.rst index 7a667b3..68b788c 100644 --- a/docs/modules/schedulers/qt.rst +++ b/docs/modules/schedulers/qt.rst @@ -25,4 +25,4 @@ QtScheduler lets you integrate APScheduler with your `PySide `_). + (`view online `_). diff --git a/docs/modules/schedulers/tornado.rst b/docs/modules/schedulers/tornado.rst index 45186e1..90c5a54 100644 --- a/docs/modules/schedulers/tornado.rst +++ b/docs/modules/schedulers/tornado.rst @@ -24,4 +24,4 @@ TornadoScheduler was meant to be used in `Tornado `_ * - Example - ``examples/schedulers/tornado_.py`` - (`view online `_) + (`view online `_) diff --git a/docs/modules/schedulers/twisted.rst b/docs/modules/schedulers/twisted.rst index d254a2e..21c0b3c 100644 --- a/docs/modules/schedulers/twisted.rst +++ b/docs/modules/schedulers/twisted.rst @@ -25,4 +25,4 @@ By default it uses the reactor's thread pool to execute jobs. - `twisted `_ * - Example - ``examples/schedulers/twisted_.py`` - (`view online `_). + (`view online `_). diff --git a/docs/userguide.rst b/docs/userguide.rst index 76b63b2..706fdf4 100644 --- a/docs/userguide.rst +++ b/docs/userguide.rst @@ -24,7 +24,7 @@ Code examples The source distribution contains the :file:`examples` directory where you can find many working examples for using APScheduler in different ways. The examples can also be -`browsed online `_. +`browsed online `_. Basic concepts diff --git a/setup.py b/setup.py index 9ea7eec..2dd8262 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( long_description=readme, author='Alex Gronholm', author_email='apscheduler@nextday.fi', - url='http://pypi.python.org/pypi/APScheduler/', + url='https://github.com/agronholm/apscheduler', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', -- cgit v1.2.1