Skip to content

Commit

Permalink
📝 update readme version recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyongyu committed Sep 7, 2024
1 parent d895c2c commit 75fb44c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ pip install githubkit
poetry add githubkit
# or, use pdm
pdm add githubkit
# or, use uv
uv add githubkit
```

if you want to auth as github app, extra dependencies are required:
Expand All @@ -60,6 +62,8 @@ pip install githubkit[auth-app]
poetry add githubkit[auth-app]
# or, use pdm
pdm add githubkit[auth-app]
# or, use uv
uv add githubkit[auth-app]
```

if you want to mix sync and async calls in oauth device callback, extra dependencies are required:
Expand All @@ -70,6 +74,8 @@ pip install githubkit[auth-oauth-device]
poetry add githubkit[auth-oauth-device]
# or, use pdm
pdm add githubkit[auth-oauth-device]
# or, use uv
uv add githubkit[auth-oauth-device]
```

githubkit supports **both pydantic v1 and v2**, but pydantic v2 is recommended. If you have encountered any problems with pydantic v1/v2, please file an issue.
Expand All @@ -78,6 +84,8 @@ githubkit supports **both pydantic v1 and v2**, but pydantic v2 is recommended.
> githubkit uses [GitHub's official openapi schema](https://github.com/github/rest-api-description) to generate apis and models.
> You may occasionally encounter **breaking changes** like model names or model field types changing when upgrading githubkit.
> This is due to **upstream schema changes** and githubkit can not control this.
>
> githubkit recommends using a python dependency manager (like poetry / pdm / uv) to lock the version of githubkit to avoid unexpected changes.
## Quick Start

Expand Down

0 comments on commit 75fb44c

Please sign in to comment.