Skip to content

Commit

Permalink
Merge pull request #10 from mkouhei/devel
Browse files Browse the repository at this point in the history
release 0.1.5
  • Loading branch information
mkouhei committed Aug 25, 2015
2 parents b3461ef + 31c8440 commit 62b5a31
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
@@ -1,11 +1,13 @@
language: python
python: 3.4
sudo: true
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
install:
- sudo apt-get update
- sudo apt-get install -y gnupg dput lintian
- pip install tox coveralls
script:
Expand Down
8 changes: 8 additions & 0 deletions docs/HISTORY.rst
@@ -1,6 +1,14 @@
History
-------

0.1.5 (2015-08-25)
^^^^^^^^^^^^^^^^^^

* Changes Sphinx theme to sphinx_rtd_theme.
* Merge pull request #9 from mkouhei/travis-packages
* Adds execute apt-get update.
* Enabled sudo explicitly.

0.1.4 (2014-12-21)
^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -102,7 +102,7 @@

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'default'
html_theme = 'sphinx_rtd_theme'

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Expand Up @@ -21,7 +21,7 @@ def run_tests(self):


classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
Expand All @@ -46,8 +46,8 @@ def run_tests(self):
requires = ['setuptools',
'python_gnupg',
'python_debian',
'chardet',
'sphinx']
'pexpect',
'chardet']

with open('requirements.txt', 'w') as _file:
_file.write('\n'.join(requires))
Expand All @@ -64,7 +64,7 @@ def check_debian_packages():
check_debian_packages()

setup(name='pydebsign',
version='0.1.4',
version='0.1.5',
description='yet another library of debsign',
long_description=long_description,
author='Kouhei Maeda',
Expand Down
3 changes: 3 additions & 0 deletions tox.ini
Expand Up @@ -47,6 +47,9 @@ deps=
basepython = pypy

[testenv:docs]
deps=
Sphinx
sphinx_rtd_theme
commands =python setup.py build_sphinx

[testenv:pychecker]
Expand Down

0 comments on commit 62b5a31

Please sign in to comment.