-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make loading work with a
entryfile
entry in the manifest file (#53939)
also soft deprecate the `path` entry in project file in favour of using `entryfile` instead Fixes the Julia Base part of #53937
- Loading branch information
1 parent
6ea67a9
commit 5f4dec1
Showing
8 changed files
with
85 additions
and
24 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module ProjectPath | ||
|
||
greet() = print("Hello World!") | ||
|
||
end # module ProjectPath |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# This file is machine-generated - editing it directly is not advised | ||
|
||
julia_version = "1.12.0-DEV" | ||
manifest_format = "2.0" | ||
project_hash = "51ade905d618e4aa369bc869841376219cc36cb1" | ||
|
||
[[deps.ProjectPath]] | ||
deps = ["ProjectPathDep"] | ||
path = "." | ||
entryfile = "CustomPath.jl" | ||
uuid = "32833bde-7fc1-4d28-8365-9d01e1bcbc1b" | ||
version = "0.1.0" | ||
|
||
[[deps.ProjectPathDep]] | ||
path = "ProjectPathDep" | ||
entryfile = "CustomPath.jl" | ||
uuid = "f18633fc-8799-43ff-aa06-99ed830dc572" | ||
version = "0.1.0" |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name = "ProjectPath" | ||
uuid = "32833bde-7fc1-4d28-8365-9d01e1bcbc1b" | ||
entryfile = "CustomPath.jl" | ||
version = "0.1.0" | ||
|
||
[deps] | ||
ProjectPathDep = "f18633fc-8799-43ff-aa06-99ed830dc572" |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module ProjectPathDep | ||
|
||
greet() = print("Hello World!") | ||
|
||
end # module ProjectPathDep |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
name = "ProjectPathDep" | ||
uuid = "f18633fc-8799-43ff-aa06-99ed830dc572" | ||
version = "0.1.0" | ||
entryfile = "CustomPath.jl" |