-
Notifications
You must be signed in to change notification settings - Fork 94
add Manifest and Project files #556
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #556 +/- ##
=======================================
Coverage 95.59% 95.59%
=======================================
Files 47 47
Lines 4787 4787
=======================================
Hits 4576 4576
Misses 211 211 Continue to review full report at Codecov.
|
Why do we have so much entries in Manifest.toml ? Is that Compat dependencies ? |
yeah I think so (it was automatically generated by pkg) |
Hold off on merging, I'd like to take a look first.
…On Sat, Nov 3, 2018, 10:43 Benoît Legat ***@***.*** wrote:
***@***.**** approved this pull request.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#556 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABp0M7YB0CsLLA2QMjHWusY5KJfwy7kTks5uraubgaJpZM4YMh91>
.
|
|
||
[deps] | ||
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20" | ||
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" |
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.
Where/why do we need Unicode
?
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.
I'm not sure, pkg told me to add it. Worth investigating
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.
Do we actually need a manifest file? I don't understand the purpose for registered packages where the package manager will resolve dependencies.
deps = ["Base64", "Dates", "DelimitedFiles", "Distributed", "InteractiveUtils", "LibGit2", "Libdl", "LinearAlgebra", "Markdown", "Mmap", "Pkg", "Printf", "REPL", "Random", "Serialization", "SharedArrays", "Sockets", "SparseArrays", "Statistics", "Test", "UUIDs", "Unicode"] | ||
git-tree-sha1 = "2d9e14d19bad3f9ad5cc5e4cffabc3cfa59de825" | ||
uuid = "34da2185-b29b-5c13-b0c7-acf172513d20" | ||
version = "1.3.0" |
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.
What is the procedure for maintaining this file? Do we have to manually Pkg.update()
when Compat gets updated?
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.
Manifest.toml
gets updated automatically when you run Pkg
operations locally in this project.
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.
So yes, this requires manual updates. In what workflow do you need a manifest file for the package? Pkg.test
doesn't require it.
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.
I use a Manifest.toml
so that my travis builds against JuMP master. I couldn't figure out how to do this in Project.toml
:
https://github.com/odow/Kokako.jl/blob/d6e48925b450de46f3fa17adf494c10deca59471/Manifest.toml#L86-L92
@@ -0,0 +1,7 @@ | |||
name = "MathOptInterface" | |||
uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" | |||
version = "0.6.2" |
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.
How does this version get updated when we tag a new MOI?
name = "MathOptInterface" | ||
uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" | ||
version = "0.6.2" | ||
|
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.
Missing a compatibility section specifying the allowed versions of Compat and julia.
I have all the same questions. And yes perhaps we don't need the Manifest. Anyone feel free to modify or replace this PR. Probably worth pinging Pkg3 devs on Slack. |
Closing in favor of #714 |
to make running tests with latest Julia easy