Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ operating with it on any Python application.
:target: http://docs.wandrell.com/dice-notation-python
:alt: Dice Notation Tools for Python latest documentation
.. image:: https://img.shields.io/badge/docs-develop-blue.svg
:target: http://docs.wandrell.com/development/dice-notation-python/
:target: http://docs.wandrell.com/development/dice-notation-python
:alt: Dice Notation Tools for Python development documentation

Features
Expand Down Expand Up @@ -124,8 +124,8 @@ License
The project has been released under the `MIT License`_.

.. _GitHub project page: https://github.com/Bernardo-MG/dice-notation-python
.. _latest docs: http://docs.wandrell.com/dice-notation-python/
.. _development docs: http://docs.wandrell.com/development/dice-notation-python/
.. _latest docs: http://docs.wandrell.com/dice-notation-python
.. _development docs: http://docs.wandrell.com/development/dice-notation-python
.. _Pypi package: https://pypi.python.org/pypi/dice-notation
.. _MIT License: http://www.opensource.org/licenses/mit-license.php
.. _project issues tracker: https://github.com/Bernardo-MG/dice-notation-python/issues
Expand Down
2 changes: 1 addition & 1 deletion dice_notation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
:license: MIT, see LICENSE for more details.
"""

__version__ = '1.0.1'
__version__ = '1.0.2'
__license__ = 'MIT'
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@

# Theme options.
html_theme_options = {
'keywords': '',
'keywords': 'dice, dice notation, parser, Python, RPG',
'author_name': ','.join(authors),
'author_url': 'https://github.com/Bernardo-MG',
'twitter_id': '@Wandrell_BMG',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def run_tests(self):
keywords=['dice', 'dice notation', 'rpg', 'parser'],
platforms='any',
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
Expand Down
4 changes: 2 additions & 2 deletions tests/parser/test_dice_parser_invalid.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def setUp(self):
"""
self.parser = DiceParser()

def test_noNumbers(self):
def test_onlySeparator(self):
"""
Tests that the dice separator can't be parsed.
"""
Expand Down Expand Up @@ -71,7 +71,7 @@ def test_negativeQuantity(self):

def test_negativeSides(self):
"""
Tests that a expression with an incomplete dice can't be parsed.
Tests that a dice with a negative side can't be parsed.
"""
result = self.parser.parse("1d-6")

Expand Down