Skip to content

Commit

Permalink
update bioregistry and curies packages
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed Apr 10, 2023
2 parents d2dd67d + b616759 commit 6da38a6
Show file tree
Hide file tree
Showing 18 changed files with 2,646 additions and 1,671 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9' ]
python-version: [ "3.11", "3.7" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9' ]
python-version: [ "3.11", "3.7" ]

steps:

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ notebooks/api-key.txt
.venv
.tox/
.coverage
.DS_Store
19 changes: 10 additions & 9 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@
from datetime import date

from prefixmaps import __version__

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'prefixmaps'
project = "prefixmaps"
copyright = f"{date.today().year}, Chris Mungall"
author = 'Chris Mungall'
author = "Chris Mungall"
release = __version__

# -- General configuration ---------------------------------------------------
Expand All @@ -25,7 +26,7 @@
"sphinx_rtd_theme",
"sphinx_click",
"sphinx_autodoc_typehints",
"myst_parser"
"myst_parser",
]

# generate autosummary pages
Expand All @@ -46,19 +47,19 @@
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

templates_path = ['_templates']
templates_path = ["_templates"]

source_suffix = {
'.rst': 'restructuredtext',
'.txt': 'markdown',
'.md': 'markdown',
".rst": "restructuredtext",
".txt": "markdown",
".md": "markdown",
}

# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]

# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
Expand Down
Loading

0 comments on commit 6da38a6

Please sign in to comment.