Skip to content

Commit

Permalink
v2.3.5 add coveralls, pin pytest, drop old classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
calebj committed Jul 31, 2018
1 parent 5a907ec commit a7adc2c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
service_name: travis-ci
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ matrix:
- python: pypy3
env: TOXENV=pypy3
install:
- pip install tox
- pip install tox coveralls
script:
- tox
after_success:
- coveralls
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ dice
:target: https://travis-ci.org/borntyping/python-dice
:alt: Travis-CI build status

.. image:: https://coveralls.io/repos/github/borntyping/python-dice/badge.svg
:target: https://coveralls.io/github/borntyping/python-dice
:alt: Coveralls coverage score


A library and command line tool for parsing and evaluating dice notation.

Usage
Expand Down
2 changes: 1 addition & 1 deletion dice/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'DiceFatalException', 'DiceExtreme']
__author__ = ("Sam Clements <sam@borntyping.co.uk>, "
"Caleb Johnson <me@calebj.io>")
__version__ = '2.3.4'
__version__ = '2.3.5'


def roll(string, **kwargs):
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name = 'dice',
version = '2.3.4',
version = '2.3.5',

author = "Sam Clements",
author_email = "sam@borntyping.co.uk",
Expand Down Expand Up @@ -37,11 +37,8 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ skip_missing_interpreters=true
[testenv]
commands=py.test dice
deps=
pytest
pytest<3.7.0
pytest-pep8
pytest-cov
pytest-flakes
Expand Down

0 comments on commit a7adc2c

Please sign in to comment.