-
Notifications
You must be signed in to change notification settings - Fork 10
Update package format to julia 1.x #11
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
Changes from all commits
340fc28
b65f84c
fcd684c
ab25c04
e071a09
1b0df2a
c77f5a8
41de9f0
31d813d
7933b01
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
environment: | ||
matrix: | ||
- julia_version: 1.0 | ||
- julia_version: 1 | ||
- julia_version: nightly | ||
|
||
platform: | ||
- x86 # 32-bit | ||
- x64 # 64-bit | ||
|
||
branches: | ||
only: | ||
- master | ||
- /release-.*/ | ||
|
||
notifications: | ||
- provider: Email | ||
on_build_success: false | ||
on_build_failure: false | ||
on_build_status_changed: false | ||
|
||
install: | ||
- ps: iex ((new-object net.webclient).DownloadString("https://github.com/raw/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) | ||
|
||
build_script: | ||
- echo "%JL_BUILD_SCRIPT%" | ||
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" | ||
|
||
test_script: | ||
- echo "%JL_TEST_SCRIPT%" | ||
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*.jl.cov | ||
*.jl.*.cov | ||
*.jl.mem | ||
Manifest.toml |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,8 @@ os: | |
- linux | ||
- osx | ||
julia: | ||
- 0.6 | ||
- 1.0 | ||
- 1.3 | ||
- nightly | ||
notifications: | ||
email: false | ||
|
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
@@ -0,0 +1,15 @@ | ||||
name = "DeepDiffs" | ||||
uuid = "ab62b9b5-e342-54a8-a765-a90f495de1a6" | ||||
keywords = ["diff"] | ||||
license = "MIT" | ||||
desc = "Compute and pretty-print diffs for data structures like arrays and dictionaries" | ||||
version = "1.1.1" | ||||
|
||||
[compat] | ||||
julia = "1" | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Double check for conditional code based upon the version like: Line 17 in cb5550b
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressed |
||||
|
||||
[extras] | ||||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||||
|
||||
[targets] | ||||
test = ["Test"] |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[deps] | ||
DeepDiffs = "ab62b9b5-e342-54a8-a765-a90f495de1a6" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" |
Uh oh!
There was an error while loading. Please reload this page.