Skip to content

Commit

Permalink
Merge pull request #1220 from msarahan/update_perl_and_r_vers
Browse files Browse the repository at this point in the history
update perl (5.20.3) and R (3.3.1) default versions
  • Loading branch information
msarahan authored Aug 17, 2016
2 parents 6ae62e4 + 9284378 commit 84d0280
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda_build/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Config(object):
__package__ = __package__
__doc__ = __doc__

CONDA_PERL = os.getenv('CONDA_PERL', '5.18.2')
CONDA_PERL = os.getenv('CONDA_PERL', '5.20.3')
CONDA_LUA = os.getenv('CONDA_LUA', '5.2')
CONDA_PY = int(os.getenv('CONDA_PY', default_python.replace('.',
'')).replace('.', ''))
Expand All @@ -31,7 +31,7 @@ class Config(object):
CONDA_NPY = None
else:
CONDA_NPY = int(CONDA_NPY.replace('.', '')) or None
CONDA_R = os.getenv("CONDA_R", "3.2.2")
CONDA_R = os.getenv("CONDA_R", "3.3.1")

@property
def PY3K(self):
Expand Down

0 comments on commit 84d0280

Please sign in to comment.