Skip to content

Commit 3afaca8

Browse files
authored
Made installation of checker for format=uri-reference explicit (#2075)
Details: * The checker for format=uri-reference so far was available because jupyter-events depends on it. That lead to the checker not being available on Windows with Python>=3.13 because there jupyter is not installed due to an issue. This change installs the checker explicitly in order not to depend on that anymore. Signed-off-by: Andreas Maier <maiera@de.ibm.com>
1 parent 453c7b0 commit 3afaca8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

dev-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ more-itertools>=4.0.0
3333
pytz>=2019.1,!=2024.2,!=2025.1,!=2025.2
3434
# Python's built-in zoneinfo module needs the tzdata package on Windows.
3535
tzdata>=2023.4; sys_platform == 'win32'
36-
# # rfc3986-validator is needed for jsonschema validation of format=uri-reference
37-
# rfc3986-validator>=0.1.1
36+
# rfc3986-validator is needed for jsonschema validation of format=uri-reference
37+
rfc3986-validator>=0.1.1
3838

3939
# packaging is used by pytest, pip-check-reqs, sphinx
4040
packaging>=24.2

minimum-constraints-develop.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pytz==2019.1
3333
requests-mock==1.6.0
3434
requests-toolbelt==0.8.0
3535
tzdata==2023.4; sys_platform == 'win32'
36-
# rfc3986-validator==0.1.1
36+
rfc3986-validator==0.1.1
3737

3838
# Unit test (indirect dependencies):
3939
# decorator: covered in direct deps for installation

0 commit comments

Comments
 (0)