Skip to content

Commit a0c791f

Browse files
authored
Prep for public access (#22)
2 parents a71cfa3 + d87c956 commit a0c791f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+121
-108
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
/build/
22
/dist/
3+
/htmlcov/
34
/.coverage*
5+
/.mypy_cache/
6+
/.slyp_cache/
7+
/.tox/
48
poetry.lock
59
__pycache__/
6-
.tox/
710
.venv/

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ repos:
3535
- id: "slyp"
3636

3737
- repo: "https://github.com/psf/black-pre-commit-mirror"
38-
rev: "25.12.0"
38+
rev: "26.1.0"
3939
hooks:
4040
- id: "black"
4141

@@ -54,12 +54,12 @@ repos:
5454
- "flake8-typing-as-t==1.1.0"
5555

5656
- repo: "https://github.com/editorconfig-checker/editorconfig-checker"
57-
rev: "v3.6.0"
57+
rev: "v3.6.1"
5858
hooks:
5959
- id: "editorconfig-checker"
6060

6161
- repo: "https://github.com/python-jsonschema/check-jsonschema"
62-
rev: "0.36.0"
62+
rev: "0.36.1"
6363
hooks:
6464
- id: "check-dependabot"
6565

CHANGELOG.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
..
22
This file is a part of globus-registered-api.
3-
https://github.com/globusonline/globus-registered-api
4-
Copyright 2025 Globus <support@globus.org>
3+
https://github.com/globus/globus-registered-api
4+
Copyright 2025-2026 Globus <support@globus.org>
55
SPDX-License-Identifier: Apache-2.0
66
77
..
@@ -21,7 +21,7 @@ Unreleased changes
2121

2222
Please see the fragment files in the `changelog.d directory`_.
2323

24-
.. _changelog.d directory: https://github.com/globusonline/globus-registered-api/tree/main/changelog.d
24+
.. _changelog.d directory: https://github.com/globus/globus-registered-api/tree/main/changelog.d
2525

2626

2727
.. scriv-insert-here

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ in which you can interactively write and test changes.
88

99
.. code-block::
1010
11-
git clone https://github.com/globusonline/globus-registered-api.git && cd globus-registered-api
11+
git clone https://github.com/globus/globus-registered-api.git && cd globus-registered-api
1212
1313
2. Install dependencies in a local virtualenv (at ``./.venv``) and pre-commit hooks.
1414

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
..
22
This file is a part of globus-registered-api.
3-
https://github.com/globusonline/globus-registered-api
4-
Copyright 2025 Globus <support@globus.org>
3+
https://github.com/globus/globus-registered-api
4+
Copyright 2025-2026 Globus <support@globus.org>
55
SPDX-License-Identifier: Apache-2.0
66
77
Globus Registered API
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Development
2+
-----------
3+
4+
* Update references to the git repository URL.
5+
* Update headers in all files.

docs/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
..
22
This file is a part of globus-registered-api.
3-
https://github.com/globusonline/globus-registered-api
4-
Copyright 2025 Globus <support@globus.org>
3+
https://github.com/globus/globus-registered-api
4+
Copyright 2025-2026 Globus <support@globus.org>
55
SPDX-License-Identifier: Apache-2.0
66
77
.. include:: ../CHANGELOG.rst

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is a part of globus-registered-api.
2-
# https://github.com/globusonline/globus-registered-api
3-
# Copyright 2025 Globus <support@globus.org>
2+
# https://github.com/globus/globus-registered-api
3+
# Copyright 2025-2026 Globus <support@globus.org>
44
# SPDX-License-Identifier: Apache-2.0
55

66
import pathlib
@@ -17,7 +17,7 @@
1717

1818
# General information about the project.
1919
project = "Globus Registered API"
20-
copyright = "2025 Globus"
20+
copyright = "2025-2026 Globus"
2121

2222
# Extract the project version.
2323
pyproject_ = pathlib.Path(__file__).parent.parent / "pyproject.toml"

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
..
22
This file is a part of globus-registered-api.
3-
https://github.com/globusonline/globus-registered-api
4-
Copyright 2025 Globus <support@globus.org>
3+
https://github.com/globus/globus-registered-api
4+
Copyright 2025-2026 Globus <support@globus.org>
55
SPDX-License-Identifier: Apache-2.0
66
77
Globus Registered API

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies = [
2727
]
2828

2929
[project.urls]
30-
Source = "https://github.com/globusonline/globus-registered-api"
30+
Source = "https://github.com/globus/globus-registered-api"
3131

3232
[project.scripts]
3333
globus-registered-api = "globus_registered_api.cli:cli"
@@ -44,8 +44,8 @@ build-backend = "poetry.core.masonry.api"
4444
[tool.chipshot]
4545
template = """
4646
This file is a part of globus-registered-api.
47-
https://github.com/globusonline/globus-registered-api
48-
Copyright 2025 Globus <support@globus.org>
47+
https://github.com/globus/globus-registered-api
48+
Copyright 2025-2026 Globus <support@globus.org>
4949
SPDX-License-Identifier: Apache-2.0
5050
"""
5151
exclusions = [

0 commit comments

Comments
 (0)