Skip to content

Commit b326357

Browse files
Remove help email from build and docs (#416)
2 parents 0c43e60 + 78b3421 commit b326357

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
project = setup_metadata["name"]
2525
primary_author = setup_metadata["authors"][0]
26-
author = f'{primary_author["name"]} <{primary_author["email"]}>'
26+
author = primary_author["name"]
2727
copyright = f'{datetime.now().year}, {primary_author["name"]}' # noqa: A001
2828

2929
package = importlib.import_module(project)

docs/rtd_environment.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: rtd311
22
channels:
33
- conda-forge
4-
- defaults
54
dependencies:
65
- python=3.11
76
- pip

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stcal"
33
description = "STScI tools and algorithms used in calibration pipelines"
44
readme = "README.md"
55
requires-python = ">=3.11,<3.14"
6-
authors = [{ name = "STScI", email = "[email protected]" }]
6+
authors = [{ name = "STScI" }]
77
classifiers = [
88
"Intended Audience :: Science/Research",
99
"Topic :: Scientific/Engineering :: Astronomy",

src/stcal/skymatch/skyimage.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
on the sky as well as perform useful operations on these outlines such as
55
computing intersections and statistics in the overlap regions.
66
7-
:Authors: Mihai Cara (contact: [email protected])
8-
7+
:Authors: Mihai Cara
98
109
"""
1110

src/stcal/skymatch/skystatistics.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
:py:func:`~stcal.skymatch.skymatch.skymatch`
44
and :py:class:`~stcal.skymatch.skyimage.SkyImage`.
55
6-
:Authors: Mihai Cara (contact: [email protected])
7-
6+
:Authors: Mihai Cara
87
98
"""
109
# THIRD PARTY

0 commit comments

Comments
 (0)