1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
75a9373303 Bumped version to 0.1.2
Some checks failed
Test and Package Python / Test (push) Failing after 19s
Test and Package Python / Package (push) Failing after 18s
2024-05-28 00:18:08 +02:00
dcf7424438
Updated .gitignore 2024-05-28 00:13:56 +02:00
3 changed files with 18 additions and 4 deletions

18
.gitignore vendored
View File

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

View File

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

View File

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