Skip to content

Commit cefdac9

Browse files
authored
Merge pull request #523 from python-openapi/feature/move-to-org
Move to python-openapi org
2 parents 2d7122b + 5e9672a commit cefdac9

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
lines changed

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ openapi-core
44

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

5252
.. code-block:: console
5353
54-
pip install -e git+https://github.com/p1c2u/openapi-core.git#egg=openapi_core
54+
pip install -e git+https://github.com/python-openapi/openapi-core.git#egg=openapi_core
5555
5656
5757
First steps
@@ -97,9 +97,9 @@ If you just want to validate your request/response data without unmarshalling, r
9797

9898
Related projects
9999
################
100-
* `openapi-spec-validator <https://github.com/p1c2u/openapi-spec-validator>`__
100+
* `openapi-spec-validator <https://github.com/python-openapi/openapi-spec-validator>`__
101101
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.
102-
* `openapi-schema-validator <https://github.com/p1c2u/openapi-schema-validator>`__
102+
* `openapi-schema-validator <https://github.com/python-openapi/openapi-schema-validator>`__
103103
Python library that validates schema against the OpenAPI Schema Specification v3.0 and OpenAPI Schema Specification v3.1.
104104
* `bottle-openapi-3 <https://github.com/cope-systems/bottle-openapi-3>`__
105105
OpenAPI 3.0 Support for the Bottle Web Framework

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"provider": "google",
7171
"property": "G-J6T05Z51NY",
7272
},
73-
"repo_url": "https://github.com/p1c2u/openapi-core/",
73+
"repo_url": "https://github.com/python-openapi/openapi-core/",
7474
"repo_name": "openapi-core",
7575
"repo_type": "github",
7676
"icon": {

docs/contributing.rst

Lines changed: 2 additions & 2 deletions
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-core/issues>`__.
15-
* Make sure it is not a support request or question better suited for `Discussion board <https://github.com/p1c2u/openapi-core/discussions>`__.
14+
* Check whether your issue does not already exist in the `Issue tracker <https://github.com/python-openapi/openapi-core/issues>`__.
15+
* Make sure it is not a support request or question better suited for `Discussion board <https://github.com/python-openapi/openapi-core/discussions>`__.
1616

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

docs/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Installation
4040

4141
.. code-block:: console
4242
43-
pip install -e git+https://github.com/p1c2u/openapi-core.git#egg=openapi_core
43+
pip install -e git+https://github.com/python-openapi/openapi-core.git#egg=openapi_core
4444
4545
First steps
4646
-----------
@@ -85,9 +85,9 @@ If you just want to validate your request/response data without unmarshalling, r
8585
Related projects
8686
----------------
8787

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

9393
License

openapi_core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
__author__ = "Artur Maciag"
4747
__email__ = "maciag.artur@gmail.com"
4848
__version__ = "0.17.0a3"
49-
__url__ = "https://github.com/p1c2u/openapi-core"
49+
__url__ = "https://github.com/python-openapi/openapi-core"
5050
__license__ = "BSD 3-Clause License"
5151

5252
__all__ = [

openapi_core/unmarshalling/schemas/factories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def create(
8181
)
8282

8383
# FIXME: don;t raise exception on unknown format
84-
# See https://github.com/p1c2u/openapi-core/issues/515
84+
# See https://github.com/python-openapi/openapi-core/issues/515
8585
if (
8686
schema_format
8787
and schema_format not in schema_validator

openapi_core/validation/schemas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
oas31_schema_validators_factory = SchemaValidatorsFactory(
2222
OAS31Validator,
2323
# FIXME: OpenAPI 3.1 schema validator uses OpenAPI 3.0 format checker.
24-
# See https://github.com/p1c2u/openapi-core/issues/506
24+
# See https://github.com/python-openapi/openapi-core/issues/506
2525
format_checker=OAS30ReadValidator.FORMAT_CHECKER,
2626
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ description = "client-side and server-side support for the OpenAPI Specification
3434
authors = ["Artur Maciag <maciag.artur@gmail.com>"]
3535
license = "BSD-3-Clause"
3636
readme = "README.rst"
37-
repository = "https://github.com/p1c2u/openapi-core"
37+
repository = "https://github.com/python-openapi/openapi-core"
3838
documentation = "https://openapi-core.readthedocs.io"
3939
keywords = ["openapi", "swagger", "schema"]
4040
classifiers = [

tests/integration/unmarshalling/test_unmarshallers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def test_string_uuid_invalid(self, unmarshallers_factory):
401401
@pytest.mark.xfail(
402402
reason=(
403403
"Formats raise error for other types. "
404-
"See https://github.com/p1c2u/openapi-schema-validator/issues/66"
404+
"See https://github.com/python-openapi/openapi-schema-validator/issues/66"
405405
)
406406
)
407407
@pytest.mark.parametrize(
@@ -1751,7 +1751,7 @@ def test_basic_type_oas30_formats_invalid(
17511751
@pytest.mark.xfail(
17521752
reason=(
17531753
"OAS 3.0 string type checker allows byte. "
1754-
"See https://github.com/p1c2u/openapi-schema-validator/issues/64"
1754+
"See https://github.com/python-openapi/openapi-schema-validator/issues/64"
17551755
)
17561756
)
17571757
def test_string_format_binary_invalid(self, unmarshallers_factory):
@@ -1771,7 +1771,7 @@ def test_string_format_binary_invalid(self, unmarshallers_factory):
17711771
@pytest.mark.xfail(
17721772
reason=(
17731773
"Rraises TypeError not SchemaError. "
1774-
"See ttps://github.com/p1c2u/openapi-schema-validator/issues/65"
1774+
"See ttps://github.com/python-openapi/openapi-schema-validator/issues/65"
17751775
)
17761776
)
17771777
@pytest.mark.parametrize(
@@ -1951,7 +1951,7 @@ def unmarshallers_factory(self):
19511951
@pytest.mark.xfail(
19521952
reason=(
19531953
"OpenAPI 3.1 schema validator uses OpenAPI 3.0 format checker."
1954-
"See https://github.com/p1c2u/openapi-core/issues/506"
1954+
"See https://github.com/python-openapi/openapi-core/issues/506"
19551955
)
19561956
)
19571957
@pytest.mark.parametrize(

tests/unit/unmarshalling/test_schema_unmarshallers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def custom_format_validator(value):
303303
@pytest.mark.xfail(
304304
reason=(
305305
"Not registered format raises FormatterNotFoundError"
306-
"See https://github.com/p1c2u/openapi-core/issues/515"
306+
"See https://github.com/python-openapi/openapi-core/issues/515"
307307
)
308308
)
309309
def test_schema_format_validator_format_invalid(

0 commit comments

Comments
 (0)