Skip to content

Commit

Permalink
Fix installation from PyPI; Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
linusg committed Jul 15, 2018
1 parent 005ae3a commit ced734c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [1.1.1] - 2018-07-15
### Changed
- Fix installation from PyPI

## [1.1.0] - 2018-05-07
### Changed
- Push development status to 'Beta'
Expand Down Expand Up @@ -46,7 +50,8 @@
- Added some documentation
- Released on GitHub and PyPI

[Unreleased]: https://github.com/linusg/xbox360controller/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/linusg/xbox360controller/compare/v1.1.1...HEAD
[1.1.1]: https://github.com/linusg/xbox360controller/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/linusg/xbox360controller/compare/v1.0.6...v1.1.0
[1.0.6]: https://github.com/linusg/xbox360controller/compare/v1.0.5...v1.0.6
[1.0.5]: https://github.com/linusg/xbox360controller/compare/v1.0.4...v1.0.5
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
from setuptools import setup
from xbox360controller import __version__
import os

with open('README.md', 'r') as f:
long_description = f.read()
print(os.listdir())
try:
with open('README.md', 'r') as f:
long_description = f.read()
except FileNotFoundError as e:
print(e)
long_description = ""

setup(
name='xbox360controller',
Expand Down
2 changes: 1 addition & 1 deletion xbox360controller/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from xbox360controller.controller import Xbox360Controller

__author__ = 'Linus Groh'
__version__ = '1.1.0'
__version__ = '1.1.1'
__all__ = ['Xbox360Controller']

0 comments on commit ced734c

Please sign in to comment.