Skip to content

Commit

Permalink
call colorama.init (see #16)
Browse files Browse the repository at this point in the history
to avoid issues on windows
  • Loading branch information
rvalieris committed Jan 17, 2022
1 parent 874608d commit 5dc5e93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion conda-tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
import os
import sys
import subprocess
import colorama
from colorama import Fore, Back, Style
colorama.init()

import conda.exports
import conda.api
import networkx

__version__ = '1.0.3'
__version__ = '1.0.4'

# The number of spaces
TABSIZE = 3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
shutil.copyfile('conda-tree.py', 'conda_tree.py')

setup(name='conda-tree',
version='1.0.3',
version='1.0.4',
description='conda dependency tree helper',
author='Renan Valieris',
url='https://github.com/rvalieris/conda-tree',
Expand Down

0 comments on commit 5dc5e93

Please sign in to comment.