-
-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixes for 0.7 #671
Merged
Merged
fixes for 0.7 #671
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
507db29
0.7 compatibility (mostly)
stevengj f871e6a
update appveyor to test nightly too
stevengj adc6269
fix merge error
stevengj d1d65bb
missing compat in kernel.jl
stevengj 1d05a2c
REPL.REPLCompletions is now in the stdlib
stevengj 9bba2a6
don't force Compat into user notebooks
stevengj bbdebe9
fix more deprecations and a crash in heartbeat
stevengj b25a960
fix more 0.7 deprecations
appleparan a82da39
don't use uppercase STDIO on 0.7
stevengj d17896a
fix merge conflict
stevengj 46ea1b5
whitespace
stevengj 0338528
Add logging override for 0.7
staticfloat 23e5178
Fix stdout messages not being sent
staticfloat cbe06f3
fix empty try-catch deprecation
fredrikekre 10ddc7c
add Conda before using it
fredrikekre 543305e
fix deprecation from spawn
fredrikekre 6e73373
use Compat.AbstractDisplay directly
fredrikekre beb1cf3
Misc 0.7 changes
fredrikekre fd0beb4
replace global logger in init()
fredrikekre 0d07dbd
test explicit stdout/stderr printing
fredrikekre File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
*.un~ | ||
/build/ | ||
/deps/deps.jl | ||
/deps/build.log | ||
/deps/JUPYTER | ||
/deps/julia-* | ||
*.jl.*.cov |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ julia 0.6 | |
MbedTLS 0.4.3 | ||
JSON 0.17 | ||
ZMQ 0.6.0 | ||
Compat 0.41.0 | ||
Compat 0.68.0 | ||
Conda 0.1.5 |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can just be
clear_history(r::AbstractRange{<:Integer})
since we don't useT
.