Skip to content

Commit

Permalink
Delete workaround for compat with extensions
Browse files Browse the repository at this point in the history
To allow the BioSequences FASTX extension to be supported with Julia <1.9,
a few hacks had to be done.
Remove these hacks, as we now longer support these versions.
  • Loading branch information
jakobnissen committed Oct 17, 2024
1 parent 8199a40 commit d62ef82
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ BioSequences = "7e6ae17a-c86d-528c-b3b9-7f778a29fe59"
[deps]
Automa = "67c07d97-cdcb-5c2c-af73-a7f9c32a568b"
BioGenerics = "47718e42-2ac5-11e9-14af-e5595289c2ea"
BioSequences = "7e6ae17a-c86d-528c-b3b9-7f778a29fe59"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
StringViews = "354b36f9-a18e-4713-926e-db85100087ba"
TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
Expand Down
5 changes: 1 addition & 4 deletions src/FASTX.jl
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,7 @@ const FASTQReader = FASTQ.Reader
const FASTAWriter = FASTA.Writer
const FASTQWriter = FASTQ.Writer

if !isdefined(Base, :get_extension)
include("../ext/BioSequencesExt.jl")
end

include("../ext/BioSequencesExt.jl")
include("workload.jl")

export
Expand Down

0 comments on commit d62ef82

Please sign in to comment.