Skip to content

Commit

Permalink
Fixed broken windows installation
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Oct 29, 2019
1 parent 2ec6ddf commit 6ac2862
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Developed by *Christian Visintin*

Current Version: **1.1.1 (26/10/2019)**
Current Version: **1.1.2 (29/10/2019)**

- [ATtila](#attila)
- [Introduction](#introduction)
Expand Down Expand Up @@ -323,6 +323,10 @@ nosetests -v --with-coverage --cover-tests --cover-package=attila --nocapture te

## Changelog

### ATtila 1.1.2 (29/10/2019)

* Fixed broken windows installation

### ATtila 1.1.1 (26/10/2019)

- Didn't deploy virtual.
Expand Down
2 changes: 1 addition & 1 deletion attila/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
#

# Version of the ATtila package
__version__ = "1.1.1"
__version__ = "1.1.2"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
# The directory containing this file
ROOT = Path(__file__).parent

README = (ROOT / "README.md").read_text()
README = (ROOT / "README.md").read_text(encoding="utf-8")

setup(
name='attila',
version='1.1.1',
version='1.1.2',
description='Python module to communicate easily with modems and RF modules using AT commands',
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 6ac2862

Please sign in to comment.