Various Python 3.5 documentation mentions
This commit is contained in:
parent
6520cf00e9
commit
16f90ffc92
|
@ -33,7 +33,7 @@ Features
|
||||||
on `unittest <http://pytest.org/latest/unittest.html>`_ (or trial),
|
on `unittest <http://pytest.org/latest/unittest.html>`_ (or trial),
|
||||||
`nose <http://pytest.org/latest/nose.html>`_
|
`nose <http://pytest.org/latest/nose.html>`_
|
||||||
- single-source compatibility from Python2.6 all the way up to
|
- single-source compatibility from Python2.6 all the way up to
|
||||||
Python3.4, PyPy-2.3, (jython-2.5 untested)
|
Python3.5, PyPy-2.3, (jython-2.5 untested)
|
||||||
|
|
||||||
|
|
||||||
- many `external plugins <http://pytest.org/latest/plugins.html#installing-external-plugins-searching>`_.
|
- many `external plugins <http://pytest.org/latest/plugins.html#installing-external-plugins-searching>`_.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Installation and Getting Started
|
Installation and Getting Started
|
||||||
===================================
|
===================================
|
||||||
|
|
||||||
**Pythons**: Python 2.6,2.7,3.3,3.4, Jython, PyPy-2.3
|
**Pythons**: Python 2.6,2.7,3.3,3.4,3.5, Jython, PyPy-2.3
|
||||||
|
|
||||||
**Platforms**: Unix/Posix and Windows
|
**Platforms**: Unix/Posix and Windows
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ pytest: helps you write better programs
|
||||||
|
|
||||||
**a mature full-featured Python testing tool**
|
**a mature full-featured Python testing tool**
|
||||||
|
|
||||||
- runs on Posix/Windows, Python 2.6-3.4, PyPy and (possibly still) Jython-2.5.1
|
- runs on Posix/Windows, Python 2.6-3.5, PyPy and (possibly still) Jython-2.5.1
|
||||||
- **well tested** with more than a thousand tests against itself
|
- **well tested** with more than a thousand tests against itself
|
||||||
- **strict backward compatibility policy** for safe pytest upgrades
|
- **strict backward compatibility policy** for safe pytest upgrades
|
||||||
- :ref:`comprehensive online <toc>` and `PDF documentation <pytest.pdf>`_
|
- :ref:`comprehensive online <toc>` and `PDF documentation <pytest.pdf>`_
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -13,7 +13,7 @@ classifiers = ['Development Status :: 6 - Mature',
|
||||||
'Topic :: Software Development :: Libraries',
|
'Topic :: Software Development :: Libraries',
|
||||||
'Topic :: Utilities'] + [
|
'Topic :: Utilities'] + [
|
||||||
('Programming Language :: Python :: %s' % x) for x in
|
('Programming Language :: Python :: %s' % x) for x in
|
||||||
'2 2.6 2.7 3 3.2 3.3 3.4'.split()]
|
'2 2.6 2.7 3 3.2 3.3 3.4 3.5'.split()]
|
||||||
|
|
||||||
with open('README.rst') as fd:
|
with open('README.rst') as fd:
|
||||||
long_description = fd.read()
|
long_description = fd.read()
|
||||||
|
|
Loading…
Reference in New Issue