Skip to content

Commit 17ec322

Browse files
authored
Merge pull request #69 from python-openapi/feature/move-to-org
Move to python-openapi org
2 parents ab0fb74 + acfdd59 commit 17ec322

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

Diff for: README.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ openapi-schema-validator
44

55
.. image:: https://img.shields.io/pypi/v/openapi-schema-validator.svg
66
:target: https://pypi.python.org/pypi/openapi-schema-validator
7-
.. image:: https://travis-ci.org/p1c2u/openapi-schema-validator.svg?branch=master
8-
:target: https://travis-ci.org/p1c2u/openapi-schema-validator
9-
.. image:: https://img.shields.io/codecov/c/github/p1c2u/openapi-schema-validator/master.svg?style=flat
10-
:target: https://codecov.io/github/p1c2u/openapi-schema-validator?branch=master
7+
.. image:: https://travis-ci.org/python-openapi/openapi-schema-validator.svg?branch=master
8+
:target: https://travis-ci.org/python-openapi/openapi-schema-validator
9+
.. image:: https://img.shields.io/codecov/c/github/python-openapi/openapi-schema-validator/master.svg?style=flat
10+
:target: https://codecov.io/github/python-openapi/openapi-schema-validator?branch=master
1111
.. image:: https://img.shields.io/pypi/pyversions/openapi-schema-validator.svg
1212
:target: https://pypi.python.org/pypi/openapi-schema-validator
1313
.. image:: https://img.shields.io/pypi/format/openapi-schema-validator.svg
@@ -43,7 +43,7 @@ Alternatively you can download the code and install from the repository:
4343

4444
.. code-block:: console
4545
46-
pip install -e git+https://github.com/p1c2u/openapi-schema-validator.git#egg=openapi_schema_validator
46+
pip install -e git+https://github.com/python-openapi/openapi-schema-validator.git#egg=openapi_schema_validator
4747
4848
4949
Usage
@@ -103,7 +103,7 @@ For more details read about `Validation <https://openapi-schema-validator.readth
103103

104104
Related projects
105105
################
106-
* `openapi-core <https://github.com/p1c2u/openapi-core>`__
106+
* `openapi-core <https://github.com/python-openapi/openapi-core>`__
107107
Python library that adds client-side and server-side support for the OpenAPI.
108-
* `openapi-spec-validator <https://github.com/p1c2u/openapi-spec-validator>`__
108+
* `openapi-spec-validator <https://github.com/python-openapi/openapi-spec-validator>`__
109109
Python library that validates OpenAPI Specs against the OpenAPI 2.0 (aka Swagger) and OpenAPI 3.0 specification

Diff for: docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"provider": "google",
3131
"property": "G-11RDPBZ7EJ",
3232
},
33-
"repo_url": "https://github.com/p1c2u/openapi-schema-validator/",
33+
"repo_url": "https://github.com/python-openapi/openapi-schema-validator/",
3434
"repo_name": "openapi-schema-validator",
3535
"repo_type": "github",
3636
"icon": {

Diff for: docs/contributing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Reporting bugs
1111
Before you report
1212
^^^^^^^^^^^^^^^^^
1313

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

1717
How to submit a report
1818
^^^^^^^^^^^^^^^^^^^^^^

Diff for: docs/index.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Installation
3030

3131
.. code-block:: console
3232
33-
pip install -e git+https://github.com/p1c2u/openapi-schema-validator.git#egg=openapi_schema_validator
33+
pip install -e git+https://github.com/python-openapi/openapi-schema-validator.git#egg=openapi_schema_validator
3434
3535
Usage
3636
-----
@@ -86,9 +86,9 @@ Read more about the :doc:`validation`.
8686
Related projects
8787
----------------
8888

89-
* `openapi-core <https://github.com/p1c2u/openapi-core>`__
89+
* `openapi-core <https://github.com/python-openapi/openapi-core>`__
9090
Python library that adds client-side and server-side support for the OpenAPI v3.0 and OpenAPI v3.1 specification.
91-
* `openapi-spec-validator <https://github.com/p1c2u/openapi-spec-validator>`__
91+
* `openapi-spec-validator <https://github.com/python-openapi/openapi-spec-validator>`__
9292
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.
9393

9494
License

Diff for: openapi_schema_validator/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
__author__ = "Artur Maciag"
1010
__email__ = "[email protected]"
1111
__version__ = "0.4.3"
12-
__url__ = "https://github.com/p1c2u/openapi-schema-validator"
12+
__url__ = "https://github.com/python-openapi/openapi-schema-validator"
1313
__license__ = "3-clause BSD License"
1414

1515
__all__ = [

Diff for: openapi_schema_validator/validators.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
type_checker=oas_types.oas30_type_checker,
5959
format_checker=oas_format.oas30_format_checker,
6060
# NOTE: version causes conflict with global jsonschema validator
61-
# See https://github.com/p1c2u/openapi-schema-validator/pull/12
61+
# See https://github.com/python-openapi/openapi-schema-validator/pull/12
6262
# version="oas30",
6363
id_of=lambda schema: schema.get("id", ""),
6464
)
@@ -103,7 +103,7 @@ def _patch_validator_with_read_write_context(cls: Type[Validator]) -> None:
103103
"""Adds read/write context to jsonschema validator class"""
104104
# subclassing validator classes is not intended to
105105
# be part of their public API and will raise error
106-
# See https://github.com/p1c2u/openapi-schema-validator/issues/48
106+
# See https://github.com/python-openapi/openapi-schema-validator/issues/48
107107
original_init = cls.__init__
108108
original_evolve = cls.evolve
109109

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ description = "OpenAPI schema validation for Python"
2828
authors = ["Artur Maciag <[email protected]>"]
2929
license = "BSD-3-Clause"
3030
readme = "README.rst"
31-
repository = "https://github.com/p1c2u/openapi-schema-validator"
31+
repository = "https://github.com/python-openapi/openapi-schema-validator"
3232
keywords = ["openapi", "swagger", "schema"]
3333
classifiers = [
3434
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)