Skip to content

Commit

Permalink
Updates copyright date, adds UnicodeMixin to the docs, and bumps sphi…
Browse files Browse the repository at this point in the history
…nx version required for docs
  • Loading branch information
RobRuana committed Jun 23, 2016
1 parent 9bf2801 commit 05149cc
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015, by the Pockets team, see AUTHORS.
Copyright (c) 2016 the Pockets team, see AUTHORS.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
5 changes: 3 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
# ones.
extensions = ['sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinxcontrib.napoleon']
'sphinx.ext.viewcode',
'sphinx.ext.napoleon']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand All @@ -58,7 +59,7 @@

# General information about the project.
project = u'pockets'
copyright = u'2015, Rob Ruana'
copyright = u'2016, Rob Ruana'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
5 changes: 5 additions & 0 deletions docs/source/pockets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,8 @@ pockets.string module
:members:
:undoc-members:
:show-inheritance:

.. autoclass:: pockets.string.UnicodeMixin
:members:
:undoc-members:
:show-inheritance:
2 changes: 1 addition & 1 deletion pockets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""*Let me check my pockets...*
Expand Down
2 changes: 1 addition & 1 deletion pockets/collections.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""A pocket full of useful collection functions!"""
Expand Down
2 changes: 1 addition & 1 deletion pockets/inspect.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""A pocket full of useful reflection functions!"""
Expand Down
2 changes: 1 addition & 1 deletion pockets/iterators.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""A pocket full of useful iterators!"""
Expand Down
2 changes: 1 addition & 1 deletion pockets/string.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""A pocket full of useful string manipulation functions!"""
Expand Down
3 changes: 1 addition & 2 deletions requirements_docs.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
six>=1.5.2
Sphinx==1.2.3
sphinxcontrib-napoleon>=0.3.1
Sphinx>=1.4
3 changes: 1 addition & 2 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
six>=1.5.2
Sphinx==1.2.3
sphinxcontrib-napoleon>=0.3.1
Sphinx>=1.4
coverage>=3.7.1
flake8>=2.3.0
pytest>=2.6.4
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""A collection of helpful Python tools!"""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_collections.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""Tests for :mod:`pockets.collections` module."""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_inspect.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""Tests for :mod:`pockets.inspect` module."""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_iterators.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""Tests for :mod:`pockets.iterators` module."""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_string.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2015, by the Pockets team, see AUTHORS.
# Copyright (c) 2016 the Pockets team, see AUTHORS.
# Licensed under the BSD License, see LICENSE for details.

"""Tests for :mod:`pockets.string` module."""
Expand Down

0 comments on commit 05149cc

Please sign in to comment.