Skip to content

Commit

Permalink
Merge pull request #23 from brittonsmith/docfix
Browse files Browse the repository at this point in the history
[bugfix] Fix version check in setup.
  • Loading branch information
Nathan Goldbaum authored Aug 8, 2018
2 parents 789b45a + 69b166d commit f833acd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
from distutils.version import LooseVersion
import pkg_resources

if sys.version_info < (2, 7) or (3, 0) < sys.version_info < (3, 6):
if sys.version_info < (2, 7) or (3, 0) < sys.version_info < (3, 5):
print("yt_astro_analysis currently supports Python 2.7 or versions " +
"newer than Python 3.6 certain features may fail unexpectedly " +
"newer than Python 3.5. Certain features may fail unexpectedly " +
"and silently with older versions.")
sys.exit(1)

Expand Down

0 comments on commit f833acd

Please sign in to comment.