File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
documentation/repository-files Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 29
29
# Get the latest Git tag - there might be a prettier way to do this but...
30
30
try :
31
31
release_value = (
32
- subprocess .check_output (["git" , "describe" , "--tags" ]).decode ("utf-8" ).strip ()
32
+ subprocess .check_output (["git" , "describe" , "--tags" ])
33
+ .decode ("utf-8" )
34
+ .strip ()
33
35
)
34
36
release_value = release_value [:4 ]
35
37
except subprocess .CalledProcessError :
130
132
".github" ,
131
133
".nox" ,
132
134
"README.md" ,
135
+ "styles/write-good/README.md" ,
136
+ "styles/*" ,
137
+ ".pytest_cache/README.md" ,
133
138
]
134
139
135
140
# For sitemap generation
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ Finally be sure to include instructions on how to cite your package.
164
164
Citation should include the DOI that you want used when citing your package,
165
165
and any language that you'd like to see associated with the citation.
166
166
167
- ``` {tip } README Resources
167
+ :::{admonition } README Resources
168
168
:class: tip
169
169
170
170
Below are some resources on creating great README.md files that you
@@ -173,4 +173,4 @@ might find helpful.
173
173
* [ How to Write a Great README - Bane Sullivan] ( https://github.com/banesullivan/README )
174
174
* [ Art of README - Kira (@hackergrrl )] ( https://github.com/hackergrrl/art-of-readme )
175
175
176
- ```
176
+ :::
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Note the version numbers will likely be different
31
31
32
32
Once you have installed Hatch, you will want to customize the configuration.
33
33
34
- Hatch stores your configuration information in a [ ` config.toml ` file] ( https://.pypa.io/latest/config/project-templates/ ) .
34
+ Hatch stores your configuration information in a [ ` config.toml ` file] ( https://hatch .pypa.io/latest/config/project-templates/ ) .
35
35
36
36
While you can update the ` config.toml ` file through the command line,
37
37
it might be easier to look at it and update it in a text editor if you are using it for the first time.
You can’t perform that action at this time.
0 commit comments