Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • duncan.meacher/gwdatafind
  • duncanmmacleod/gwdatafind
  • computing/gwdatafind/client
3 results
Show changes
# Copyright (C) Cardiff University (2018-2022)
# Copyright (C) 2018-2025 Cardiff University
#
# This file is part of GWDataFind.
#
......@@ -13,7 +13,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GWDataFind. If not, see <http://www.gnu.org/licenses/>.
# along with GWDataFind. If not, see <https://www.gnu.org/licenses/>.
"""Tests for :mod:`gwdatafind.__main__` (the CLI)."""
......
# Copyright (C) Cardiff University (2018-2022)
# Copyright (C) 2018-2025 Cardiff University
#
# This file is part of GWDataFind.
#
......@@ -13,7 +13,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GWDataFind. If not, see <http://www.gnu.org/licenses/>.
# along with GWDataFind. If not, see <https://www.gnu.org/licenses/>.
"""Test :mod:`gwdatafind.ui`."""
......
# Copyright (C) Scott Koranda (2012-2015)
# Louisiana State University (2015-2017)
# Cardiff University (2017-2022)
# Copyright (C) 2012-2015 University of Wisconsin-Milwaukee
# 2015-2017 Louisiana State University
# 2017-2025 Cardiff University
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
# This file is part of GWDataFind.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
# GWDataFind is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
# GWDataFind is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GWDataFind. If not, see <https://www.gnu.org/licenses/>.
"""Tests for :mod:`gwdatafind.utils`."""
......
# Copyright (C) Cardiff University (2018-2022)
# Copyright (C) 2018-2025 Cardiff University
#
# This file is part of GWDataFind.
#
......@@ -13,7 +13,7 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GWDataFind. If not, see <http://www.gnu.org/licenses/>.
# along with GWDataFind. If not, see <https://www.gnu.org/licenses/>.
"""User interface functions for GWDataFind.
......@@ -212,7 +212,7 @@ def find_observatories(
Raises
------
requests.RequestsException
requests.RequestException
if the request fails for any reason
Examples
......@@ -280,7 +280,7 @@ def find_types(
Raises
------
requests.RequestsException
requests.RequestException
if the request fails for any reason
Examples
......@@ -372,7 +372,7 @@ def find_times(
Raises
------
requests.RequestsException
requests.RequestException
if the request fails for any reason
""" # noqa: E501
qurl = _url(
......@@ -459,7 +459,7 @@ def find_url(
Raises
------
requests.RequestsException
requests.RequestException
if the request fails for any reason
RuntimeError
......@@ -536,7 +536,7 @@ def find_latest(
Raises
------
requests.RequestsException
requests.RequestException
if the request fails for any reason
RuntimeError
......@@ -627,7 +627,7 @@ def find_urls(
Raises
------
requests.RequestsException
requests.RequestException
if the request fails for any reason
RuntimeError
......
# Copyright (C) Scott Koranda (2012-2015)
# Louisiana State University (2015-2017)
# Cardiff University (2017-2022)
# Copyright (C) 2012-2015 University of Wisconsin-Milwaukee
# 2015-2017 Louisiana State University
# 2017-2025 Cardiff University
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
# This file is part of GWDataFind.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
# GWDataFind is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
# GWDataFind is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GWDataFind. If not, see <https://www.gnu.org/licenses/>.
"""Utilities for the GW datafind service."""
......
......@@ -45,11 +45,11 @@ dynamic = [
[project.optional-dependencies]
docs = [
"furo",
"numpydoc",
"Sphinx >= 4.4.0",
"Sphinx >=4.4.0",
"sphinx-argparse",
"sphinx_automodapi",
"sphinx-automodapi",
"sphinx-copybutton",
"sphinx-github-style",
]
test = [
"pytest >= 3.9.3",
......