-
Notifications
You must be signed in to change notification settings - Fork 4
Chore/unpin openapi spec validator and update target python versions #103
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
base: master
Are you sure you want to change the base?
Changes from all commits
55f2706
5b1562d
2470478
5074843
8b45b3a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,4 +3,4 @@ repos: | |
| rev: stable | ||
| hooks: | ||
| - id: black | ||
| language_version: python3.6 | ||
| language_version: python3.9 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| __version__ = "1.3.1" | ||
| __version__ = "1.3.2" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. atleast a 1.4.0 :P
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can clearly see when things started out as "bump a few dependencies" into something much more involved. 😛 Will bump the version proper. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -132,7 +132,7 @@ def branch(cls): | |
|
|
||
| @classmethod | ||
| def schema_url(cls): | ||
| return f"https://{cls.hostname}/{cls.API_VERSION}/public/api-document" | ||
| return f"https://{cls.hostname}/{cls.API_VERSION}/public/oas3-document" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it would be good to have some tests to validate the current calls are still valid. The sdk knows about these, for example: There is probably a smart way to retrieve these on the old schema and assert in the new schema yeah? |
||
|
|
||
| @classmethod | ||
| def get_auth_class(cls): | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍👍