Skip to content
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-core

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

.. code-block:: console

pip install -e git+https://github.com/p1c2u/openapi-core.git#egg=openapi_core
pip install -e git+https://github.com/python-openapi/openapi-core.git#egg=openapi_core


First steps
Expand Down Expand Up @@ -97,9 +97,9 @@ If you just want to validate your request/response data without unmarshalling, r

Related projects
################
* `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.
* `openapi-schema-validator <https://github.com/p1c2u/openapi-schema-validator>`__
* `openapi-schema-validator <https://github.com/python-openapi/openapi-schema-validator>`__
Python library that validates schema against the OpenAPI Schema Specification v3.0 and OpenAPI Schema Specification v3.1.
* `bottle-openapi-3 <https://github.com/cope-systems/bottle-openapi-3>`__
OpenAPI 3.0 Support for the Bottle Web Framework
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"provider": "google",
"property": "G-J6T05Z51NY",
},
"repo_url": "https://github.com/p1c2u/openapi-core/",
"repo_url": "https://github.com/python-openapi/openapi-core/",
"repo_name": "openapi-core",
"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-core/issues>`__.
* Make sure it is not a support request or question better suited for `Discussion board <https://github.com/p1c2u/openapi-core/discussions>`__.
* Check whether your issue does not already exist in the `Issue tracker <https://github.com/python-openapi/openapi-core/issues>`__.
* Make sure it is not a support request or question better suited for `Discussion board <https://github.com/python-openapi/openapi-core/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 @@ -40,7 +40,7 @@ Installation

.. code-block:: console

pip install -e git+https://github.com/p1c2u/openapi-core.git#egg=openapi_core
pip install -e git+https://github.com/python-openapi/openapi-core.git#egg=openapi_core

First steps
-----------
Expand Down Expand Up @@ -85,9 +85,9 @@ If you just want to validate your request/response data without unmarshalling, r
Related projects
----------------

* `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.
* `openapi-schema-validator <https://github.com/p1c2u/openapi-schema-validator>`__
* `openapi-schema-validator <https://github.com/python-openapi/openapi-schema-validator>`__
Python library that validates schema against the OpenAPI Schema Specification v3.0 and OpenAPI Schema Specification v3.1.

License
Expand Down
2 changes: 1 addition & 1 deletion openapi_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
__author__ = "Artur Maciag"
__email__ = "maciag.artur@gmail.com"
__version__ = "0.17.0a3"
__url__ = "https://github.com/p1c2u/openapi-core"
__url__ = "https://github.com/python-openapi/openapi-core"
__license__ = "BSD 3-Clause License"

__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion openapi_core/unmarshalling/schemas/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def create(
)

# FIXME: don;t raise exception on unknown format
# See https://github.com/p1c2u/openapi-core/issues/515
# See https://github.com/python-openapi/openapi-core/issues/515
if (
schema_format
and schema_format not in schema_validator
Expand Down
2 changes: 1 addition & 1 deletion openapi_core/validation/schemas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
oas31_schema_validators_factory = SchemaValidatorsFactory(
OAS31Validator,
# FIXME: OpenAPI 3.1 schema validator uses OpenAPI 3.0 format checker.
# See https://github.com/p1c2u/openapi-core/issues/506
# See https://github.com/python-openapi/openapi-core/issues/506
format_checker=OAS30ReadValidator.FORMAT_CHECKER,
)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ description = "client-side and server-side support for the OpenAPI Specification
authors = ["Artur Maciag <maciag.artur@gmail.com>"]
license = "BSD-3-Clause"
readme = "README.rst"
repository = "https://github.com/p1c2u/openapi-core"
repository = "https://github.com/python-openapi/openapi-core"
documentation = "https://openapi-core.readthedocs.io"
keywords = ["openapi", "swagger", "schema"]
classifiers = [
Expand Down
8 changes: 4 additions & 4 deletions tests/integration/unmarshalling/test_unmarshallers.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def test_string_uuid_invalid(self, unmarshallers_factory):
@pytest.mark.xfail(
reason=(
"Formats raise error for other types. "
"See https://github.com/p1c2u/openapi-schema-validator/issues/66"
"See https://github.com/python-openapi/openapi-schema-validator/issues/66"
)
)
@pytest.mark.parametrize(
Expand Down Expand Up @@ -1751,7 +1751,7 @@ def test_basic_type_oas30_formats_invalid(
@pytest.mark.xfail(
reason=(
"OAS 3.0 string type checker allows byte. "
"See https://github.com/p1c2u/openapi-schema-validator/issues/64"
"See https://github.com/python-openapi/openapi-schema-validator/issues/64"
)
)
def test_string_format_binary_invalid(self, unmarshallers_factory):
Expand All @@ -1771,7 +1771,7 @@ def test_string_format_binary_invalid(self, unmarshallers_factory):
@pytest.mark.xfail(
reason=(
"Rraises TypeError not SchemaError. "
"See ttps://github.com/p1c2u/openapi-schema-validator/issues/65"
"See ttps://github.com/python-openapi/openapi-schema-validator/issues/65"
)
)
@pytest.mark.parametrize(
Expand Down Expand Up @@ -1951,7 +1951,7 @@ def unmarshallers_factory(self):
@pytest.mark.xfail(
reason=(
"OpenAPI 3.1 schema validator uses OpenAPI 3.0 format checker."
"See https://github.com/p1c2u/openapi-core/issues/506"
"See https://github.com/python-openapi/openapi-core/issues/506"
)
)
@pytest.mark.parametrize(
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/unmarshalling/test_schema_unmarshallers.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def custom_format_validator(value):
@pytest.mark.xfail(
reason=(
"Not registered format raises FormatterNotFoundError"
"See https://github.com/p1c2u/openapi-core/issues/515"
"See https://github.com/python-openapi/openapi-core/issues/515"
)
)
def test_schema_format_validator_format_invalid(
Expand Down