Skip to content

Commit 57daa88

Browse files
authored
Merge pull request #490 from radish-bdd/chore/clean-improvments
Chore/clean improvments
2 parents 3e58ca9 + 3726639 commit 57daa88

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ assignees: ''
1010
**Important notices**
1111
Before you add a new report, we ask you kindly to acknowledge the following:
1212

13-
[-] I have read the contributing guide lines at https://github.com/radish-bdd/radish/blob/master/.github/CONTRIBUTING.md
13+
[-] I have read the contributing guide lines at https://github.com/radish-bdd/radish/blob/main/.github/CONTRIBUTING.md
1414

15-
[-] I have read and respect the code of conduct at https://github.com/radish-bdd/radish/blob/master/.github/CODE_OF_CONDUCT.md
15+
[-] I have read and respect the code of conduct at https://github.com/radish-bdd/radish/blob/main/.github/CODE_OF_CONDUCT.md
1616

1717
[-] I have searched the existing issues and I'm convinced that mine is new.
1818

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ assignees: ''
1010
**Important notices**
1111
Before you add a new request, we ask you kindly to acknowledge the following:
1212

13-
[-] I have read the contributing guide lines at https://github.com/radish-bdd/radish/blob/master/.github/CONTRIBUTING.md
13+
[-] I have read the contributing guide lines at https://github.com/radish-bdd/radish/blob/main/.github/CONTRIBUTING.md
1414

15-
[-] I have read and respect the code of conduct at https://github.com/radish-bdd/radish/blob/master/.github/CODE_OF_CONDUCT.md
15+
[-] I have read and respect the code of conduct at https://github.com/radish-bdd/radish/blob/main/.github/CODE_OF_CONDUCT.md
1616

1717
[-] I have searched the existing issues and I'm convinced that mine is new.
1818

.github/ISSUE_TEMPLATE/question.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ assignees: ''
1010
**Important notices**
1111
Before you add a new report, we ask you kindly to acknowledge the following:
1212

13-
[-] I have read the contributing guide lines at https://github.com/radish-bdd/radish/blob/master/.github/CONTRIBUTING.md
13+
[-] I have read the contributing guide lines at https://github.com/radish-bdd/radish/blob/main/.github/CONTRIBUTING.md
1414

15-
[-] I have read and respect the code of conduct at https://github.com/radish-bdd/radish/blob/master/.github/CODE_OF_CONDUCT.md
15+
[-] I have read and respect the code of conduct at https://github.com/radish-bdd/radish/blob/main/.github/CODE_OF_CONDUCT.md
1616

1717
[-] I have searched the existing issues and I'm convinced that mine is new.
1818

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<img align="right" src="https://raw.githubusercontent.com/radish-bdd/radish/master/artwork/radish-bdd-logo-trans-bg.png">
1+
<img align="right" src="https://raw.githubusercontent.com/radish-bdd/radish/main/artwork/radish-bdd-logo-trans-bg.png">
22

33
# radish - the root from red to green
44
> Awesome python BDD tool https://radish-bdd.github.io
55
66
***
77

8-
[![PyPI License](https://img.shields.io/pypi/l/radish-bdd.svg)](https://github.com/radish-bdd/radish/blob/master/LICENSE)
8+
[![PyPI License](https://img.shields.io/pypi/l/radish-bdd.svg)](https://github.com/radish-bdd/radish/blob/main/LICENSE)
99
[![Documentation Status](https://readthedocs.org/projects/radish/badge/?version=stable)](https://radish.readthedocs.io/en/stable/?badge=stable)
1010
<br>
1111
[![Actions Status](https://github.com/radish-bdd/radish/workflows/CI/badge.svg)](https://github.com/radish-bdd/radish/actions?branch=stable)
@@ -50,7 +50,7 @@ The whole documentation of radish is available on [Read The Docs](http://radish.
5050
Yes, we are looking for some contributors and people who spread out a word about radish.
5151
Help us to improve these piece of software. You don't know what to do?
5252
Just have a look at the Issues or create a new one.
53-
Please have a look at the [Contributing Guidelines](https://github.com/radish-bdd/radish/blob/master/CONTRIBUTING.md), too.
53+
Please have a look at the [Contributing Guidelines](https://github.com/radish-bdd/radish/blob/main/CONTRIBUTING.md), too.
5454

5555
# Release
5656

docs/conf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
# The encoding of source files.
4646
# source_encoding = 'utf-8-sig'
4747

48-
# The master toctree document.
49-
master_doc = "index"
48+
# The index toctree document.
49+
index_doc = "index"
5050

5151
# General information about the project.
5252
project = "radish"
@@ -231,7 +231,7 @@
231231
# (source start file, target name, title,
232232
# author, documentclass [howto, manual, or own class]).
233233
latex_documents = [
234-
(master_doc, "radish.tex", "radish Documentation", "Timo Furrer", "manual"),
234+
(index_doc, "radish.tex", "radish Documentation", "Timo Furrer", "manual"),
235235
]
236236

237237
# The name of an image file (relative to this directory) to place at the top of
@@ -259,7 +259,7 @@
259259

260260
# One entry per manual page. List of tuples
261261
# (source start file, name, description, authors, manual section).
262-
man_pages = [(master_doc, "radish", "radish Documentation", [author], 1)]
262+
man_pages = [(index_doc, "radish", "radish Documentation", [author], 1)]
263263

264264
# If true, show URL addresses after external links.
265265
# man_show_urls = False
@@ -272,7 +272,7 @@
272272
# dir menu entry, description, category)
273273
texinfo_documents = [
274274
(
275-
master_doc,
275+
index_doc,
276276
"radish",
277277
"radish Documentation",
278278
author,

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. radish documentation master file, created by
1+
.. radish documentation index file, created by
22
sphinx-quickstart on Sat Jun 13 21:58:55 2015.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ freezegun==1.5.1
33
pytest==7.4.4
44
pytest-mock==3.11.1
55
sphinx==5.3.0
6-
ruff==0.9.7
6+
ruff==0.14.3

0 commit comments

Comments
 (0)