Skip to content

Commit

Permalink
fix: pipの例が不適切なのを修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
tasuren committed Feb 12, 2023
1 parent f6f036d commit 0d736c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ It is still in beta.
## Installation
Normal: `pip install i21y`
YAML supported: `pip install i21y[yaml]`
Fast JSON (orjson) supported: `pip install i21y[orjson]`
Fast JSON (orjson) supported: `pip install i21y[fast-json]`

## Example
```python
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 = "i21y"
version = "0.1.0b1"
version = "0.1.0b2"
description = "The library for i18n support."
authors = ["Takagi Tasuku <tasuren@outlook.jp>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/i21y/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"tasuren - i21y"

__author__ = "Takagi Tasuku"
__version__ = "0.1.0b1"
__version__ = "0.1.0b2"
__all__ = ("Translator", "I21YError", "TranslationNotFound", "locale_str")

from .translator import Translator
Expand Down

0 comments on commit 0d736c1

Please sign in to comment.