lists.arthurdejong.org
RSS feed

python-stdnum branch master updated. 1.12-6-g087c668

[Date Prev][Date Next] [Thread Prev][Thread Next]

python-stdnum branch master updated. 1.12-6-g087c668



This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-stdnum".

The branch, master has been updated
       via  087c668560148de86084b247c4dffafb19f5c3fe (commit)
      from  922505aa57778592140e5d4418781f20c2780f00 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://arthurdejong.org/git/python-stdnum/commit/?id=087c668560148de86084b247c4dffafb19f5c3fe

commit 087c668560148de86084b247c4dffafb19f5c3fe
Author: Sergi Almacellas Abellana <sergi@koolpi.com>
Date:   Wed Dec 18 12:06:55 2019 +0100

    Add support for Python 3.8
    
    Closes https://github.com/arthurdejong/python-stdnum/pull/177

diff --git a/.travis.yml b/.travis.yml
index 935844b..fb26bd7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,6 +6,8 @@ python:
   - 3.4
   - 3.5
   - 3.6
+  - 3.7
+  - 3.8
   - pypy
 matrix:
   include:
diff --git a/setup.py b/setup.py
index 5514b77..0009124 100755
--- a/setup.py
+++ b/setup.py
@@ -64,6 +64,7 @@ setup(name='python-stdnum',
           'Programming Language :: Python :: 3.5',
           'Programming Language :: Python :: 3.6',
           'Programming Language :: Python :: 3.7',
+          'Programming Language :: Python :: 3.8',
           'Programming Language :: Python :: Implementation :: PyPy',
           'Topic :: Office/Business :: Financial',
           'Topic :: Software Development :: Libraries :: Python Modules',
diff --git a/tox.ini b/tox.ini
index ff1f831..645865d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py{26,27,34,35,36,37,py,py3},flake8,docs
+envlist = py{26,27,34,35,36,37,38,py,py3},flake8,docs
 skip_missing_interpreters = True
 
 [testenv]
@@ -19,7 +19,7 @@ skip_install = true
 deps = flake8
        flake8-author
        flake8-blind-except
-       py{35,36,37}: flake8-bugbear
+       py{35,36,37,38}: flake8-bugbear
        flake8-class-newline
        flake8-commas
        flake8-deprecated

-----------------------------------------------------------------------

Summary of changes:
 .travis.yml | 2 ++
 setup.py    | 1 +
 tox.ini     | 4 ++--
 3 files changed, 5 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
python-stdnum