Skip to content
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

Build issue on phylopic #199

Merged
merged 2 commits into from
Aug 31, 2023
Merged
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
2 changes: 1 addition & 1 deletion Phylopic/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Phylopic"
uuid = "c889285c-44aa-4473-b1e1-56f5d4e3ccf5"
authors = ["Timothée Poisot <timothee.poisot@umontreal.ca>"]
version = "0.0.2"
version = "0.0.3"

[deps]
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
Expand Down
7 changes: 2 additions & 5 deletions Phylopic/src/Phylopic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,8 @@ include("ping.jl")
@assert isnothing(Phylopic.ping())

# We put the buildnumber in a const to avoid calling it multiple times -- this is a required
# parameter for a large number of queries (most of the queries, in fact), so it makes sense
# to get it as a const ASAP
const buildnumber = Phylopic.build()
# TODO: allow an environmental variable to specify a different build version for
# reproducibility
# parameter for a large number of queries (most of the queries, in fact)
buildnumber = Phylopic.build()

# The autocomplete endpoint is meant to give an overview of possible names starting from
# a stem - this is not necessarilly going to give all of the names, and I am not sure why
Expand Down
Loading