summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Diemer <github.com@jensdiemer.de>2020-10-17 21:04:58 +0200
committerGitHub <noreply@github.com>2020-10-17 21:04:58 +0200
commita2806596d1e5862e0b306e5268451bc7d3d90646 (patch)
tree3a5764051f94a0f1e8fcd1ce604d64a43d09f477
parent344523bd14ea6be1df9230c84f930217e9e01250 (diff)
parenta55e6b825ac403fc0dbfb280b5b997a3cf0fa213 (diff)
downloadcreole-a2806596d1e5862e0b306e5268451bc7d3d90646.tar.gz
Merge pull request #50 from jedie/py39
Run tests with Python 3.9, too
-rw-r--r--.github/workflows/pythonapp.yml2
-rw-r--r--.travis.yml3
-rw-r--r--README.creole3
-rw-r--r--README.rst6
-rw-r--r--tox.ini3
5 files changed, 12 insertions, 5 deletions
diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml
index 8649dff..341a25c 100644
--- a/.github/workflows/pythonapp.yml
+++ b/.github/workflows/pythonapp.yml
@@ -11,7 +11,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
- python-version: [3.8, 3.7, 3.6, pypy3]
+ python-version: [3.9, 3.8, 3.7, 3.6, pypy3]
steps:
- uses: actions/checkout@v1
- name: 'Set up Python ${{ matrix.python-version }}'
diff --git a/.travis.yml b/.travis.yml
index f2ed8f2..9cdbd2a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,6 +15,9 @@ matrix:
python: 3.8
env: TOXENV=py38
- os: linux
+ python: 3.9
+ env: TOXENV=py39
+ - os: linux
python: pypy3
# TODO:
#- os: osx
diff --git a/README.creole b/README.creole
index cb70fb5..8317539 100644
--- a/README.creole
+++ b/README.creole
@@ -4,7 +4,7 @@ python-creole is a OpenSource (GPL) Python lib for converting markups.
python-creole is pure python. No external libs needed.
Compatible Python Versions (see [[https://github.com/jedie/python-creole/blob/master/tox.ini|tox.ini]] or [[https://github.com/jedie/python-creole/blob/master/.travis.yml|.travis.yml]]):
- * 3.8, 3.7, 3.6
+ * 3.9, 3.8, 3.7, 3.6
* PyPy3
@@ -229,6 +229,7 @@ Note: In this case you must install **docutils**! See above.
* *dev* - [[https://github.com/jedie/python-creole/compare/v1.4.6...master|compare v1.4.6...master]]
** {{{update_rst_readme()}}} will touch {{{README.rst}}} if there are not change (timestamp will not changed in file)
+** Run tests with Python 3.9, too.
** Some meta updates to project setup
** TBC
* v1.4.6 - 2020-02-13 - [[https://github.com/jedie/python-creole/compare/v1.4.5...v1.4.6|compare v1.4.5...v1.4.6]]
diff --git a/README.rst b/README.rst
index eb43978..6c01bf2 100644
--- a/README.rst
+++ b/README.rst
@@ -7,7 +7,7 @@ python-creole is pure python. No external libs needed.
Compatible Python Versions (see `tox.ini <https://github.com/jedie/python-creole/blob/master/tox.ini>`_ or `.travis.yml <https://github.com/jedie/python-creole/blob/master/.travis.yml>`_):
-* 3.8, 3.7, 3.6
+* 3.9, 3.8, 3.7, 3.6
* PyPy3
@@ -302,6 +302,8 @@ history
* ``update_rst_readme()`` will touch ``README.rst`` if there are not change (timestamp will not changed in file)
+ * Run tests with Python 3.9, too.
+
* Some meta updates to project setup
* TBC
@@ -679,4 +681,4 @@ donation
------------
-``Note: this file is generated from README.creole 2020-10-17 20:45:35 with "python-creole"`` \ No newline at end of file
+``Note: this file is generated from README.creole 2020-10-17 21:03:50 with "python-creole"`` \ No newline at end of file
diff --git a/tox.ini b/tox.ini
index 4973a7e..7c4cbd8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
isolated_build = True
-envlist = py38,py37,py36
+envlist = py39,py38,py37,py36
skip_missing_interpreters = True
[gh-actions]
@@ -9,6 +9,7 @@ python =
3.6: py36
3.7: py37
3.8: py38
+ 3.9: py39
pypy3: pypy3
[testenv]