Skip to content

Commit 91f5cf2

Browse files
authored
Merge pull request #196 from python-openapi/feature/move-to-org
Move to python-openapi org
2 parents f966543 + 7698e29 commit 91f5cf2

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ OpenAPI Spec validator
44

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

4444
.. code-block:: bash
4545
46-
pip install -e git+https://github.com/p1c2u/openapi-spec-validator.git#egg=openapi_spec_validator
46+
pip install -e git+https://github.com/python-openapi/openapi-spec-validator.git#egg=openapi_spec_validator
4747
4848
4949
Usage
@@ -102,9 +102,9 @@ For more details, read about `Python package <https://openapi-spec-validator.rea
102102
Related projects
103103
################
104104

105-
* `openapi-core <https://github.com/p1c2u/openapi-core>`__
105+
* `openapi-core <https://github.com/python-openapi/openapi-core>`__
106106
Python library that adds client-side and server-side support for the OpenAPI v3.0 and OpenAPI v3.1 specification.
107-
* `openapi-schema-validator <https://github.com/p1c2u/openapi-schema-validator>`__
107+
* `openapi-schema-validator <https://github.com/python-openapi/openapi-schema-validator>`__
108108
Python library that validates schema against the OpenAPI Schema Specification v3.0 and OpenAPI Schema Specification v3.1.
109109

110110
License

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"provider": "google",
3131
"property": "G-SWHTV603PN",
3232
},
33-
"repo_url": "https://github.com/p1c2u/openapi-spec-validator/",
33+
"repo_url": "https://github.com/python-openapi/openapi-spec-validator/",
3434
"repo_name": "openapi-spec-validator",
3535
"repo_type": "github",
3636
"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-spec-validator/issues>`__.
15-
* Make sure it is not a support request or question better suited for `Discussion board <https://github.com/p1c2u/openapi-spec-validator/discussions>`__.
14+
* Check whether your issue does not already exist in the `Issue tracker <https://github.com/python-openapi/openapi-spec-validator/issues>`__.
15+
* Make sure it is not a support request or question better suited for `Discussion board <https://github.com/python-openapi/openapi-spec-validator/discussions>`__.
1616

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

docs/hook.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A full .pre-commit-config.yaml example you can use in your repository:
1515
.. code-block:: yaml
1616
1717
repos:
18-
- repo: https://github.com/p1c2u/openapi-spec-validator
18+
- repo: https://github.com/python-openapi/openapi-spec-validator
1919
rev: 0.5.5 # The version to use or 'master' for latest
2020
hooks:
2121
- id: openapi-spec-validator

docs/index.rst

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

3333
.. code-block:: console
3434
35-
pip install -e git+https://github.com/p1c2u/openapi-spec-validator.git#egg=openapi_spec_validator
35+
pip install -e git+https://github.com/python-openapi/openapi-spec-validator.git#egg=openapi_spec_validator
3636
3737
Usage
3838
-----
@@ -94,9 +94,9 @@ Usage
9494
Related projects
9595
----------------
9696

97-
* `openapi-core <https://github.com/p1c2u/openapi-core>`__
97+
* `openapi-core <https://github.com/python-openapi/openapi-core>`__
9898
Python library that adds client-side and server-side support for the OpenAPI v3.0 and OpenAPI v3.1 specification.
99-
* `openapi-schema-validator <https://github.com/p1c2u/openapi-schema-validator>`__
99+
* `openapi-schema-validator <https://github.com/python-openapi/openapi-schema-validator>`__
100100
Python library that validates schema against the OpenAPI Schema Specification v3.0 and OpenAPI Schema Specification v3.1.
101101

102102
License

openapi_spec_validator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
__author__ = "Artur Maciag"
1010
__email__ = "maciag.artur@gmail.com"
1111
__version__ = "0.5.5"
12-
__url__ = "https://github.com/p1c2u/openapi-spec-validator"
12+
__url__ = "https://github.com/python-openapi/openapi-spec-validator"
1313
__license__ = "Apache License, Version 2.0"
1414

1515
__all__ = [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ description = "OpenAPI 2.0 (aka Swagger) and OpenAPI 3 spec validator"
2828
authors = ["Artur Maciag <maciag.artur@gmail.com>"]
2929
license = "Apache-2.0"
3030
readme = "README.rst"
31-
repository = "https://github.com/p1c2u/openapi-spec-validator"
31+
repository = "https://github.com/python-openapi/openapi-spec-validator"
3232
keywords = ["openapi", "swagger", "schema"]
3333
classifiers = [
3434
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)