From e38a9307eb6bc1419b1ca50933411cadb3bf8d63 Mon Sep 17 00:00:00 2001 From: Silvio Leite Date: Wed, 1 Jul 2020 19:35:49 -0300 Subject: [PATCH] chore(setup): Update the version, add the tox test to python 3.8 and update the dev dependencies --- requirements-dev.txt | 4 ++-- setup.py | 4 +--- tox.ini | 4 +++- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 5323983..2d541c7 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,2 +1,2 @@ -pypandoc==1.3.3 -tox==3.2.1 \ No newline at end of file +pypandoc==1.5 +tox==3.16.1 \ No newline at end of file diff --git a/setup.py b/setup.py index 3153342..887fdcf 100644 --- a/setup.py +++ b/setup.py @@ -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 ' \ 'app behavior ' -# noinspection PyBroadException try: - # noinspection PyPackageRequirements import pypandoc long_description = pypandoc.convert('README.md', 'rst') @@ -22,7 +20,7 @@ install_requirements = [ setup( name='django-pwa', - version='1.0.9', + version='1.0.10', packages=find_packages(), install_requires=install_requirements, include_package_data=True, diff --git a/tox.ini b/tox.ini index 893f0e0..212d943 100644 --- a/tox.ini +++ b/tox.ini @@ -6,6 +6,7 @@ envlist = py37-django{20} py37-django{21} py37-django{30} + py38-django{30} [testenv] commands = python runtests.py @@ -16,6 +17,7 @@ basepython = py35: python3.5 py36: python3.6 py37: python3.7 + py38: python3.8 deps = django18: django==1.8 django19: django==1.9 @@ -25,4 +27,4 @@ deps = django21: Django==2.1 django30: Django==3.0 - pypandoc==1.3.3 \ No newline at end of file + pypandoc==1.5 \ No newline at end of file