Skip to content

Commit

Permalink
#53 Merge pull request from deshima-dev/astropenguin/issue52
Browse files Browse the repository at this point in the history
Release v0.7.0
  • Loading branch information
astropenguin authored Jun 13, 2022
2 parents 2148b12 + df6ff66 commit faede67
Show file tree
Hide file tree
Showing 8 changed files with 306 additions and 304 deletions.
10 changes: 5 additions & 5 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"name": "decode",
"build": {
"context": "..",
"dockerfile": "Dockerfile",
"dockerfile": "Dockerfile"
},
"postCreateCommand": "poetry install",
"extensions": [
"github.vscode-pull-request-github",
"mhutchie.git-graph",
"ms-python.python",
"streetsidesoftware.code-spell-checker",
"tamasfe.even-better-toml",
"tamasfe.even-better-toml"
],
"settings": {
"files.insertFinalNewline": true,
Expand All @@ -21,7 +21,7 @@
"[python]": {
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 4,
},
},
"editor.tabSize": 4
}
}
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018-2021 DESHIMA software team
Copyright (c) 2018-2022 DESHIMA software team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# De:code

[![PyPI](https://img.shields.io/pypi/v/decode.svg?label=PyPI&style=flat-square)](https://pypi.org/pypi/decode/)
[![Python](https://img.shields.io/pypi/pyversions/decode.svg?label=Python&color=yellow&style=flat-square)](https://pypi.org/pypi/decode/)
[![Test](https://img.shields.io/github/workflow/status/deshima-dev/decode/Test?logo=github&label=Test&style=flat-square)](https://github.com/deshima-dev/decode/actions)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?label=License&style=flat-square)](LICENSE)
[![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.3384216-blue?style=flat-square)](https://doi.org/10.5281/zenodo.3384216)
[![Release](https://img.shields.io/pypi/v/decode?label=Release&color=cornflowerblue&style=flat-square)](https://pypi.org/pypi/decode/)
[![Python](https://img.shields.io/pypi/pyversions/decode?label=Python&color=cornflowerblue&style=flat-square)](https://pypi.org/pypi/decode/)
[![Downloads](https://img.shields.io/pypi/dm/decode?label=Downloads&color=cornflowerblue&style=flat-square)](https://pepy.tech/project/decode)
[![DOI](https://img.shields.io/badge/DOI-10.5281/zenodo.3384216-cornflowerblue?style=flat-square)](https://doi.org/10.5281/zenodo.3384216)
[![Tests](https://img.shields.io/github/workflow/status/deshima-dev/decode/Tests?label=Tests&style=flat-square)](https://github.com/deshima-dev/decode/actions/tests.yml)

DESHIMA code for data analysis

Expand Down
3 changes: 1 addition & 2 deletions decode/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# flake8: noqa
__version__ = "0.6.1"
__version__ = "0.7.0"
__author__ = "DESHIMA software team"


Expand Down
23 changes: 15 additions & 8 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
# Project information
# project information
author = "DESHIMA software team"
copyright = "2018-2021 DESHIMA software team"
copyright = "2018-2022 DESHIMA software team"


# General configuration
# general configuration
add_module_names = False
autodoc_typehints = "both"
autodoc_typehints_format = "short"
exclude_patterns = [
"_build",
"Thumbs.db",
".DS_Store",
]
extensions = [
"myst_parser",
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
"sphinx.ext.autosummary",
"sphinx.ext.napoleon",
"sphinx.ext.viewcode",
]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]


# Options for HTML output
html_static_path = ["_static"]
# options for HTML output
html_logo = "_static/logo.svg"
html_static_path = ["_static"]
html_theme = "pydata_sphinx_theme"
html_theme_options = {
"github_url": "https://github.com/deshima-dev/decode/",
Expand Down
Loading

0 comments on commit faede67

Please sign in to comment.