Skip to content

Commit c17fc5f

Browse files
committed
Revamp the entire library for ArangoDB 3.x
1 parent 7fb23d6 commit c17fc5f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+13109
-6474
lines changed

Diff for: .gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@
55
*build/
66
*dist/
77
*.coverage
8+
.coveragerc
9+
.cache/
10+
tests/__pycache__/

Diff for: .travis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ language: python
22
sudo: false
33
python:
44
- "2.7"
5+
- "3.4"
6+
- "3.5"
57
before_install:
68
- "sh scripts/setup_arangodb.sh"
79
install:
810
- "pip install ."
9-
script: nosetests
10-
11+
script:
12+
- "py.test -v"

Diff for: LICENSE

+19-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
1-
Copyright (C) 2015 Joohwan Oh
1+
The MIT License (MIT)
22

3-
This program is free software; you can redistribute it and/or
4-
modify it under the terms of the GNU General Public License
5-
as published by the Free Software Foundation; either version 2
6-
of the License, or (at your option) any later version.
3+
Copyright (c) 2016 Joohwan Oh
74

8-
This program is distributed in the hope that it will be useful,
9-
but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11-
GNU General Public License for more details.
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
1211

13-
You should have received a copy of the GNU General Public License
14-
along with this program; if not, see <http://www.gnu.org/licenses/>.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
1514

16-
Email: joowani88@gmail.com
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+
23+
Email: joohwan.oh@outlook.com

0 commit comments

Comments
 (0)