summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNic Watson <github@nicwatson.org>2019-06-15 00:03:49 -0400
committerGitHub <noreply@github.com>2019-06-15 00:03:49 -0400
commit74c3f828fdfcffbb22b4693d59feb24fc254fab0 (patch)
treed3ae064f8411eb137d07c4a19ffcaf0e2cc91dda
parenta7d752729150cc0492f483a0f7557886e2e72fec (diff)
Update readme, CI (#197)
Add 3.7 testing, remove 3.3 reference in docs
-rwxr-xr-x.travis.yml2
-rw-r--r--README.md15
-rw-r--r--appveyor.yml3
-rw-r--r--docs/index.rst4
4 files changed, 15 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index 1d168c6..c07980d 100755
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,10 +7,10 @@ matrix:
python:
- 2.7
- - 3.3
- 3.4
- 3.5
- 3.6
+ - 3.7
- nightly
- pypy
diff --git a/README.md b/README.md
index c4d902a..46393f1 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,21 @@
+This is a universal Python binding for the LMDB ‘Lightning’ Database.
+
+See [the documentation](https://lmdb.readthedocs.io) for more information.
# py-lmdb Has a New Maintainer!
-Hi. My name is Nic Watson. With lots of help from David, I'm taking over maintenance of py-lmdb. Please be patient as we work out the details of the handover.
+Hi. My name is Nic Watson. With lots of help from David, I'm taking over maintenance of py-lmdb. Please be patient
+as we work out the details of the handover.
### CI State
| Platform | Branch | Status |
| -------- | ------ | ------ |
-| UNIX | ``master`` | [![master](https://travis-ci.org/dw/py-lmdb.png?branch=master)](https://travis-ci.org/dw/py-lmdb/branches) |
-| Windows | ``master`` | [![master](https://ci.appveyor.com/api/projects/status/cx2sau39bufi3t0t/branch/master?svg=true)](https://ci.appveyor.com/project/dw/py-lmdb/branch/master) |
-| UNIX | ``release`` | [![release](https://travis-ci.org/dw/py-lmdb.png?branch=release)](https://travis-ci.org/dw/py-lmdb/branches) |
-| Windows | ``release`` | [![release](https://ci.appveyor.com/api/projects/status/cx2sau39bufi3t0t/branch/release?svg=true)](https://ci.appveyor.com/project/dw/py-lmdb/branch/release) |
+| UNIX | ``master`` | [![master](https://travis-ci.org/jnwatson/py-lmdb.png?branch=master)](https://travis-ci.org/jnwatson/py-lmdb/branches) |
+| Windows | ``master`` | [![master](https://ci.appveyor.com/api/projects/status/cx2sau39bufi3t0t/branch/master?svg=true)](https://ci.appveyor.com/project/NicWatson/py-lmdb/branch/master) |
+| UNIX | ``release`` | [![release](https://travis-ci.org/jnwatson/py-lmdb.png?branch=release)](https://travis-ci.org/jnwatson/py-lmdb/branches) |
+| Windows | ``release`` | [![release](https://ci.appveyor.com/api/projects/status/cx2sau39bufi3t0t/branch/release?svg=true)](https://ci.appveyor.com/project/NicWatson/py-lmdb/branch/release) |
+
If you care whether the tests are passing, check out the repository and execute
the tests under your desired target Python release, as the Travis CI build has
diff --git a/appveyor.yml b/appveyor.yml
index 811e9ed..ddfc6ef 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -2,12 +2,13 @@ environment:
matrix:
- PYTHON: 'C:\Python27'
- PYTHON: 'C:\Python27-x64'
- - PYTHON: 'C:\Python33'
- PYTHON: 'C:\Python34'
- PYTHON: 'C:\Python35'
- PYTHON: 'C:\Python35-x64'
- PYTHON: 'C:\Python36'
- PYTHON: 'C:\Python36-x64'
+ - PYTHON: 'C:\Python37'
+ - PYTHON: 'C:\Python37-x64'
artifacts:
- {
diff --git a/docs/index.rst b/docs/index.rst
index 1db6d2d..26be992 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -12,7 +12,7 @@ This is a universal Python binding for the `LMDB 'Lightning' Database
<http://symas.com/mdb/>`_. Two variants are provided and automatically selected
during install: a `CFFI <https://cffi.readthedocs.io/en/release-0.5/>`_ variant
that supports `PyPy <http://www.pypy.org/>`_ and all versions of CPython >=2.7,
-and a C extension that supports CPython >=2.7 and >=3.3. Both variants
+and a C extension that supports CPython >=2.7 and >=3.4. Both variants
provide the same interface.
LMDB is a tiny database with some excellent properties:
@@ -369,7 +369,7 @@ Interface
+++++++++
.. py:function:: lmdb.open(path, **kwargs)
-
+
Shortcut for :py:class:`Environment` constructor.
.. autofunction:: lmdb.version