Skip to content
This repository has been archived by the owner on Apr 5, 2021. It is now read-only.

Commit

Permalink
Merge pull request #19 from wpietri/fix-tests-and-deployment
Browse files Browse the repository at this point in the history
Fix tests and deployment
  • Loading branch information
wpietri authored Dec 11, 2017
2 parents f2690e0 + 83da699 commit 9e430cc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ python:
- "3.5"
- "3.6"
install:
- pip install pipenv
- pipenv install -d --system
- pip install -e .[dev]

script: nosetests
3 changes: 1 addition & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ install:
# We need wheel installed to build wheels
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- pip install pipenv
- pipenv install -d --system
- pip install -e .[dev]

build: off

Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@
here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
long_description = ''
try:
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
except FileNotFoundError:
print("can't find python README; skipping")

setup(
name='sucks',
version='0.8.2',
version='0.8.3',

description='a library for controlling certain robot vacuums',
long_description=long_description,
Expand Down

0 comments on commit 9e430cc

Please sign in to comment.