Skip to content

Commit e2b9566

Browse files
authored
Organize tests (#100)
* Organize tests into their own directory * Update changelog
1 parent 3590dfb commit e2b9566

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
# Changelog
22

3+
- **0.9.0**
4+
- Features:
5+
- `Neo4jExecutor#create_index`. This function call adds an index to the database on the node attribute specified, in order to improve query performance (#95)
6+
- `dotmotif.ingest.EdgelistConverter` now supports importing from a dask or pandas dataframe edgelist in addition to files on disk (#99)
7+
- Chores:
8+
- Put lingering top-level tests into their own directory (#100)
39
- **0.8.1**
410
- Chores:
511
- Upgraded to the latest version of Tamarind, with Neo4j v4.2 support (#93)
612
- Upgraded to the latest version of GrandIso, v1.1.0
7-
- Features:
8-
- `Neo4jExecutor#create_index`. This function call adds an index to the database on the node attribute specified, in order to improve query performance (#95)
9-
- `dotmotif.ingest.EdgelistConverter` now supports importing from a dask or pandas dataframe edgelist in addition to files on disk (#99)
1013
- **0.8.0** (January 12 2021)
1114
- Features:
1215
- Add `!contains` and `!in` attribute constraints to the parser. (#88)

dotmotif/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from .executors.GrandIsoExecutor import GrandIsoExecutor
3131
from .executors.Neo4jExecutor import Neo4jExecutor
3232

33-
__version__ = "0.8.0"
33+
__version__ = "0.9.0"
3434

3535
DEFAULT_MOTIF_PARSER = ParserV2
3636

dotmotif/tests/__init__.py

Whitespace-only changes.
File renamed without changes.

dotmotif/test_utils.py renamed to dotmotif/tests/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from unittest import TestCase
22
import networkx as nx
3-
from .utils import untype_string
4-
from . import dotmotif
3+
from ..utils import untype_string
4+
from .. import dotmotif
55
from tempfile import NamedTemporaryFile
66

77

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
twine upload dist/*
1212
"""
1313

14-
VERSION = "0.8.0"
14+
VERSION = "0.9.0"
1515

1616
here = os.path.abspath(os.path.dirname(__file__))
1717
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f:

0 commit comments

Comments
 (0)