Skip to content

Commit

Permalink
Merge 584aaf8 into 7da0181
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed Oct 2, 2018
2 parents 7da0181 + 584aaf8 commit 7517445
Show file tree
Hide file tree
Showing 33 changed files with 2,124 additions and 967 deletions.
6 changes: 6 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[run]
omit =
# temporarily omit these files until we find out a way to bring
# them in remotely
lexmapr/ontofetch.py
lexmapr/ontohelper.py
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- "2.7"
- "3.6"
os:
- linux
Expand All @@ -12,9 +11,6 @@ git:
# TODO: remove these two settings after refactoring pipeline
env:
- PYTHONHASHSEED=0
matrix:
allow_failures:
- python: "2.7"

install:
- sudo apt-get update -qq
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ The main script file for processing is `bin/lexmapr`
- [inflection](https://pypi.org/project/inflection/)
- [wikipedia](https://pypi.org/project/wikipedia/)
- [python-dateutil](https://pypi.org/project/python-dateutil/)
- [rdflib](https://pypi.org/project/rdflib/)

## Usage

Expand Down
2 changes: 1 addition & 1 deletion bin/lexmapr
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if __name__ == '__main__':
help='Output file')
parser.add_argument('log_file', nargs='?', default=sys.stderr,
help='Log file')
parser.add_argument('-f', '--format', default='full',
parser.add_argument('-f', '--format', default='basic',
help='Output format')
parser.add_argument('--version', action='store_true', dest='version',
help='Prints version information.', required=False)
Expand Down
2 changes: 1 addition & 1 deletion lexmapr/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.1'
__version__ = '0.1.2'

0 comments on commit 7517445

Please sign in to comment.