Skip to content

Commit

Permalink
Merge pull request #4 from hoechenberger/pkg
Browse files Browse the repository at this point in the history
Add MANIFEST.in and run tests on Py3.8
  • Loading branch information
alexmojaki committed Jan 19, 2020
2 parents 565bb3f + c618a25 commit 417cd15
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -6,7 +6,8 @@ python:
- 3.4
- 3.5
- 3.6
- 3.7-dev
- 3.7
- 3.8
script:
- python setup.py install
- pip install coveralls
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include README.md
include LICENSE
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# outdated

[![Build Status](https://travis-ci.org/alexmojaki/outdated.svg?branch=master)](https://travis-ci.org/alexmojaki/outdated) [![Coverage Status](https://coveralls.io/repos/github/alexmojaki/outdated/badge.svg?branch=master&uncache)](https://coveralls.io/github/alexmojaki/outdated?branch=master) [![Supports Python versions 2.7, 3.3, 3.4, 3.5, and 3.6](https://img.shields.io/pypi/pyversions/outdated.svg)](https://pypi.python.org/pypi/outdated)
[![Build Status](https://travis-ci.org/alexmojaki/outdated.svg?branch=master)](https://travis-ci.org/alexmojaki/outdated) [![Coverage Status](https://coveralls.io/repos/github/alexmojaki/outdated/badge.svg?branch=master&uncache)](https://coveralls.io/github/alexmojaki/outdated?branch=master) [![Supports Python versions 2.7, 3.3, 3.4, 3.5, 3.6, 3.7, and 3.8](https://img.shields.io/pypi/pyversions/outdated.svg)](https://pypi.python.org/pypi/outdated)

This is a mini-library which, given a package name and a version, checks if it's the latest version available on PyPI.

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -34,5 +34,7 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
zip_safe=False)
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,4 +1,4 @@
[tox]
envlist = py27,py33,py34,py35,py36,py37
envlist = py27,py33,py34,py35,py36,py37,py38
[testenv]
commands = python tests.py

0 comments on commit 417cd15

Please sign in to comment.