Fixing test and release nits.
This commit is contained in:
+1
-2
@@ -4,7 +4,6 @@ python:
|
|||||||
- "3.5"
|
- "3.5"
|
||||||
- "3.6"
|
- "3.6"
|
||||||
install:
|
install:
|
||||||
- pip install pipenv
|
- pip install -e .
|
||||||
- pipenv install -d --system
|
|
||||||
|
|
||||||
script: nosetests
|
script: nosetests
|
||||||
+1
-2
@@ -11,8 +11,7 @@ install:
|
|||||||
# We need wheel installed to build wheels
|
# We need wheel installed to build wheels
|
||||||
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
||||||
- python --version
|
- python --version
|
||||||
- pip install pipenv
|
- pip install -e .
|
||||||
- pipenv install -d --system
|
|
||||||
|
|
||||||
build: off
|
build: off
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,12 @@ from setuptools import setup, find_packages
|
|||||||
here = path.abspath(path.dirname(__file__))
|
here = path.abspath(path.dirname(__file__))
|
||||||
|
|
||||||
# Get the long description from the README file
|
# Get the long description from the README file
|
||||||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
long_description = ''
|
||||||
long_description = f.read()
|
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(
|
setup(
|
||||||
name='sucks',
|
name='sucks',
|
||||||
|
|||||||
Reference in New Issue
Block a user