Skip to content

Commit

Permalink
バージョン表記のの更新
Browse files Browse the repository at this point in the history
READMEのインストール手順を更新
  • Loading branch information
nisyuu committed Oct 15, 2023
1 parent 29a197b commit 09a9f53
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0.0
- Package version: 0.1.0
- Package version: 0.1.1
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand All @@ -14,6 +14,12 @@ Python 3.7+
## Installation & Usage
### pip install

Requests is available on PyPI:

```sh
pip install kendama
```

If the python package is hosted on a repository, you can install directly using:

```sh
Expand Down Expand Up @@ -108,8 +114,4 @@ Endpoints do not require authorization.


## Author
[uichi](https://github.com/uichi)




-[uichi](https://github.com/uichi)
2 changes: 1 addition & 1 deletion kendama/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
""" # noqa: E501


__version__ = "0.1.0"
__version__ = "0.1.1"

# import apis into sdk package
from kendama.api.v1_api import V1Api
Expand Down
2 changes: 1 addition & 1 deletion kendama/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/0.1.0/python'
self.user_agent = 'OpenAPI-Generator/0.1.1/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion kendama/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 1.0.0\n"\
"SDK Package Version: 0.1.0".\
"SDK Package Version: 0.1.1".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kendama"
version = "0.1.0"
version = "0.1.1"
description = "国税庁API"
authors = ["uichi <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "kendama"
VERSION = "0.1.0"
VERSION = "0.1.1"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down

0 comments on commit 09a9f53

Please sign in to comment.