Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix jsonschema version extras #195

Merged
merged 1 commit into from
Aug 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def get_version():
'appdirs',
'colorama',
'cpe',
'jsonschema[format_nongpl]>=3.2.0',
'jsonschema[format-nongpl]>=4.6.0',
'python-dateutil',
'requests',
'requests_cache',
Expand Down
1 change: 0 additions & 1 deletion stix2validator/test/v21/observed_data_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@ def test_observable_object_reserved_type(self):
def test_observable_object_reserved_property(self):
observed_data = copy.deepcopy(self.valid_object)
observed_data['action'] = True
print(observed_data)
self.assertFalseWithOptions(observed_data)

def test_windows_registry_key_truncated(self):
Expand Down