Skip to content

Commit

Permalink
Fixed typo (post release).
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Aug 3, 2022
1 parent 4f1879f commit 0f56a70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ avro parse -t "amar swopnera" -t "Dana mele ure cole" -t "obarito nIle."

The coding style for this project embraces readability and consistency over traditional styling methods. To start off, [flake8](https://flake8.pycqa.org/en/latest/) has been used as the primary linting tool. The unit tests are done using the [pytest](https://pypi.python.org/pypi/pytest) framework. The command line tool, on the other hand, is made using [Click](https://pypi.python.org/pypi/click) and the [Rich](https://github.com/Textualize/rich) framework. Coupled with the CLI, [PyClip](https://pypi.python.org/pypi/pyclip) has been used to implement clipboard functionality into the library.

If you want to set up your coding environment for this project, then ou can do so by running the following command in your terminal:
If you want to set up your coding environment for this project, then you can do so by running the following command in your terminal:

```bash
pip install -r tests/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion avro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@


# Set version information.
__version_info__ = ('0', '1', '4')
__version_info__ = ('0', '1', '4', 'post1')
__version__ = '.'.join(__version_info__)


Expand Down

0 comments on commit 0f56a70

Please sign in to comment.