playing around with dependencies

This commit is contained in:
Valentin Boettcher 2023-03-10 13:58:54 -05:00
parent b08a4d74a0
commit 73be9d43cc
No known key found for this signature in database
GPG key ID: E034E12B7AF56ACE
4 changed files with 7 additions and 16 deletions

View file

@ -2,7 +2,7 @@
julia_version = "1.8.5" julia_version = "1.8.5"
manifest_format = "2.0" manifest_format = "2.0"
project_hash = "a11ebb6caafde5f3a8467bc297dda9fe2be1e4cd" project_hash = "d287b7dceaac3f29ac822b26e7f57acdd157b5e0"
[[deps.ArgTools]] [[deps.ArgTools]]
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f" uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"

View file

@ -1,7 +1,9 @@
name = "Reservoir Engineering" name = "Reservoir Engineering"
authors = ["Valentin Boettcher"] authors = ["Valentin Boettcher"]
[compat]
julia = "1.8.5"
DrWatson = "2.12.1"
[deps] [deps]
DrWatson = "634d3b9d-ee7a-5ddf-bec9-22491ea816e1" DrWatson = "634d3b9d-ee7a-5ddf-bec9-22491ea816e1"
[compat]
DrWatson = "2.12.1"
julia = "1.8.5"

View file

@ -2,7 +2,7 @@ using DrWatson
@quickactivate "Reservoir Engineering" @quickactivate "Reservoir Engineering"
# Here you may include files from the source directory # Here you may include files from the source directory
include(srcdir("dummy_src_file.jl")) include(srcdir("Looping"))
println( println(
""" """

View file

@ -1,11 +0,0 @@
"""
dummy_project_function(x, y) z
Dummy function for illustration purposes.
Performs operation:
```math
z = x + y
```
"""
function dummy_project_function(x, y)
return x + y
end