Skip to content

Commit

Permalink
Merge pull request #822 from untergeek/fix/821
Browse files Browse the repository at this point in the history
Fix/821
  • Loading branch information
untergeek committed Nov 22, 2016
2 parents 9bb4a87 + c09f395 commit 3af4678
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion curator/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.2.3'
__version__ = '4.2.3.post1'
13 changes: 13 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
Changelog
=========

4.2.3.post1 (22 November 2016)
------------------------------

This fix is `only` going in for ``pip``-based installs. There are no other code
changes.

**Bug Fixes**

* Fixed incorrect assumption of PyPI picking up dependency for certifi. It
is still a dependency, but should not affect ``pip`` installs with an error
any more. Reported in #821 (untergeek)


4.2.3 (21 November 2016)
------------------------

Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
import re
import sys
from setuptools import setup
import certifi

cert_file = certifi.where()

# Utility function to read from file.
def fread(fname):
Expand Down Expand Up @@ -35,6 +32,11 @@ def get_install_requires():
try:
### cx_Freeze ###
from cx_Freeze import setup, Executable
try:
import certifi
cert_file = certifi.where()
except ImportError:
cert_file = ''
# Dependencies are automatically detected, but it might need
# fine tuning.
buildOptions = dict(
Expand Down

0 comments on commit 3af4678

Please sign in to comment.