Hello community,

here is the log from the commit of package python-recommonmark for 
openSUSE:Factory checked in at 2019-03-29 20:36:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-recommonmark (Old)
 and      /work/SRC/openSUSE:Factory/.python-recommonmark.new.25356 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-recommonmark"

Fri Mar 29 20:36:05 2019 rev:6 rq:686480 version:0.5.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-recommonmark/python-recommonmark.changes  
2019-01-21 11:03:17.495047745 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-recommonmark.new.25356/python-recommonmark.changes
       2019-03-29 20:36:06.422548584 +0100
@@ -1,0 +2,7 @@
+Sat Mar 16 11:01:07 UTC 2019 - Sebastian Wagner <[email protected]>
+
+- Use github tarball including the tests.
+- Enable the tests
+- Fix compatibility with recent commonmark.
+
+-------------------------------------------------------------------

Old:
----
  license.md

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-recommonmark.spec ++++++
--- /var/tmp/diff_new_pack.vxV5iq/_old  2019-03-29 20:36:07.038549473 +0100
+++ /var/tmp/diff_new_pack.vxV5iq/_new  2019-03-29 20:36:07.038549473 +0100
@@ -25,15 +25,18 @@
 License:        MIT
 Group:          Development/Languages/Python
 URL:            https://github.com/rtfd/recommonmark
-Source0:        
https://files.pythonhosted.org/packages/source/r/recommonmark/recommonmark-%{version}.tar.gz
-Source1:        
https://raw.githubusercontent.com/rtfd/recommonmark/master/license.md
+# The tests in the pypi tarball are missing all testdata, fixed in the next 
version: 
https://github.com/rtfd/recommonmark/commit/8e02e8309a011a7592d6b88c9a9560667964ffab
+#Source0:        
https://files.pythonhosted.org/packages/source/r/recommonmark/recommonmark-%%{version}.tar.gz
+Source0:        
https://github.com/rtfd/recommonmark/archive/0.5.0.tar.gz#/recommonmark-%{version}.tar.gz
+#Source1:        
https://raw.githubusercontent.com/rtfd/recommonmark/master/license.md
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 # SECTION tests
-#BuildRequires:  %%{python_module CommonMark >= 0.7.3}
-#BuildRequires:  %%{python_module Sphinx >= 1.3.1}
-#BuildRequires:  %%{python_module docutils >= 0.11}
+BuildRequires:  %{python_module CommonMark >= 0.7.3}
+BuildRequires:  %{python_module Sphinx >= 1.3.1}
+BuildRequires:  %{python_module docutils >= 0.11}
+BuildRequires:  %{python_module future}
 # /SECTION tests
 Requires:       python-CommonMark >= 0.7.3
 Requires:       python-Sphinx >= 1.3.1
@@ -62,10 +65,9 @@
 # Remove upstream's egg-info
 rm -rf %{pypi_name}.egg-info
 #Add missing license and readme
-cp -a %{SOURCE1} .
+#cp -a %%{SOURCE1} .
 # find and remove unneeded shebangs
 find recommonmark -name "*.py" | xargs sed -i '1 {/^#!/ d}'
-sed -i 's/from commonmark import Parser/from CommonMark import Parser/' 
recommonmark/parser.py
 
 %build
 %python_build
@@ -81,9 +83,8 @@
 %python_clone -a %{buildroot}%{_bindir}/cm2xetex
 %python_clone -a %{buildroot}%{_bindir}/cm2xml
 
-# The tests in the tarball are missing all testdata, fixed in the next 
version: 
https://github.com/rtfd/recommonmark/commit/8e02e8309a011a7592d6b88c9a9560667964ffab
-#%%check
-#%%python_exec setup.py test
+%check
+%python_exec setup.py test
 
 %post
 %{python_install_alternative cm2man cm2latex cm2xetex cm2pseudoxml cm2html 
cm2xml}
@@ -101,6 +102,6 @@
 %python_alternative %{_bindir}/cm2xml
 %{python_sitelib}/recommonmark/
 %{python_sitelib}/recommonmark-%{version}-py*.egg-info
-%doc README.md
+%doc README.md CHANGELOG.md
 
 %changelog

