Skip to content

Move to python-openapi org #69

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

Merged
merged 1 commit into from
Feb 27, 2023
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
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ openapi-schema-validator

.. image:: https://img.shields.io/pypi/v/openapi-schema-validator.svg
:target: https://pypi.python.org/pypi/openapi-schema-validator
.. image:: https://travis-ci.org/p1c2u/openapi-schema-validator.svg?branch=master
:target: https://travis-ci.org/p1c2u/openapi-schema-validator
.. image:: https://img.shields.io/codecov/c/github/p1c2u/openapi-schema-validator/master.svg?style=flat
:target: https://codecov.io/github/p1c2u/openapi-schema-validator?branch=master
.. image:: https://travis-ci.org/python-openapi/openapi-schema-validator.svg?branch=master
:target: https://travis-ci.org/python-openapi/openapi-schema-validator
.. image:: https://img.shields.io/codecov/c/github/python-openapi/openapi-schema-validator/master.svg?style=flat
:target: https://codecov.io/github/python-openapi/openapi-schema-validator?branch=master
.. image:: https://img.shields.io/pypi/pyversions/openapi-schema-validator.svg
:target: https://pypi.python.org/pypi/openapi-schema-validator
.. image:: https://img.shields.io/pypi/format/openapi-schema-validator.svg
Expand Down Expand Up @@ -43,7 +43,7 @@ Alternatively you can download the code and install from the repository:

.. code-block:: console

pip install -e git+https://github.com/p1c2u/openapi-schema-validator.git#egg=openapi_schema_validator
pip install -e git+https://github.com/python-openapi/openapi-schema-validator.git#egg=openapi_schema_validator


Usage
Expand Down Expand Up @@ -103,7 +103,7 @@ For more details read about `Validation <https://openapi-schema-validator.readth

Related projects
################
* `openapi-core <https://github.com/p1c2u/openapi-core>`__
* `openapi-core <https://github.com/python-openapi/openapi-core>`__
Python library that adds client-side and server-side support for the OpenAPI.
* `openapi-spec-validator <https://github.com/p1c2u/openapi-spec-validator>`__
* `openapi-spec-validator <https://github.com/python-openapi/openapi-spec-validator>`__
Python library that validates OpenAPI Specs against the OpenAPI 2.0 (aka Swagger) and OpenAPI 3.0 specification
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"provider": "google",
"property": "G-11RDPBZ7EJ",
},
"repo_url": "https://github.com/p1c2u/openapi-schema-validator/",
"repo_url": "https://github.com/python-openapi/openapi-schema-validator/",
"repo_name": "openapi-schema-validator",
"repo_type": "github",
"icon": {
Expand Down
4 changes: 2 additions & 2 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Reporting bugs
Before you report
^^^^^^^^^^^^^^^^^

* Check whether your issue does not already exist in the `Issue tracker <https://github.com/p1c2u/openapi-schema-validator/issues>`__.
* Make sure it is not a support request or question better suited for `Discussion board <https://github.com/p1c2u/openapi-schema-validator/discussions>`__.
* Check whether your issue does not already exist in the `Issue tracker <https://github.com/python-openapi/openapi-schema-validator/issues>`__.
* Make sure it is not a support request or question better suited for `Discussion board <https://github.com/python-openapi/openapi-schema-validator/discussions>`__.

How to submit a report
^^^^^^^^^^^^^^^^^^^^^^
Expand Down
6 changes: 3 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Installation

.. code-block:: console

pip install -e git+https://github.com/p1c2u/openapi-schema-validator.git#egg=openapi_schema_validator
pip install -e git+https://github.com/python-openapi/openapi-schema-validator.git#egg=openapi_schema_validator

Usage
-----
Expand Down Expand Up @@ -86,9 +86,9 @@ Read more about the :doc:`validation`.
Related projects
----------------

* `openapi-core <https://github.com/p1c2u/openapi-core>`__
* `openapi-core <https://github.com/python-openapi/openapi-core>`__
Python library that adds client-side and server-side support for the OpenAPI v3.0 and OpenAPI v3.1 specification.
* `openapi-spec-validator <https://github.com/p1c2u/openapi-spec-validator>`__
* `openapi-spec-validator <https://github.com/python-openapi/openapi-spec-validator>`__
Python library that validates OpenAPI Specs against the OpenAPI 2.0 (aka Swagger), OpenAPI 3.0 and OpenAPI 3.1 specification. The validator aims to check for full compliance with the Specification.

License
Expand Down
2 changes: 1 addition & 1 deletion openapi_schema_validator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__author__ = "Artur Maciag"
__email__ = "[email protected]"
__version__ = "0.4.3"
__url__ = "https://github.com/p1c2u/openapi-schema-validator"
__url__ = "https://github.com/python-openapi/openapi-schema-validator"
__license__ = "3-clause BSD License"

__all__ = [
Expand Down
4 changes: 2 additions & 2 deletions openapi_schema_validator/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
type_checker=oas_types.oas30_type_checker,
format_checker=oas_format.oas30_format_checker,
# NOTE: version causes conflict with global jsonschema validator
# See https://github.com/p1c2u/openapi-schema-validator/pull/12
# See https://github.com/python-openapi/openapi-schema-validator/pull/12
# version="oas30",
id_of=lambda schema: schema.get("id", ""),
)
Expand Down Expand Up @@ -103,7 +103,7 @@ def _patch_validator_with_read_write_context(cls: Type[Validator]) -> None:
"""Adds read/write context to jsonschema validator class"""
# subclassing validator classes is not intended to
# be part of their public API and will raise error
# See https://github.com/p1c2u/openapi-schema-validator/issues/48
# See https://github.com/python-openapi/openapi-schema-validator/issues/48
original_init = cls.__init__
original_evolve = cls.evolve

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ description = "OpenAPI schema validation for Python"
authors = ["Artur Maciag <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.rst"
repository = "https://github.com/p1c2u/openapi-schema-validator"
repository = "https://github.com/python-openapi/openapi-schema-validator"
keywords = ["openapi", "swagger", "schema"]
classifiers = [
"Development Status :: 4 - Beta",
Expand Down