Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

JuliaLang/julia

jishnub pushed 30 commits to jishnub/onetofirst JuliaLang/julia
  • Revert "Extensions: make loading of extensions independent of what packages are in the sysimage (#52841)" This rever... e3f2f6b
  • fix lookup when extension is in `[deps]` ad1dc39
  • REPL: fix brace detection when ' is used for transpose (#56252) 1c67d0c
  • remove new references to explicit_loaded_modules 319ee70
  • Add basic infrastructure for binding replacement (#56224) Now that I've had a few months to recover from the slog of... 8bdacc3
  • Specialize `haszero` for `Union{Missing,<:Number}` (#56169) Since `zero(::Union{Missing,T})` calls `zero(T)` interna... 82e0e28
  • Add small tweaks to juliac script and misc fixes to juliac (#56119) This comments out an assert thats currently faul... 6d7e29f
  • Warn about negative size in array construction (#56262) After this, ```julia julia> zeros(-1) ERROR: ArgumentErro... 11ef8eb
  • Revert "Reroute` (Upper/Lower)Triangular * Diagonal` through `__muldiag`" (#56267) Reverts JuliaLang/julia#55984 Th... cba1cc0
  • precompile: add error for using require_stdlib during precompile (#56233) This function could accidentally add a dep... 2188ba4
  • Fix indexing for block triangular matrices (#56168) Assuming that block matrices contain tiled elements (i.e. all el... f976541
  • trimming: don't abort where we used to resolve dynamic calls (#56271) This call resolution code was deleted in #5617... 1ba035d
  • inference: fix inference error from constructing invalid `TypeVar` (#56264) - fixes JuliaLang/julia#56248 08d11d0
  • add Pkg 1.11 news to HISTORY.md (#56277) Backport already on https://github.com/JuliaLang/julia/pull/56228 36593fd
  • Remove NewPM pass exports. (#56269) All ecosystem consumers have switched to the string-based API. 31f7df6
  • Revert "Extensions: make loading of extensions independent of what packages are in the sysimage (#52841) (#56234) Th... 5b677a1
  • jitlayers: use std::make_tuple instead of tuple constructor (#56287) this should be safer for the type deduction and... 7d4b2b7
  • move time_imports and trace_* macros to Base but remain owned by InteractiveUtils (#56276) This way all packages can... ab22f98
  • lowering: split `finally` blocks for exceptional control-flow (#55876) This change duplicates `finally` blocks in lo... 6de6b46
  • add recompile comment in --trace-compile in terminal color mode too (#56275) Update: Just adds the comment in color ... e4101b7
  • and 10 more ...

View on GitHub

nsajko created a comment on a pull request on JuliaLang/julia
OK, I hope this won't confuse NanoSoldier, then. Here are the tests I wrote: ```julia @testset "`gcd`, `lcm` binary operation properties" begin function test_commutativity(f, a, b) ...

View on GitHub

IanButterworth created a review comment on a pull request on JuliaLang/julia
Maybe that can be reused, yeah. The timer added here seems lower cost than atomic fetches etc. but perhaps it's overcounting.

View on GitHub

IanButterworth created a review on a pull request on JuliaLang/julia

View on GitHub

LilithHafner created a comment on a pull request on JuliaLang/julia
We should probably keep `filesize` in sync with all of `ispath`, `isfifo`, `ischardev`, `isdir`, `isblockdev`, `isfile`, `issocket`, `issetuid`, `issetgid`, `issticky`, `uperm`, `gperm`, `operm`...

View on GitHub

maleadt created a comment on a pull request on JuliaLang/julia
> I imagine that we at least want something coming out of CI to put it on the downloads page. I would think so as well. However, lacking any prebuilt binaries, doing such a build takes way to lo...

View on GitHub

zvnkk created a comment on an issue on JuliaLang/julia
I added Depot path to move packages from c to d and now i have this error

View on GitHub

LilithHafner pushed 1 commit to master JuliaLang/julia
  • Improve doc example: Extracting the type parameter from a super-type (#55983) Documentation describes the correct wa... 6c70bf7

View on GitHub

LilithHafner closed a pull request on JuliaLang/julia
Improve doc example: Extracting the type parameter from a super-type
Documentation describes the correct way of extracting the element type of a supertype: https://docs.julialang.org/en/v1/manual/methods/#Extracting-the-type-parameter-from-a-super-type However, ...
LilithHafner created a comment on a pull request on JuliaLang/julia
Thanks!

View on GitHub

LilithHafner pushed 1 commit to master JuliaLang/julia

View on GitHub

LilithHafner created a comment on a pull request on JuliaLang/julia
It's not standard but it is perfectly fine to make a PR from a master branch. See, for example, #38823, #39002, #39147, #39312, #39331, #39654, #39710, #39737, #39850, #39897, #40253, #40391, #4045...

View on GitHub

NHDaly created a review comment on a pull request on JuliaLang/julia
@IanButterworth: Can you help me understand why we have so many different variants of measuring this metric (compilation time)? I was surprised to see we had to add a new start/stop measurement ...

View on GitHub

NHDaly created a review on a pull request on JuliaLang/julia
Love this feature! šŸ˜ Thanks Ian! :) We're also using this in the compilation caching effort that @kpamnany and @Drvi are implementing for RelationalAI, to prioritize which methodinstances we pre...

View on GitHub

NHDaly created a review on a pull request on JuliaLang/julia
Love this feature! šŸ˜ Thanks Ian! :) We're also using this in the compilation caching effort that @kpamnany and @Drvi are implementing for RelationalAI, to prioritize which methodinstances we pre...

View on GitHub

d-netto pushed 1 commit to dcn-all-task-profiler JuliaLang/julia

View on GitHub

albinahlback closed an issue on JuliaLang/julia
pkg-config files point to the wrong directory for Julia binaries
As a developer of a library written in C, one can utilize pkg-config during the configuration process to obtain the correct set of flags for a dependency. In my case, I help to maintain [FLINT](htt...
zvnkk created a comment on an issue on JuliaLang/julia
same

View on GitHub

gbaraldi created a comment on an issue on JuliaLang/julia
Can you open this issue in https://github.com/JuliaPackaging/Yggdrasil. This is where we build those binaries

View on GitHub

LilithHafner created a comment on an issue on JuliaLang/julia
Is this what you mean by definition 2? > d is a GCD of a and b if > - d divides both a and b; and > - If dā€² also divides both a and b, then dā€² divides d. And > a divides b if there exists an in...

View on GitHub

LilithHafner opened a pull request on JuliaLang/julia
Type `Base.is_interactive` as `Bool`
Before, typing `Base.is_interactive = 7` would cause weird internal REPL failures down the line. Now, it throws an InexactError and has no impact.
IanButterworth created a review on a pull request on JuliaLang/julia

View on GitHub

LilithHafner created a branch on JuliaLang/julia

LilithHafner-patch-1 - The Julia Programming Language

ViralBShah created a comment on a pull request on JuliaLang/julia
@ararslan Is this something that should be added to Tier 3 support on the downloads page?

View on GitHub

jishnub created a review comment on a pull request on JuliaLang/julia
Actually, the constant propagation seems to work in this function even without the aggressive propagation hint.

View on GitHub

jishnub created a review on a pull request on JuliaLang/julia

View on GitHub

fredrikekre created a comment on a pull request on JuliaLang/julia
These types of PRs are usually rejected with a pointer to StaticArrays.jl.

View on GitHub

ViralBShah created a comment on a pull request on JuliaLang/julia
Does it make sense to provide these binaries on the downloads page or is it too early for that? I imagine that we at least want something coming out of CI to put it on the downloads page.

View on GitHub

giordano created a comment on an issue on JuliaLang/julia
Yes, but as [Stefan said above](https://github.com/JuliaLang/julia/issues/33409#issuecomment-638308843), it's always problematic to add new binary libraries as julia deps, also because we're stuck ...

View on GitHub

Load more