You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we do this, what is the upgrade path for existing users when we eventually switch to 3.7? We don't want to tell everyone to Conda.free("python=3.6") manually…
One option would be to use MINICONDA_VERSION="3.6", since this string is now saved between updates … if we notice that this number has increased we could free the old version.
The easiest (non?) solution is to just downgrade Python to 3.6 without pinning. It's then almost equivalent to the current situation before this PR except that it reduces the probability of accidental downgrade. Python would be automatically upgraded by Conda.add(package) once 3.6 becomes too old to install the package.
If you want a more controlled solution then I guess we can check Python version in build.jl or __init__? Automatic upgrade in build.jl is probably rather too brutal but maybe we can print something like "Your Python version is becoming old. Run Codna.update() to upgrade Python and Python packages."
tkf
added a commit
to tkf/PyCall.jl
that referenced
this pull request
Nov 1, 2018
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes #127
Checking with PyCall.jl: