Skip to content

Commit

Permalink
Merge pull request #2 from zopefoundation/pypy-updates
Browse files Browse the repository at this point in the history
Project metadata updates
  • Loading branch information
jamadden committed Sep 24, 2017
2 parents 5872635 + 2dd04cf commit c2eac2d
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -5,7 +5,8 @@ python:
- 3.4
- 3.5
- 3.6
- pypy-5.4.1
- pypy
- pypy3
script:
- coverage run -m zope.testrunner --test-path=src --auto-color --auto-progress

Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -7,7 +7,7 @@

- Drop support for Python 2.6 and 3.3.

- Add support for Python 3.4, 3.5, 3.6 and PyPy.
- Add support for Python 3.4, 3.5, 3.6, PyPy and PyPy3.


1.0.0 (2013-03-01)
Expand Down
19 changes: 19 additions & 0 deletions README.rst
@@ -1,2 +1,21 @@
=========================
zope.vocabularyregistry
=========================

.. image:: https://img.shields.io/pypi/v/zope.vocabularyregistry.svg
:target: https://pypi.python.org/pypi/zope.vocabularyregistry/
:alt: Latest release

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

.. image:: https://travis-ci.org/zopefoundation/zope.vocabularyregistry.png?branch=master
:target: https://travis-ci.org/zopefoundation/zope.vocabularyregistry

.. image:: https://coveralls.io/repos/github/zopefoundation/zope.vocabularyregistry/badge.svg?branch=master
:target: https://coveralls.io/github/zopefoundation/zope.vocabularyregistry?branch=master


This Zope 3 package provides a ``zope.schema`` vocabulary registry that uses
utilities to look up vocabularies.
16 changes: 7 additions & 9 deletions setup.py
Expand Up @@ -69,15 +69,13 @@ def read(*rnames):
'zope.interface',
'zope.schema',
],
extras_require=dict(
test=[
'zope.configuration',
'zope.testing',
'zope.testrunner',
],
),
extras_require={
'test': [
'zope.configuration',
'zope.testing',
'zope.testrunner',
],
},
include_package_data=True,
tests_require=['zope.testing'],
test_suite='zope.vocabularyregistry.tests.test_suite',
zip_safe=False,
)
14 changes: 13 additions & 1 deletion tox.ini
@@ -1,8 +1,20 @@
[tox]
envlist = py27,py34,py35,py36,pypy
envlist =
py27,py34,py35,py36,pypy,pypy3,coverage

[testenv]
commands =
zope-testrunner --test-path=src []
deps =
.[test]

[testenv:coverage]
usedevelop = true
basepython =
python2.7
commands =
coverage run -m zope.testrunner --test-path=src []
coverage report --fail-under=100
deps =
{[testenv]deps}
coverage

0 comments on commit c2eac2d

Please sign in to comment.