Skip to content

Commit 4ee5099

Browse files
committed
Remove default limit of 100 from simple queries
1 parent 0827a3e commit 4ee5099

18 files changed

+636
-483
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ python:
88
services:
99
- docker
1010
before_install:
11-
- docker run --name arango -d -p 8529:8529 -e ARANGO_ROOT_PASSWORD=passwd arangodb/arangodb:3.3.8
11+
- docker run --name arango -d -p 8529:8529 -e ARANGO_ROOT_PASSWORD=passwd arangodb/arangodb:3.3.9
1212
- docker cp tests/static/service.zip arango:/tmp/service.zip
1313
install:
1414
- pip install flake8 mock pytest pytest-cov python-coveralls sphinx sphinx_rtd_theme
1515
- pip install .
1616
script:
1717
- python -m flake8
18-
- python -m sphinx -b doctest docs build
19-
- python -m sphinx -b html -W docs build
18+
- python -m sphinx -b doctest docs docs/_build
19+
- python -m sphinx -b html -W docs docs/_build
2020
- py.test --complete -s -v --cov=arango
2121
after_success:
2222
- coveralls

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Announcements
3838
=============
3939

4040
- Python-arango version `4.0.0`_ is now out!
41-
- Please see the releases_ page for details on latest updates.
41+
- Please see the releases_ page for latest updates.
4242

4343
Features
4444
========
@@ -161,7 +161,7 @@ Here is another example with graphs:
161161
strategy='breadthfirst'
162162
)
163163
164-
Check out the documentation_ for more details.
164+
Check out the documentation_ for more information.
165165

166166
Contributing
167167
============

0 commit comments

Comments
 (0)