Skip to content

Commit 4939bb1

Browse files
committed
Added additional pymongo pass-thoughs in the base __init__ for convenience: Collation, GEOSPHERE, TEXT
1 parent f2f7598 commit 4939bb1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

mongoframes/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
from mongoframes.frames import *
22
from mongoframes.pagination import *
33
from mongoframes.queries import *
4+
from pymongo.collation import Collation
45
from pymongo import (
56
IndexModel,
67
ASCENDING as ASC,
7-
DESCENDING as DESC
8+
DESCENDING as DESC,
9+
GEOSPHERE,
10+
TEXT
811
)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Versions should comply with PEP440. For a discussion on single-sourcing
2222
# the version across setup.py and the project code, see
2323
# https://packaging.python.org/en/latest/single_source_version.html
24-
version='1.2.8',
24+
version='1.2.9',
2525

2626
description='A fast unobtrusive MongoDB ODM for Python',
2727
long_description=long_description,

0 commit comments

Comments
 (0)