Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zodburi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
zodburi
Commits
34e961d8
Commit
34e961d8
authored
Jan 22, 2019
by
Tres Seaver
Committed by
GitHub
Jan 22, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #26 from azmeuk/tox
Added pypy and pypy3 tests
parents
4175652e
6c46a29d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
3 deletions
+12
-3
.travis.yml
.travis.yml
+8
-0
docs/index.rst
docs/index.rst
+1
-2
setup.py
setup.py
+2
-0
tox.ini
tox.ini
+1
-1
No files found.
.travis.yml
View file @
34e961d8
...
...
@@ -20,6 +20,14 @@ matrix:
env
:
TOXENV=py36-zodb4
-
python
:
3.6
env
:
TOXENV=py36-zodb5
-
python
:
pypy
env
:
TOXENV=pypy-zodb4
-
python
:
pypy
env
:
TOXENV=pypy-zodb5
-
python
:
pypy3
env
:
TOXENV=pypy3-zodb4
-
python
:
pypy3
env
:
TOXENV=pypy3-zodb5
-
python
:
3.7
env
:
TOXENV=py37-zodb5
dist
:
xenial
...
...
docs/index.rst
View file @
34e961d8
...
...
@@ -7,8 +7,7 @@ Overview
A library which parses URIs and converts them to ZODB storage objects and
database arguments.
It will run under CPython 2.6, and 2.7. It will not run under PyPy or
Jython. It requires ZODB >= 3.10.0.
It will run under CPython 2.6, 2.7, 3.4 to 3.7, pypy and pypy3. It will not run under Jython. It requires ZODB >= 3.10.0.
Installation
------------
...
...
setup.py
View file @
34e961d8
...
...
@@ -40,6 +40,8 @@ setup(name='zodburi',
"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"
,
"License :: Repoze Public License"
,
],
keywords
=
'zodb zodbconn'
,
...
...
tox.ini
View file @
34e961d8
[tox]
envlist
=
{py27,py34,py35,py36}-{zodb4,zodb5},py37-zodb5,cover,docs
{py27,py34,py35,py36
,pypy,pypy3
}-{zodb4,zodb5},py37-zodb5,cover,docs
[testenv]
commands
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment