Skip to content

Commit a2ba92b

Browse files
committed
chore: move the repository to the python-scim organization
1 parent 8e6c6c1 commit a2ba92b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# scim2-server
22

3-
This is an example WSGI-SCIM server using [scim2-models](https://github.com/yaal-coop/scim2-models).
3+
This is an example WSGI-SCIM server using [scim2-models](https://github.com/python-scim/scim2-models).
44
It utilizes [werkzeug](https://werkzeug.palletsprojects.com/) and [scim2-filter-parser](https://github.com/15five/scim2-filter-parser) and keeps all resources in-memory,
55
they are lost once the process exits.
66

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ dependencies = [
3434
]
3535

3636
[project.urls]
37-
repository = "https://github.com/yaal-coop/scim2-server"
38-
funding = "https://github.com/sponsors/yaal-coop"
37+
repository = "https://github.com/python-scim/scim2-server"
38+
funding = "https://github.com/sponsors/python-scim"
3939

4040
[project.scripts]
4141
scim2-server = "scim2_server.cli:main"

scim2_server/filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def evaluate_filter(
1919
2020
It works well enough for simple cases, though. It should be re-
2121
implemented in the future. Probably once
22-
https://github.com/yaal-coop/scim2-models/issues/17
22+
https://github.com/python-scim/scim2-models/issues/17
2323
is implemented.
2424
"""
2525
from scim2_server.operators import ResolveOperator

tests/test_operators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def test_add_operator_binary_data(self):
271271
u = User()
272272
AddOperator("x509Certificates", {"value": base64.b64encode(b"1234567")})(u)
273273
assert u.x509_certificates == [
274-
# https://github.com/yaal-coop/scim2-models/issues/31
274+
# https://github.com/python-scim/scim2-models/issues/31
275275
# Should be value=b"1234567"
276276
X509Certificate(value=b"MTIzNDU2Nw==")
277277
]

0 commit comments

Comments
 (0)