Skip to content

Commit

Permalink
Add Python 3.7
Browse files Browse the repository at this point in the history
And add more badges to README.rst
  • Loading branch information
jamadden committed Oct 23, 2018
1 parent dc60c23 commit deb8fb9
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 12 deletions.
15 changes: 11 additions & 4 deletions .travis.yml
@@ -1,10 +1,17 @@
language: python
sudo: false
python:
- 2.7
- pypy
- 3.6
- 3.5
- 2.7
- 3.5
- 3.6
- pypy
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true

install:
- pip install -U pip setuptools
- pip install -U coverage coveralls
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -8,7 +8,7 @@
- Remove ``zope.app.testing.testbrowser``. It was not compatible with
zope.testbrowser version 5.

- Add basic support for Python 3.5 and 3.6.
- Add basic support for Python 3.5, 3.6 and 3.7.

3.10.0 (2012-01-13)
===================
Expand Down
16 changes: 11 additions & 5 deletions README.rst
Expand Up @@ -3,14 +3,20 @@
==================

.. image:: https://img.shields.io/pypi/v/zope.app.testing.svg
:target: https://pypi.org/project/zope.app.testing/
:alt: Latest release
:target: https://pypi.org/project/zope.app.testing/
:alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/zope.app.testing.svg
:target: https://pypi.org/project/zope.app.testing/
:alt: Supported Python versions

.. image:: https://travis-ci.org/zopefoundation/zope.app.testing.svg?branch=master
:target: https://travis-ci.org/zopefoundation/zope.app.testing
:target: https://travis-ci.org/zopefoundation/zope.app.testing
:alt: Build Status

.. image:: https://coveralls.io/repos/github/zopefoundation/zope.app.testing/badge.svg?branch=master
:target: https://coveralls.io/github/zopefoundation/zope.app.testing?branch=master
.. image:: https://coveralls.io/repos/github/zopefoundation/zope.app.testing/badge.svg
:target: https://coveralls.io/github/zopefoundation/zope.app.testing
:alt: Code Coverage

This package provides testing support for Zope 3 applications. Besides
providing numerous setup convenience functions, it implements a testing setup
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -53,6 +53,7 @@ def read(*rnames):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
2 changes: 1 addition & 1 deletion src/zope/app/testing/setup.py
Expand Up @@ -48,7 +48,7 @@ def setUpTraversal():
#------------------------------------------------------------------------
# ISiteManager lookup
from zope.site.site import SiteManagerAdapter
from zope.component.interfaces import IComponentLookup
from zope.interface.interfaces import IComponentLookup
from zope.interface import Interface
def setUpSiteManagerLookup():
zope.component.provideAdapter(SiteManagerAdapter, (Interface,),
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,pypy,py35,py36,coverage
py27,pypy,py35,py36,py37,coverage

[testenv]
commands =
Expand Down

0 comments on commit deb8fb9

Please sign in to comment.