Skip to content

Add sources to all Project.tomls #4967

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Fixed issues with anisotropic markersizes (e.g. `(10, 50)`) causing anti-aliasing to become blurry in GLMakie and WGLMakie. [#4918](https://github.com/MakieOrg/Makie.jl/pull/4918)
- Added `direction = :y` option for vertical `band`s [#4949](https://github.com/MakieOrg/Makie.jl/pull/4949).
- Fixed line-ordering of `lines(::Rect3)` [#4954](https://github.com/MakieOrg/Makie.jl/pull/4954).
- Added `sources` section to all Project.tomls in the monorepo, so that `]dev GLMakie` will download the monorepo and automatically dev Makie and MakieCore. [#4967](https://github.com/MakieOrg/Makie.jl/pull/4967)

## [0.22.4] - 2025-04-11

Expand Down
3 changes: 3 additions & 0 deletions CairoMakie/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "Pkg"]

[sources]
Makie = { path = ".." }
3 changes: 3 additions & 0 deletions GLMakie/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,6 @@ Printf = "1.0, 1.6"
ShaderAbstractions = "0.5"
StaticArrays = "0.12, 1.0"
julia = "1"

[sources]
Makie = { path = ".." }
Copy link
Collaborator

@t-bltg t-bltg May 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should

[sources]
ReferenceTests = {path = "../../ReferenceTests"}

be added to GLMakie/test/Project.toml (same remark for CairoMakie/test and WGLMakie/test) ?

I think ReferenceTests = "d37af2e0-5618-4e00-9939-d430db56ee94" can also be removed from GLMakie/Project.toml (only used in tests, it is a leftover ...).

3 changes: 3 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,6 @@ TriplotBase = "=0.1.0"
UnicodeFun = "0.4"
Unitful = "1"
julia = "1.3"

[sources]
MakieCore = { path = "MakieCore" }
3 changes: 3 additions & 0 deletions RPRMakie/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]

[sources]
Makie = { path = ".." }
3 changes: 3 additions & 0 deletions ReferenceTests/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
julia = "1.3"

[sources]
Makie = { path = ".." }
3 changes: 3 additions & 0 deletions WGLMakie/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "MeshIO"]

[sources]
Makie = { path = ".." }
Loading