BioJulia / Automa.jl

A julia code generator for regular expressions
Other
188 stars 15 forks source link

Bump TranscodingStreams to 0.11 #135

Closed nhz2 closed 3 months ago

nhz2 commented 3 months ago

TranscodingStreams release notes: https://github.com/JuliaIO/TranscodingStreams.jl/releases/tag/v0.11.0

The seekend and Memory changes do not affect this package.

The changes to eof may mean that Automa.jl may error differently when accidentally trying to read a closed stream, but I don't think this changes the API of Automa.jl.

nhz2 commented 3 months ago

Seems like setup-julia is trying to install an ARM64 version of julia 1.6. Maybe updating setup-julia will fix it?

jakobnissen commented 3 months ago

It's because the unit tests YAML file specifies running Julia 1.6 on macos-latest, but the latest versions of MacOS only run on arm. See https://github.com/BioJulia/FASTX.jl/blob/master/.github/workflows/UnitTesting.yml.

Maybe for Automa we also want to test 1.6 on an older version of MacOs on x86, but I don't know how to specify that

jakobnissen commented 3 months ago

Thanks for the contribution, @nhz2 !