Skip to content

Commit 2e28324

Browse files
committed
Update hyperlinks from the GitHub organization move.
1 parent aa1ef4b commit 2e28324

File tree

7 files changed

+19
-20
lines changed

7 files changed

+19
-20
lines changed

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jsonschema
1212
:alt: Supported Python versions
1313
:target: https://pypi.org/project/jsonschema/
1414

15-
.. |CI| image:: https://github.com/Julian/jsonschema/workflows/CI/badge.svg
15+
.. |CI| image:: https://github.com/python-jsonschema/jsonschema/workflows/CI/badge.svg
1616
:alt: Build status
17-
:target: https://github.com/Julian/jsonschema/actions?query=workflow%3ACI
17+
:target: https://github.com/python-jsonschema/jsonschema/actions?query=workflow%3ACI
1818

1919
.. |ReadTheDocs| image:: https://readthedocs.org/projects/python-jsonschema/badge/?version=stable&style=flat
2020
:alt: ReadTheDocs status
2121
:target: https://python-jsonschema.readthedocs.io/en/stable/
2222

23-
.. |Precommit| image:: https://results.pre-commit.ci/badge/github/Julian/jsonschema/main.svg
23+
.. |Precommit| image:: https://results.pre-commit.ci/badge/github/python-jsonschema/jsonschema/main.svg
2424
:alt: pre-commit.ci status
25-
:target: https://results.pre-commit.ci/latest/github/Julian/jsonschema/main
25+
:target: https://results.pre-commit.ci/latest/github/python-jsonschema/jsonschema/main
2626

2727
.. |Zenodo| image:: https://zenodo.org/badge/3072629.svg
2828
:target: https://zenodo.org/badge/latestdoi/3072629
@@ -130,7 +130,7 @@ Contributing
130130

131131
I'm Julian Berman.
132132

133-
``jsonschema`` is on `GitHub <https://github.com/Julian/jsonschema>`_.
133+
``jsonschema`` is on `GitHub <https://github.com/python-jsonschema/jsonschema>`_.
134134

135135
Get in touch, via GitHub or otherwise, if you've got something to contribute,
136136
it'd be most welcome!

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ def entire_domain(host):
239239

240240

241241
linkcheck_ignore = [
242-
"https://github.com/Julian/jsonschema/actions",
243-
"https://github.com/Julian/jsonschema/workflows/CI/badge.svg",
242+
"https://github.com/python-jsonschema/jsonschema/actions",
243+
"https://github.com/python-jsonschema/jsonschema/workflows/CI/badge.svg",
244244
]
245245

246246
# -- Options for sphinxcontrib-autosectionlabel ---------------------------

jsonschema/_format.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,7 @@ def wrap(func):
189189
)
190190

191191
# Oy. This is bad global state, but relied upon for now, until
192-
# deprecation. See https://github.com/Julian/jsonschema/issues/519
193-
# and test_format_checkers_come_with_defaults
192+
# deprecation. See #519 and test_format_checkers_come_with_defaults
194193
FormatChecker.cls_checks(
195194
draft202012 or draft201909 or draft7 or draft6 or draft4 or draft3,
196195
raises,

jsonschema/benchmarks/issue232.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
A performance benchmark using the example from issue #232.
33
4-
See https://github.com/Julian/jsonschema/pull/232.
4+
See https://github.com/python-jsonschema/jsonschema/pull/232.
55
"""
66
from pathlib import Path
77

jsonschema/tests/test_exceptions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def test_strong_validators_are_higher_priority(self):
209209

210210
class TestErrorTree(TestCase):
211211
def test_it_knows_how_many_total_errors_it_contains(self):
212-
# FIXME: https://github.com/Julian/jsonschema/issues/442
212+
# FIXME: #442
213213
errors = [
214214
exceptions.ValidationError("Something", validator=i)
215215
for i in range(8)
@@ -446,9 +446,9 @@ def test_uses_pprint(self):
446446

447447
def test_str_works_with_instances_having_overriden_eq_operator(self):
448448
"""
449-
Check for https://github.com/Julian/jsonschema/issues/164 which
450-
rendered exceptions unusable when a `ValidationError` involved
451-
instances with an `__eq__` method that returned truthy values.
449+
Check for #164 which rendered exceptions unusable when a
450+
`ValidationError` involved instances with an `__eq__` method
451+
that returned truthy values.
452452
"""
453453

454454
class DontEQMeBro(object):

jsonschema/tests/test_validators.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1411,15 +1411,15 @@ def test_enum_allows_empty_arrays(self):
14111411
"""
14121412
Technically, all the spec says is they SHOULD have elements, not MUST.
14131413
1414-
See https://github.com/Julian/jsonschema/issues/529.
1414+
See #529.
14151415
"""
14161416
self.Validator.check_schema({"enum": []})
14171417

14181418
def test_enum_allows_non_unique_items(self):
14191419
"""
14201420
Technically, all the spec says is they SHOULD be unique, not MUST.
14211421
1422-
See https://github.com/Julian/jsonschema/issues/529.
1422+
See #529.
14231423
"""
14241424
self.Validator.check_schema({"enum": [12, 12]})
14251425

@@ -1552,7 +1552,7 @@ def test_it_properly_formats_tuples_in_errors(self):
15521552
"""
15531553
A tuple instance properly formats validation errors for uniqueItems.
15541554
1555-
See https://github.com/Julian/jsonschema/pull/224
1555+
See #224
15561556
"""
15571557
TupleValidator = validators.extend(
15581558
self.Validator,

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[metadata]
22
name = jsonschema
3-
url = https://github.com/Julian/jsonschema
3+
url = https://github.com/python-jsonschema/jsonschema
44
project_urls =
55
Documentation = https://python-jsonschema.readthedocs.io/en/latest/
6-
Source = https://github.com/Julian/jsonschema
7-
Issues = https://github.com/Julian/jsonschema/issues/
6+
Source = https://github.com/python-jsonschema/jsonschema
7+
Issues = https://github.com/python-jsonschema/jsonschema/issues/
88
description = An implementation of JSON Schema validation for Python
99
long_description = file: README.rst
1010
long_description_content_type = text/x-rst

0 commit comments

Comments
 (0)