Skip to content

Commit 1367ba2

Browse files
authored
Merge pull request #26 from sandialabs/update-docs
Update docs
2 parents 1af4ba2 + 369b154 commit 1367ba2

File tree

5 files changed

+10
-19
lines changed

5 files changed

+10
-19
lines changed

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ assignees: ''
1414

1515
## Checklist
1616
* [ ] Have you read through the [README](README.md)?
17-
* [ ] Have you searched through [our documentation](https://reverse_argparse.readthedocs.io)?
17+
* [ ] Have you searched through [our documentation](https://reverse-argparse.readthedocs.io)?

.github/workflows/ci.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,3 @@ jobs:
5151
- name: Test uninstall
5252
run: |
5353
python3 -m pip uninstall -y reverse_argparse
54-
55-
- name: Build documentation
56-
run: |
57-
./doc/make-html.bash
58-
59-
- name: Save documentation artifacts
60-
uses: actions/upload-artifact@v3
61-
with:
62-
name: html
63-
path: doc/build/html

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ utilize [type-hinting][typing] wherever possible for clarity's sake.
418418
[docstrings]: https://www.python.org/dev/peps/pep-0257
419419
[google]: https://github.com/google/styleguide/blob/gh-pages/pyguide.md#38-comments-and-docstrings
420420
[rest]: https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html
421-
[docs]: https://reverse_argparse.readthedocs.io
421+
[docs]: https://reverse-argparse.readthedocs.io
422422
[sphinx]: https://www.sphinx-doc.org/en/master/
423423

424424
### Testing

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md)
21
[![Code Style: black](https://img.shields.io/badge/Code%20Style-black-000000.svg)](https://github.com/psf/black)
2+
[![codecov](https://codecov.io/gh/sandialabs/reverse_argparse/branch/master/graph/badge.svg?token=FmDStZ6FVR)](https://codecov.io/gh/sandialabs/reverse_argparse)
3+
[![Continuous Integration](https://github.com/sandialabs/reverse_argparse/actions/workflows/ci.yml/badge.svg)](https://github.com/sandialabs/reverse_argparse/actions/workflows/ci.yml)
4+
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md)
5+
[![Documentation Status](https://readthedocs.org/projects/reverse-argparse/badge/?version=latest)](https://reverse-argparse.readthedocs.io/en/latest/?badge=latest)
6+
[![Linting: Pylint](https://img.shields.io/badge/Linting-Pylint-yellowgreen)](https://github.com/pylint-dev/pylint)
37
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
48
[![pre-commit.ci Status](https://results.pre-commit.ci/badge/github/sandialabs/reverse_argparse/master.svg)](https://results.pre-commit.ci/latest/github/sandialabs/reverse_argparse/master)
5-
[![Security: Bandit](https://img.shields.io/badge/Security-Bandit-yellow.svg)](https://github.com/PyCQA/bandit)
6-
[![Linting: Pylint](https://img.shields.io/badge/Linting-Pylint-yellowgreen)](https://github.com/pylint-dev/pylint)
7-
[![Continuous Integration](https://github.com/sandialabs/reverse_argparse/actions/workflows/ci.yml/badge.svg)](https://github.com/sandialabs/reverse_argparse/actions/workflows/ci.yml)
8-
[![codecov](https://codecov.io/gh/sandialabs/reverse_argparse/branch/master/graph/badge.svg?token=FmDStZ6FVR)](https://codecov.io/gh/sandialabs/reverse_argparse)
99
![Python Version](https://img.shields.io/badge/Python-3.8+-blue.svg)
10+
[![Security: Bandit](https://img.shields.io/badge/Security-Bandit-yellow.svg)](https://github.com/PyCQA/bandit)
1011

1112
# reverse_argparse
1213

@@ -56,7 +57,7 @@ print(unparser.get_pretty_command_line_invocation())
5657
For more detailed usage and API information, please see
5758
[our documentation][readthedocs].
5859

59-
[readthedocs]: https://reverse_argparse.readthedocs.io
60+
[readthedocs]: https://reverse-argparse.readthedocs.io
6061

6162
## Where to Get Help
6263

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ readme = "README.md"
2828
keywords = ["argparse", "argument", "parse", "parsing", "command line"]
2929
repository = "https://github.com/sandialabs/reverse_argparse"
3030
description = "Generate the effective command line invocation for a script."
31-
documentation = "https://reverse_argparse.readthedocs.io"
31+
documentation = "https://reverse-argparse.readthedocs.io"
3232
authors = [
3333
"Jason M. Gates <jmgate@sandia.gov>"
3434
]

0 commit comments

Comments
 (0)