Skip to content

Commit

Permalink
Add runtime support for Python 3.5.3 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
bachya authored Nov 3, 2018
1 parent 7cc5e66 commit 9c5d0a0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ Version 2.0.0 of `pytile` makes several breaking, but necessary changes:
If you wish to continue using the previous, synchronous version of `pytile`,
make sure to pin version 1.1.0.

# Python Versions

`pytile` is currently supported on:

* Python 3.5
* Python 3.6
* Python 3.7

However, running the test suite currently requires Python 3.6 or higher; tests
run on Python 3.5 will fail.

# Installation

```python
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
URL = 'https://github.com/bachya/pytile'
EMAIL = '[email protected]'
AUTHOR = 'Aaron Bach'
REQUIRES_PYTHON = '>=3.6.0'
REQUIRES_PYTHON = '>=3.5.3'
VERSION = None

# What packages are required for this module to be executed?
Expand Down Expand Up @@ -118,6 +118,7 @@ def run(self):
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
Expand Down

0 comments on commit 9c5d0a0

Please sign in to comment.