Skip to content

Commit

Permalink
Build issue on phylopic (#199)
Browse files Browse the repository at this point in the history
* Update Phylopic.jl

* Update Project.toml
  • Loading branch information
tpoisot authored Aug 31, 2023
1 parent b121124 commit 9d72e0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
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

2 comments on commit 9d72e0e

@tpoisot
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register subdir="Phylopic"

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request created: JuliaRegistries/General/90568

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a Phylopic-v0.0.3 -m "<description of version>" 9d72e0e3ad60b36934ccd856111c8f73954e8bb9
git push origin Phylopic-v0.0.3

Please sign in to comment.