From 0edf069b80564b042f6011b32d1ddc71f18c782b Mon Sep 17 00:00:00 2001 From: Michael Zingale Date: Fri, 28 Jan 2022 16:45:13 -0500 Subject: [PATCH] update location to reflect Microphysics repo move (#879) Microphysics is now part of AMReX-Astro --- .zenodo.json | 2 +- README.md | 13 ++++++------- sphinx_docs/Makefile | 2 +- sphinx_docs/source/conf.py | 20 ++++++++++---------- 4 files changed, 18 insertions(+), 19 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index d3bdfe11e8..208217f0af 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -1,7 +1,7 @@ { "creators": [ { - "name": "the StarKiller Microphysics Development Team" + "name": "AMReX-Astro Microphysics Development Team" }, { "affiliation": "Stony Brook University", "name": "Bishop, Abigail", diff --git a/README.md b/README.md index 869dc39768..d2b2571eb9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -[![github pages](https://github.com/starkiller-astro/Microphysics/workflows/github%20pages/badge.svg?branch=main)](https://github.com/starkiller-astro/Microphysics/actions?query=workflow%3A%22github+pages%22) -[![DOI](https://zenodo.org/badge/33425497.svg)](https://zenodo.org/badge/latestdoi/33425497) +[![github pages](https://github.com/AMReX-Astro/Microphysics/actions/workflows/gh-pages.yml/badge.svg)](https://github.com/AMReX-Astro/Microphysics/actions/workflows/gh-pages.yml) [![DOI](https://zenodo.org/badge/33425497.svg)](https://zenodo.org/badge/latestdoi/33425497) # Microphysics @@ -67,7 +66,7 @@ the AMReX-Astro codes, Maestro and Castro. * Castro: http://amrex-astro.github.io/Castro/ -* Maestro: http://amrex-astro.github.io/MAESTRO/ +* MAESTROeX: http://amrex-astro.github.io/MAESTROeX/ To use this repository with AMReX codes, set `MICROPHYSICS_HOME` to point to the `Microphysics/` directory. @@ -87,7 +86,7 @@ system to ensure the interfaces are tested. # Documentation A user's guide for Microphysics is available at: -http://starkiller-astro.github.io/Microphysics/docs/ +http://amrex-astro.github.io/Microphysics/docs/ The sphinx source for the documentation is in `Microphysics/sphinx_docs/` @@ -139,7 +138,7 @@ Development generally follows the following ideas: ## Core Developers People who make a number of substantive contributions will be named -"core developers" of StarKiller Microphysics. The criteria for +"core developers" of Microphysics. The criteria for becoming a core developer are flexible, but generally involve one of the following: @@ -157,7 +156,7 @@ Core developers will be recognized in the following ways: * listed in the User's Guide and website as a core developer * invited to co-author general code papers / proceedings describing - StarKiller Microphysics, its performance, etc. (Note: science + Microphysics, its performance, etc. (Note: science papers will always be left to the science leads to determine authorship). @@ -170,4 +169,4 @@ status as a core developer. We use github discussions for requesting help and interacting with the community: -https://github.com/starkiller-astro/Microphysics/discussions +https://github.com/amrex-astro/Microphysics/discussions diff --git a/sphinx_docs/Makefile b/sphinx_docs/Makefile index 04aabab90c..cc4d477864 100644 --- a/sphinx_docs/Makefile +++ b/sphinx_docs/Makefile @@ -4,7 +4,7 @@ # You can set these variables from the command line. SPHINXOPTS = -E -a SPHINXBUILD = sphinx-build -SPHINXPROJ = starkiller +SPHINXPROJ = Microphysics SOURCEDIR = source BUILDDIR = build diff --git a/sphinx_docs/source/conf.py b/sphinx_docs/source/conf.py index 2c1934007c..d79bb78502 100644 --- a/sphinx_docs/source/conf.py +++ b/sphinx_docs/source/conf.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # -# StarKiller Microphysics documentation build configuration file, created by +# Microphysics documentation build configuration file, created by # sphinx-quickstart on Tue Oct 23 11:59:54 2018. # # This file is execfile()d with the current directory set to its @@ -81,9 +81,9 @@ def get_version(): main_doc = 'index' # General information about the project. -project = 'StarKiller Microphysics' -copyright = '2018, StarKiller Development Team' -author = 'StarKiller Development Team' +project = 'Microphysics' +copyright = '2012, Microphysics Development Team' +author = 'Microphysics Development Team' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -173,7 +173,7 @@ def get_version(): # -- Options for HTMLHelp output ------------------------------------------ # Output file base name for HTML help builder. -htmlhelp_basename = 'StarKillerMicrophysicsdoc' +htmlhelp_basename = 'Microphysicsdoc' # -- Options for LaTeX output --------------------------------------------- @@ -200,8 +200,8 @@ def get_version(): # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (main_doc, 'StarKillerMicrophysics.tex', 'StarKiller Microphysics Documentation', - 'StarKiller Development Team', 'manual'), + (main_doc, 'Microphysics.tex', 'Microphysics Documentation', + 'Microphysics Development Team', 'manual'), ] @@ -210,7 +210,7 @@ def get_version(): # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - (main_doc, 'starkillermicrophysics', 'StarKiller Microphysics Documentation', + (main_doc, 'microphysics', 'Microphysics Documentation', [author], 1) ] @@ -221,7 +221,7 @@ def get_version(): # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - (main_doc, 'StarKillerMicrophysics', 'StarKiller Microphysics Documentation', - author, 'StarKillerMicrophysics', 'One line description of project.', + (main_doc, 'Microphysics', 'Microphysics Documentation', + author, 'Microphysics', 'One line description of project.', 'Miscellaneous'), ]