1
0

Compare commits

..

No commits in common. "75a9373303879ed458b9a65be5468a8bf4c13a60" and "9c6409dc57105b686325f2fe343d53947537c93b" have entirely different histories.

3 changed files with 4 additions and 18 deletions

18
.gitignore vendored
View File

@ -1,18 +1,4 @@
# Program specific
/output/
/deps/
/secrets/
/private_deps/
/data/
# Python
__pycache__/
/build/
/dist/
*.egg-info/
# Python, Testing
/test/secrets.py
/.coverage
/.hypothesis/
/htmlcov/
dist/
*.sqlite

View File

@ -1 +1 @@
__version__ = '0.1.2'
__version__ = "0.1.1"

View File

@ -5,7 +5,7 @@ import datagraph.wikidata_ext
import requests_cache
datagraph.wikidata_ext.REQUEST_SESSION = requests_cache.CachedSession('output/testing')
datagraph.wikidata_ext.REQUEST_SESSION = requests_cache.CachedSession('testing')
def test_version():
assert datagraph.__version__ is not None