Skip to content

Commit

Permalink
Prepare changelog for 4.3.12 release
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Mar 6, 2019
1 parent 6eb4725 commit 138a4a1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Changelog
=========
### 4.3.12 - March 6, 2019 - hot fix release
- Fix error caused when virtual environment not detected

### 4.3.11 - March 6, 2019 - hot fix release
- Fixed issue #876: confused by symlinks pointing to virtualenv gives FIRSTPARTY not THIRDPARTY
- Fixed issue #873: current version skips every file on travis
Expand Down
2 changes: 1 addition & 1 deletion isort/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
from . import settings # noqa: F401
from .isort import SortImports # noqa: F401

__version__ = "4.3.11"
__version__ = "4.3.12"
3 changes: 2 additions & 1 deletion isort/finders.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ def __init__(self, config, sections):

# virtual env
self.virtual_env = self.config.get('virtual_env') or os.environ.get('VIRTUAL_ENV')
self.virtual_env = os.path.realpath(self.virtual_env)
if self.virtual_env:
self.virtual_env = os.path.realpath(self.virtual_env)
self.virtual_env_src = False
if self.virtual_env:
self.virtual_env_src = '{0}/src/'.format(self.virtual_env)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
readme = f.read()

setup(name='isort',
version='4.3.11',
version='4.3.12',
description='A Python utility / library to sort Python imports.',
long_description=readme,
author='Timothy Crosley',
Expand Down

0 comments on commit 138a4a1

Please sign in to comment.