++++++ recommonmark-0.5.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/.gitignore 
new/recommonmark-0.5.0/.gitignore
--- old/recommonmark-0.5.0/.gitignore   1970-01-01 01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/.gitignore   2019-01-08 22:45:59.000000000 +0100
@@ -0,0 +1,4 @@
+*.pyc
+*egg-info
+_build
+*~
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/.travis.yml 
new/recommonmark-0.5.0/.travis.yml
--- old/recommonmark-0.5.0/.travis.yml  1970-01-01 01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/.travis.yml  2019-01-08 22:45:59.000000000 +0100
@@ -0,0 +1,19 @@
+language: python
+python:
+  - 2.7
+  - 3.5
+  - 3.6
+sudo: false
+install:
+  - pip install tox-travis
+script:
+  - tox
+notifications:
+  slack:
+    rooms:
+      - readthedocs:y3hjODOi7EIz1JAbD1Zb41sz#random
+    on_success: change
+    on_failure: always
+branches:
+  only:
+  - master
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/PKG-INFO 
new/recommonmark-0.5.0/PKG-INFO
--- old/recommonmark-0.5.0/PKG-INFO     2019-01-08 22:46:46.000000000 +0100
+++ new/recommonmark-0.5.0/PKG-INFO     1970-01-01 01:00:00.000000000 +0100
@@ -1,11 +0,0 @@
-Metadata-Version: 1.1
-Name: recommonmark
-Version: 0.5.0
-Summary: A docutils-compatibility bridge to CommonMark, enabling you to write 
CommonMark inside of Docutils & Sphinx projects.
-Home-page: https://github.com/rtfd/recommonmark
-Author: UNKNOWN
-Author-email: UNKNOWN
-License: MIT
-Description: UNKNOWN
-Platform: UNKNOWN
-Classifier: License :: OSI Approved :: MIT License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/docs/index.md 
new/recommonmark-0.5.0/docs/index.md
--- old/recommonmark-0.5.0/docs/index.md        2018-10-24 15:10:12.000000000 
+0200
+++ new/recommonmark-0.5.0/docs/index.md        2019-03-29 20:36:07.098549559 
+0100
@@ -1,120 +1 @@
-# recommonmark
-
-A `docutils`-compatibility bridge to [CommonMark][cm].
-
-This allows you to write CommonMark inside of Docutils & Sphinx projects.
-
-Documentation is available on Read the Docs: 
<http://recommonmark.readthedocs.org>
-
-Contents
---------
-
-* [API Reference](api_ref.md)
-* [AutoStructify Component](auto_structify.md)
-
-## Getting Started
-
-To use `recommonmark` inside of Sphinx only takes 2 steps. 
-First you install it:
-
-```
-pip install recommonmark 
-```
-
-Then add this to your Sphinx conf.py:
-
-```
-# for Sphinx-1.4 or newer
-extensions = ['recommonmark']
-
-# for Sphinx-1.3
-from recommonmark.parser import CommonMarkParser
-
-source_parsers = {
-    '.md': CommonMarkParser,
-}
-
-source_suffix = ['.rst', '.md']
-```
-
-This allows you to write both `.md` and `.rst` files inside of the same 
project.
-
-### Links
-
-For all links in commonmark that aren't explicit URLs, they are treated as 
cross references with the 
[`:any:`](http://www.sphinx-doc.org/en/stable/markup/inline.html#role-any) 
role. This allows referencing a lot of things including files, labels, and even 
objects in the loaded domain.
-
-### AutoStructify
-
-AutoStructify makes it possible to write your documentation in Markdown, and 
automatically convert this
-into rST at build time. See [the AutoStructify 
Documentation](http://recommonmark.readthedocs.org/en/latest/auto_structify.html)
-for more information about configuration and usage.
-
-To use the advanced markdown to rst transformations you must add 
`AutoStructify` to your Sphinx conf.py.
-
-```python
-# At top on conf.py (with other import statements)
-import recommonmark
-from recommonmark.transform import AutoStructify
-
-# At the bottom of conf.py
-def setup(app):
-    app.add_config_value('recommonmark_config', {
-            'url_resolver': lambda url: github_doc_root + url,
-            'auto_toc_tree_section': 'Contents',
-            }, True)
-    app.add_transform(AutoStructify)
-```
-
-See https://github.com/rtfd/recommonmark/blob/master/docs/conf.py for a full 
example.
-
-AutoStructify comes with the following options. See 
[http://recommonmark.readthedocs.org/en/latest/auto_structify.html](http://recommonmark.readthedocs.org/en/latest/auto_structify.html)
 for more information about the specific features.
-
-* __enable_auto_toc_tree__: enable the Auto Toc Tree feature.
-* __auto_toc_tree_section__: when True, Auto Toc Tree will only be enabled on 
section that matches the title.
-* __enable_auto_doc_ref__: enable the Auto Doc Ref feature. **Deprecated**
-* __enable_math__: enable the Math Formula feature.
-* __enable_inline_math__: enable the Inline Math feature.
-* __enable_eval_rst__: enable the evaluate embedded reStructuredText feature.
-* __url_resolver__: a function that maps a existing relative position in the 
document to a http link
-
-## Development
-
-You can run the tests by running `tox` in the top-level of the project.
-
-We are working to expand test coverage,
-but this will at least test basic Python 2 and 3 compatability.
-
-## Why a bridge?
-
-Many python tools (mostly for documentation creation) rely on `docutils`.
-But [docutils][dc] only supports a ReStructuredText syntax.
-
-For instance [this issue][sphinx-issue] and [this StackOverflow
-question][so-question] show that there is an interest in allowing `docutils`
-to use markdown as an alternative syntax.
-
-## Why another bridge to docutils?
-
-recommonmark uses the [python implementation][pcm] of [CommonMark][cm] while
-[remarkdown][rmd] implements a stand-alone parser leveraging [parsley][prs].
-
-Both output a [`docutils` document tree][dc] and provide scripts
-that leverage `docutils` for generation of different types of documents.
-
-## Acknowledgement
-
-recommonmark is mainly derived from [remarkdown][rmd] by Steve Genoud and
-leverages the python CommonMark implementation.
-
-It was originally created by [Luca Barbato][lu-zero],
-and is now maintained in the Read the Docs (rtfd) GitHub organization.
-
-[cm]: http://commonmark.org
-[pcm]: https://github.com/rtfd/CommonMark-py
-[rmd]: https://github.com/sgenoud/remarkdown
-[prs]: https://github.com/python-parsley/parsley
-[lu-zero]: https://github.com/lu-zero
-
-[dc]: http://docutils.sourceforge.net/docs/ref/doctree.html
-[sphinx-issue]: 
https://bitbucket.org/birkenfeld/sphinx/issue/825/markdown-capable-sphinx
-[so-question]: 
http://stackoverflow.com/questions/2471804/using-sphinx-with-markdown-instead-of-rst
+symbolic link to ../README.md
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/prospector.yml 
new/recommonmark-0.5.0/prospector.yml
--- old/recommonmark-0.5.0/prospector.yml       1970-01-01 01:00:00.000000000 
+0100
+++ new/recommonmark-0.5.0/prospector.yml       2019-01-08 22:45:59.000000000 
+0100
@@ -0,0 +1,31 @@
+strictness: medium
+
+test-warnings: false
+doc-warnings: true
+
+ignore-paths:
+  - docs
+
+pep8:
+  full: true
+  options:
+    max-line-length: 100
+
+pylint:
+  options:
+    max-line-length: 100
+    docstring-min-length: 20
+  disable:
+    - interface-not-implemented
+
+mccabe:
+  run: false
+
+pep257:
+  run: true
+  disable:
+    - D213
+    - D211
+    - D107
+    - D104
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/recommonmark.egg-info/PKG-INFO 
new/recommonmark-0.5.0/recommonmark.egg-info/PKG-INFO
--- old/recommonmark-0.5.0/recommonmark.egg-info/PKG-INFO       2019-01-08 
22:46:46.000000000 +0100
+++ new/recommonmark-0.5.0/recommonmark.egg-info/PKG-INFO       1970-01-01 
01:00:00.000000000 +0100
@@ -1,11 +0,0 @@
-Metadata-Version: 1.1
-Name: recommonmark
-Version: 0.5.0
-Summary: A docutils-compatibility bridge to CommonMark, enabling you to write 
CommonMark inside of Docutils & Sphinx projects.
-Home-page: https://github.com/rtfd/recommonmark
-Author: UNKNOWN
-Author-email: UNKNOWN
-License: MIT
-Description: UNKNOWN
-Platform: UNKNOWN
-Classifier: License :: OSI Approved :: MIT License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/recommonmark.egg-info/SOURCES.txt 
new/recommonmark-0.5.0/recommonmark.egg-info/SOURCES.txt
--- old/recommonmark-0.5.0/recommonmark.egg-info/SOURCES.txt    2019-01-08 
22:46:46.000000000 +0100
+++ new/recommonmark-0.5.0/recommonmark.egg-info/SOURCES.txt    1970-01-01 
01:00:00.000000000 +0100
@@ -1,31 +0,0 @@
-CHANGELOG.md
-MANIFEST.in
-README.md
-license.md
-setup.cfg
-setup.py
-docs/Makefile
-docs/api_ref.md
-docs/auto_structify.md
-docs/conf.py
-docs/index.md
-recommonmark/__init__.py
-recommonmark/parser.py
-recommonmark/scripts.py
-recommonmark/states.py
-recommonmark/transform.py
-recommonmark.egg-info/PKG-INFO
-recommonmark.egg-info/SOURCES.txt
-recommonmark.egg-info/dependency_links.txt
-recommonmark.egg-info/entry_points.txt
-recommonmark.egg-info/requires.txt
-recommonmark.egg-info/top_level.txt
-tests/__init__.py
-tests/test_basic.py
-tests/test_sphinx.py
-tests/sphinx_code_block/conf.py
-tests/sphinx_custom_md/conf.py
-tests/sphinx_generic/conf.py
-tests/sphinx_indented_code/conf.py
-tests/sphinx_nested_header_block/conf.py
-tests/sphinx_xref/conf.py
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/recommonmark-0.5.0/recommonmark.egg-info/dependency_links.txt 
new/recommonmark-0.5.0/recommonmark.egg-info/dependency_links.txt
--- old/recommonmark-0.5.0/recommonmark.egg-info/dependency_links.txt   
2019-01-08 22:46:46.000000000 +0100
+++ new/recommonmark-0.5.0/recommonmark.egg-info/dependency_links.txt   
1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/recommonmark-0.5.0/recommonmark.egg-info/entry_points.txt 
new/recommonmark-0.5.0/recommonmark.egg-info/entry_points.txt
--- old/recommonmark-0.5.0/recommonmark.egg-info/entry_points.txt       
2019-01-08 22:46:46.000000000 +0100
+++ new/recommonmark-0.5.0/recommonmark.egg-info/entry_points.txt       
1970-01-01 01:00:00.000000000 +0100
@@ -1,8 +0,0 @@
-[console_scripts]
-cm2html = recommonmark.scripts:cm2html
-cm2latex = recommonmark.scripts:cm2latex
-cm2man = recommonmark.scripts:cm2man
-cm2pseudoxml = recommonmark.scripts:cm2pseudoxml
-cm2xetex = recommonmark.scripts:cm2xetex
-cm2xml = recommonmark.scripts:cm2xml
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/recommonmark-0.5.0/recommonmark.egg-info/requires.txt 
new/recommonmark-0.5.0/recommonmark.egg-info/requires.txt
--- old/recommonmark-0.5.0/recommonmark.egg-info/requires.txt   2019-01-08 
22:46:46.000000000 +0100
+++ new/recommonmark-0.5.0/recommonmark.egg-info/requires.txt   1970-01-01 
01:00:00.000000000 +0100
@@ -1,3 +0,0 @@
-commonmark>=0.7.3
-docutils>=0.11
-sphinx>=1.3.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/recommonmark-0.5.0/recommonmark.egg-info/top_level.txt 
new/recommonmark-0.5.0/recommonmark.egg-info/top_level.txt
--- old/recommonmark-0.5.0/recommonmark.egg-info/top_level.txt  2019-01-08 
22:46:46.000000000 +0100
+++ new/recommonmark-0.5.0/recommonmark.egg-info/top_level.txt  1970-01-01 
01:00:00.000000000 +0100
@@ -1 +0,0 @@
-recommonmark
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/setup.cfg 
new/recommonmark-0.5.0/setup.cfg
--- old/recommonmark-0.5.0/setup.cfg    2019-01-08 22:46:46.000000000 +0100
+++ new/recommonmark-0.5.0/setup.cfg    2019-01-08 22:45:59.000000000 +0100
@@ -1,7 +1,2 @@
 [bdist_wheel]
-universal = 1
-
-[egg_info]
-tag_build = 
-tag_date = 0
-
+universal=1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/tests/sphinx_code_block/index.md 
new/recommonmark-0.5.0/tests/sphinx_code_block/index.md
--- old/recommonmark-0.5.0/tests/sphinx_code_block/index.md     1970-01-01 
01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/tests/sphinx_code_block/index.md     2019-01-08 
22:45:59.000000000 +0100
@@ -0,0 +1,11 @@
+Header
+======
+
+A paragraph
+```
+def f():
+    pass
+```
+Another paragraph
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/recommonmark-0.5.0/tests/sphinx_custom_md/index.markdown 
new/recommonmark-0.5.0/tests/sphinx_custom_md/index.markdown
--- old/recommonmark-0.5.0/tests/sphinx_custom_md/index.markdown        
1970-01-01 01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/tests/sphinx_custom_md/index.markdown        
2019-01-08 22:45:59.000000000 +0100
@@ -0,0 +1,22 @@
+Header
+======
+
+A paragraph
+
+```eval_rst
++-----+------+
+| abc | data |
++=====+======+
+| a   | 1    |
++-----+------+
+```
+
+Another paragraph
+
+
+```eval_rst
+.. contents:: Contents
+```
+
+Header 2
+----------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/tests/sphinx_generic/index.md 
new/recommonmark-0.5.0/tests/sphinx_generic/index.md
--- old/recommonmark-0.5.0/tests/sphinx_generic/index.md        1970-01-01 
01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/tests/sphinx_generic/index.md        2019-01-08 
22:45:59.000000000 +0100
@@ -0,0 +1,37 @@
+# Heading 1
+
+## Heading 2
+
+### Heading 3
+
+#### Heading 4
+
+This is a [link](http://example.com "Example")
+
+This is a [ref link][example]
+
+This is a [relative link](/example)
+
+This is a [pending ref](index)
+
+
+[example]: http://example.com/foobar "Example"
+
+Foo
+
+----
+
+Bar
+
+![foo](/image.png "Example")
+
+    #!/bin/sh
+    python
+
+* Item A
+* Item B
+* Item C
+
+1. Item 1
+2. Item 2
+3. Item 3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/recommonmark-0.5.0/tests/sphinx_indented_code/index.md 
new/recommonmark-0.5.0/tests/sphinx_indented_code/index.md
--- old/recommonmark-0.5.0/tests/sphinx_indented_code/index.md  1970-01-01 
01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/tests/sphinx_indented_code/index.md  2019-01-08 
22:45:59.000000000 +0100
@@ -0,0 +1,10 @@
+Header
+======
+
+A paragraph
+
+    def f():
+        pass
+
+Another paragraph
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/recommonmark-0.5.0/tests/sphinx_nested_header_block/index.md 
new/recommonmark-0.5.0/tests/sphinx_nested_header_block/index.md
--- old/recommonmark-0.5.0/tests/sphinx_nested_header_block/index.md    
1970-01-01 01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/tests/sphinx_nested_header_block/index.md    
2019-01-08 22:45:59.000000000 +0100
@@ -0,0 +1 @@
+> # Header
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/tests/sphinx_xref/index.md 
new/recommonmark-0.5.0/tests/sphinx_xref/index.md
--- old/recommonmark-0.5.0/tests/sphinx_xref/index.md   1970-01-01 
01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/tests/sphinx_xref/index.md   2019-01-08 
22:45:59.000000000 +0100
@@ -0,0 +1,5 @@
+Header
+======
+
+A paragraph [link](link) and [absolute link](/link). An [external 
link](http://www.google.com).
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/tests/sphinx_xref/link.md 
new/recommonmark-0.5.0/tests/sphinx_xref/link.md
--- old/recommonmark-0.5.0/tests/sphinx_xref/link.md    1970-01-01 
01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/tests/sphinx_xref/link.md    2019-01-08 
22:45:59.000000000 +0100
@@ -0,0 +1,4 @@
+link
+====
+
+The link file.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/recommonmark-0.5.0/tox.ini 
new/recommonmark-0.5.0/tox.ini
--- old/recommonmark-0.5.0/tox.ini      1970-01-01 01:00:00.000000000 +0100
+++ new/recommonmark-0.5.0/tox.ini      2019-01-08 22:45:59.000000000 +0100
@@ -0,0 +1,41 @@
+[tox]
+envlist =
+    py{27,35,36}-sphinx{16,17,18},
+    # Workaround https://github.com/tox-dev/tox/issues/706
+    lint-sphinx18
+    docs-sphinx18
+
+[tox:travis]
+2.7 = py27-sphinx{16,17,18}, docs-sphinx16, lint-sphinx16
+3.5 = py35-sphinx{16,17,18}
+3.6 = py36-sphinx{16,17,18}
+
+[testenv]
+setenv =
+    LANG=C
+deps =
+    .
+    pytest
+    sphinx16: Sphinx < 1.7
+    sphinx17: Sphinx < 1.8
+    sphinx18: Sphinx < 1.9
+commands =
+    py.test {posargs}
+
+[testenv:docs]
+deps =
+    {[testenv]deps}
+    sphinx_rtd_theme
+changedir = {toxinidir}/docs
+commands =
+    sphinx-build -b html -d {envtmpdir}/doctrees .  {envtmpdir}/html
+
+[testenv:lint]
+deps =
+    {[testenv]deps}
+    prospector
+commands =
+    prospector \
+    --profile-path={toxinidir} \
+    --profile=prospector \
+    --die-on-tool-error


Reply via email to