-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add aarch64 to support * add new datechanged directive * add section on platform nomenclature * update supported python version info * minor tweaks to guidelines * fix typos * minor cleanup on bulk.rst * clarification on repodata patching * add Alicia to core team * update notes on building docs * css on datechanged directives * overhaul and update CI inventory page * consolidate all FAQs together into top-level * consolidate cb3.rst into top-level faqs * overheaul build-system.rst Made it more general so it's accurate across multiple CI platforms * minor updates to bulk * add new aarch64 page * update number of contributors * make CI platforms more general * minor formatting * clarifications in faqs * update link to galaxy's mulled-build docs * clarifications and updates * fix build/host/run details * Arm/ARM clarification * correct arch for supported mac * rm "summary" table * make miniforge statement more accurate and add link * Update source/developer/aarch64.rst Co-authored-by: Martin Grigorov <martin-g@users.noreply.github.com> * Update source/faqs.rst Co-authored-by: Martin Grigorov <martin-g@users.noreply.github.com> * note about linux-aarch64 containers * add inventory of repos * add inventory of dockerfiles/images * Update source/faqs.rst * typo * css update * minor changes * update images page * Update source/contributor/build-system.rst Co-authored-by: Martin Grigorov <martin-g@users.noreply.github.com> * update datechanged * address various review comments --------- Co-authored-by: Ryan Dale <ryan.dale@nih.gov> Co-authored-by: Martin Grigorov <martin-g@users.noreply.github.com>
- Loading branch information
1 parent
6366416
commit f7a025b
Showing
20 changed files
with
2,695 additions
and
824 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
""" | ||
Slight modification of the .. versionchanged:: directive that prints "changed | ||
on" rather than "changed in version". | ||
""" | ||
|
||
from sphinx.domains import changeset | ||
from sphinx.locale import _ | ||
|
||
changeset.versionlabels['datechanged'] = _("Changed on %s") | ||
changeset.versionlabel_classes['datechanged'] = 'changed' | ||
|
||
def setup(app): | ||
app.add_directive('datechanged', changeset.VersionChange) | ||
return { | ||
'version': 'builtin', | ||
'env_version': 1, | ||
'parallel_read_safe': True, | ||
'parallel_write_safe': True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.