Skip to content

Commit ee27ee9

Browse files
committed
chore: move the repository to the python-scim organization
1 parent 4cda8e9 commit ee27ee9

6 files changed

+11
-11
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ assert user.meta.created == datetime.datetime(
4747
```
4848

4949
scim2-models belongs in a collection of SCIM tools developed by [Yaal Coop](https://yaal.coop),
50-
with [scim2-client](https://github.com/yaal-coop/scim2-client),
51-
[scim2-tester](https://github.com/yaal-coop/scim2-tester) and
52-
[scim2-cli](https://github.com/yaal-coop/scim2-cli)
50+
with [scim2-client](https://github.com/python-scim/scim2-client),
51+
[scim2-tester](https://github.com/python-scim/scim2-tester) and
52+
[scim2-cli](https://github.com/python-scim/scim2-cli)

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
html_theme_options = {
5252
"globaltoc_expand_depth": 3,
5353
"accent_color": "amber",
54-
"github_url": "https://github.com/yaal-coop/scim2-models",
54+
"github_url": "https://github.com/python-scim/scim2-models",
5555
"mastodon_url": "https://toot.aquilenet.fr/@yaal",
5656
"nav_links": [
5757
{"title": "scim2-client", "url": "https://scim2-client.readthedocs.io"},
@@ -64,7 +64,7 @@
6464
}
6565
html_context = {
6666
"source_type": "github",
67-
"source_user": "yaal-coop",
67+
"source_user": "python-scim",
6868
"source_repo": "scim2-models",
6969
"source_version": "main",
7070
"source_docs_path": "/doc/",

doc/contributing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ Contribution
33

44
Contributions are welcome!
55

6-
The repository is hosted at `github.com/yaal-coop/scim2-models <https://github.com/yaal-coop/scim2-models>`_.
6+
The repository is hosted at `github.com/python-scim/scim2-models <https://github.com/python-scim/scim2-models>`_.
77

88
Discuss
99
-------
1010

1111
If you want to implement a feature or a bugfix, please start by discussing it with us on
12-
the `bugtracker <https://github.com/yaal-coop/scim2-models/issues>`_.
12+
the `bugtracker <https://github.com/python-scim/scim2-models/issues>`_.
1313

1414
Unit tests
1515
----------

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ dependencies = [
3232

3333
[project.urls]
3434
documentation = "https://scim2-models.readthedocs.io"
35-
repository = "https://github.com/yaal-coop/scim2-models"
35+
repository = "https://github.com/python-scim/scim2-models"
3636
changelog = "https://scim2-models.readthedocs.io/en/latest/changelog.html"
37-
funding = "https://github.com/sponsors/yaal-coop"
37+
funding = "https://github.com/sponsors/python-scim"
3838

3939
[dependency-groups]
4040
dev = [

tests/test_models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_parse_and_serialize_examples(load_sample):
4141

4242
skipped = [
4343
# resources without schemas are not yet supported
44-
# https://github.com/yaal-coop/scim2-models/issues/20
44+
# https://github.com/python-scim/scim2-models/issues/20
4545
"rfc7644-3.4.2-list_response-partial_attributes.json",
4646
"rfc7644-3.4.3-list_response-post_query.json",
4747
# BulkOperation.data PatchOperation.value should be of type resource

tests/test_resource_extension.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def test_extensions_schemas():
251251
def test_validate_items_without_extension():
252252
"""A model with an optional extension should be able to validate a payload without an extension payload.
253253
254-
https://github.com/yaal-coop/scim2-models/issues/77
254+
https://github.com/python-scim/scim2-models/issues/77
255255
"""
256256
payload = {
257257
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],

0 commit comments

Comments
 (0)