Skip to content

Commit

Permalink
Move to python-openapi org
Browse files Browse the repository at this point in the history
  • Loading branch information
p1c2u committed Feb 27, 2023
1 parent ab0fb74 commit acfdd59
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
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__ = "maciag.artur@gmail.com"
__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 <maciag.artur@gmail.com>"]
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

0 comments on commit acfdd59

Please sign in to comment.