Skip to content

Commit

Permalink
Remove inclusion of conda version on history file
Browse files Browse the repository at this point in the history
This will be handled on a separate PR.
  • Loading branch information
goanpeca authored Jun 15, 2018
1 parent 31d61c9 commit f899810
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions conda/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import time
import warnings

from . import __version__ as CONDA_VERSION
from .base.constants import DEFAULTS_CHANNEL_NAME
from .common.compat import ensure_text_type, iteritems, open, text_type
from .core.prefix_data import PrefixData, linked
Expand Down Expand Up @@ -348,7 +347,6 @@ def write_specs(self, remove_specs=(), update_specs=()):
fh.write("# remove specs: %s\n" % remove_specs)
if update_specs:
fh.write("# update specs: %s\n" % update_specs)
fh.write("# conda version: %s" % CONDA_VERSION)


if __name__ == '__main__':
Expand Down

0 comments on commit f899810

Please sign in to comment.