lists.arthurdejong.org
RSS feed

python-stdnum branch master updated. 1.14-11-g2f2c742

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

python-stdnum branch master updated. 1.14-11-g2f2c742



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  2f2c7427ed8126709f777a108c2cf67e50d4fc7f (commit)
      from  2046f51043c853a0c9030a30f0264d29c0a8029e (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=2f2c7427ed8126709f777a108c2cf67e50d4fc7f

commit 2f2c7427ed8126709f777a108c2cf67e50d4fc7f
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Sun Jan 10 14:18:04 2021 +0100

    Add support for Python 3.9
    
    This switches Travis tests to bionic by default.

diff --git a/.travis.yml b/.travis.yml
index c0f779b..7662ef1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,24 +1,26 @@
 language: python
 os: linux
-dist: xenial
+dist: bionic
 cache: pip
 python:
   - 2.7
-  - 3.4
   - 3.5
   - 3.6
   - 3.7
   - 3.8
-  - pypy
+  - 3.9
+  - pypy3
 jobs:
   include:
   - python: 2.6
     dist: trusty
-  - python: pypy3
-    dist: bionic
-  - python: 3.6
+  - python: 3.4
+    dist: xenial
+  - python: pypy
+    dist: xenial
+  - python: 3.8
     env: TOXENV=flake8
-  - python: 3.6
+  - python: 3.8
     env: TOXENV=docs
 install: pip install tox
 script: tox -e "${TOXENV:-$(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 
's/pypypy/pypy/')}" --skip-missing-interpreters false
diff --git a/setup.py b/setup.py
index f340218..3c74d69 100755
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
 
 # setup.py - python-stdnum installation script
 #
-# Copyright (C) 2010-2020 Arthur de Jong
+# Copyright (C) 2010-2021 Arthur de Jong
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -66,6 +66,7 @@ setup(
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
+        'Programming Language :: Python :: 3.9',
         'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Office/Business :: Financial',
         'Topic :: Software Development :: Libraries :: Python Modules',
diff --git a/tox.ini b/tox.ini
index 120baec..282b836 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
-envlist = py{26,27,34,35,36,37,38,py,py3},flake8,docs
-skip_missing_interpreters = True
+envlist = py{26,27,34,35,36,37,38,39,py,py3},flake8,docs
+skip_missing_interpreters = true
 
 [testenv]
 deps = nose
@@ -11,7 +11,7 @@ setenv=
 
 [testenv:py26]
 basepython = python2.6
-usedevelop = True
+usedevelop = true
 commands = nosetests --ignore-file="test_.*.py"
 
 [testenv:flake8]

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

Summary of changes:
 .travis.yml | 16 +++++++++-------
 setup.py    |  3 ++-
 tox.ini     |  6 +++---
 3 files changed, 14 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
python-stdnum