Skip to content

Commit

Permalink
Fix packaging bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcauliffe committed Aug 17, 2021
1 parent c4eb2c2 commit 776a0d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
MOCK_MODULES = ['textgrid', 'textgrid.textgrid',
'py2neo', 'py2neo.database', 'py2neo.database.status',
'py2neo.packages', 'py2neo.packages.httpstream',
'py2neo.packages.httpstream.http',
'py2neo.packages.httpstream.http', 'neo4j',
'sqlalchemy', 'influxdb', 'influxdb.exceptions',
'sqlalchemy.orm', 'sqlalchemy.sql', 'sqlalchemy.sql.expression',
'sqlalchemy.ext', 'sqlalchemy.ext.hybrid','sqlalchemy.ext.declarative', 'sqlalchemy.ext.orderinglist',
Expand Down
2 changes: 1 addition & 1 deletion polyglotdb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__ver_major__ = 1
__ver_minor__ = 1
__ver_patch__ = 2
__ver_patch__ = 3
__ver_tuple__ = (__ver_major__, __ver_minor__, __ver_patch__)
__version__ = "%d.%d.%d" % __ver_tuple__

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import os
from setuptools import setup
from setuptools.command.test import test as TestCommand
import codecs


def readme():
Expand Down

0 comments on commit 776a0d0

Please sign in to comment.