Skip to content

Commit

Permalink
Fix deprecated qualifier keys in setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Mar 30, 2021
1 parent 64888b6 commit 8bf3a19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def inspector(app, what, name, obj, options, signature, return_annotation):
"navbar_pagenav": False,
# A list of tuples containing pages or urls to link to.
"navbar_links": [
("GitHub", _parser.get("metadata", "home-page").strip(), True)
("GitHub", _parser.get("metadata", "home_page").strip(), True)
] + [
(k, v, True) for k, v in project_urls.items()
if k not in {"Documentation", "Changelog", "Bug Tracker"}
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
name = fastobo
version = 0.10.0
author = Martin Larralde
author-email = martin.larralde@embl.de
home-page = https://github.com/fastobo/fastobo-py
author_email = martin.larralde@embl.de
home_page = https://github.com/fastobo/fastobo-py
description = Faultless AST for Open Biomedical Ontologies in Python.
long-description = file: README.md
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
platform = any
Expand Down

0 comments on commit 8bf3a19

Please sign in to comment.