-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add --file
option to jlpkg?
#4
Comments
Why not use Alternatively you could just use $ jlpkg add $(cat requirements.txt) |
I'd like to explain the ambiguity I said: We add items to When julia is only a part of the whole project, it's not so good to still use I think |
I mean, Pkg already supports JuliaProject.toml. |
Good to know that! I'm closing it now since I don't have any further questions. |
Hi,
I'm asking this because I'm writing some CI script in which I need to add a bunch of Julia packages to its base project (
v1.1
in my case).Instead of hard-coding the dependent package names in
.travis.yml
or.gitlab-ci.yml
, I want to hold them in either aProject.toml
orrequirements.txt
file.The usage in my mind is:
jlpkg --project=path --file=Project.toml # or jlpkg --project=path --file=requirements.txt
I prefer the pip way
requirements_julia.txt
sinceProject.toml
can be ambiguous when Julia is just one tool used in the whole project.How do you think?
The text was updated successfully, but these errors were encountered: