chore(setup): Update the version, add the tox test to python 3.8 and update the dev dependencies

This commit is contained in:
Silvio Leite
2020-07-01 19:35:49 -03:00
parent 257f2f2922
commit e38a9307eb
3 changed files with 6 additions and 6 deletions

View File

@@ -1,2 +1,2 @@
pypandoc==1.3.3 pypandoc==1.5
tox==3.2.1 tox==3.16.1

View File

@@ -4,9 +4,7 @@ from setuptools import find_packages, setup
short_description = 'A Django app to include a manifest.json and Service Worker instance to enable progressive web ' \ short_description = 'A Django app to include a manifest.json and Service Worker instance to enable progressive web ' \
'app behavior ' 'app behavior '
# noinspection PyBroadException
try: try:
# noinspection PyPackageRequirements
import pypandoc import pypandoc
long_description = pypandoc.convert('README.md', 'rst') long_description = pypandoc.convert('README.md', 'rst')
@@ -22,7 +20,7 @@ install_requirements = [
setup( setup(
name='django-pwa', name='django-pwa',
version='1.0.9', version='1.0.10',
packages=find_packages(), packages=find_packages(),
install_requires=install_requirements, install_requires=install_requirements,
include_package_data=True, include_package_data=True,

View File

@@ -6,6 +6,7 @@ envlist =
py37-django{20} py37-django{20}
py37-django{21} py37-django{21}
py37-django{30} py37-django{30}
py38-django{30}
[testenv] [testenv]
commands = python runtests.py commands = python runtests.py
@@ -16,6 +17,7 @@ basepython =
py35: python3.5 py35: python3.5
py36: python3.6 py36: python3.6
py37: python3.7 py37: python3.7
py38: python3.8
deps = deps =
django18: django==1.8 django18: django==1.8
django19: django==1.9 django19: django==1.9
@@ -25,4 +27,4 @@ deps =
django21: Django==2.1 django21: Django==2.1
django30: Django==3.0 django30: Django==3.0
pypandoc==1.3.3 pypandoc==1.5