Skip to content

Commit

Permalink
Merge pull request #92 from epruesse/skbiofix
Browse files Browse the repository at this point in the history
Prevent skbio from causing import QtCore via matplotlib
  • Loading branch information
JTFouquier authored Sep 5, 2018
2 parents 22ee60f + 51b7ca8 commit 66f97b9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions scripts/ghost-tree
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
# The full license is in the LICENSE file, distributed with this software.
# ----------------------------------------------------------------------------

# Avoid importing QtCore via skbio importing matplotlib by
# specifying AGG as matplotlib backend:
import matplotlib
matplotlib.use("AGG")

import click
import skbio
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@
from setuptools import find_packages, setup
from glob import glob

__version__ = "0.2.0"
__version__ = "0.2.1"

classes = """
Development Status :: 1 - Planning
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Expand Down

0 comments on commit 66f97b9

Please sign in to comment.