Skip to content

Commit

Permalink
Fix documentation for build
Browse files Browse the repository at this point in the history
  • Loading branch information
blakev committed Feb 1, 2019
1 parent dadbf25 commit ebecdb4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

# General information about the project.
project = 'gevent-tasks'
copyright = '2017, Blake VandeMerwe'
copyright = '2019, Blake VandeMerwe'
author = 'Blake VandeMerwe'

# The version info for the project you're documenting, acts as replacement for
Expand Down
2 changes: 2 additions & 0 deletions gevent_tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@
# alias
cron = CronTab

__author__ = 'Blake VandeMerwe'
__version__ = '0.2.0'
__all__ = ["Task", "TaskManager", "cron"]
4 changes: 4 additions & 0 deletions gevent_tasks/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@


class GeventTasksError(Exception):

"""Base exception class."""


class TaskKeyError(GeventTasksError, KeyError):

"""Thrown inside task execution when namespacing has an issue."""


class TaskRuntimeError(GeventTasksError, RuntimeError):

"""Thrown inside task execution when something goes wrong."""


class ForeverRuntimeError(GeventTasksError, RuntimeError):

"""Thrown from :func:`gevent_tasks.manager.TaskManager.forever`."""
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ classifiers = [
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python 3'
]

[tool.poetry.dependencies]
Expand Down

0 comments on commit ebecdb4

Please sign in to comment.