Skip to content

Commit

Permalink
Drop Python 3.3 support
Browse files Browse the repository at this point in the history
Closes: #60
  • Loading branch information
chrysn committed Mar 20, 2017
1 parent 7c970d1 commit 25cbf54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ the list or in the excluded items, file a wishlist item at the same location).
Dependencies
------------

Basic aiocoap works out of the box on Python_ 3.4 or greater, and on 3.3 with
additional dependencies.
Basic aiocoap works out of the box on Python_ 3.4 or greater.

The examples_ require Python 3.5 as they use newer syntax.

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
'oscoap': ['hkdf', 'cbor', 'cffi'],
'docs': ['sphinx', 'sphinx-argparse'], # extended below
'all': [], # populated below, contains everything but documentation dependencies for easier installation
':python_version<"3.4"': ['asyncio'],
}
tests_require = [] # populated below

Expand Down Expand Up @@ -86,7 +85,7 @@ def run(self):
'Topic :: Software Development :: Libraries :: Python Modules',
],

python_requires='>=3.3',
python_requires='>=3.4',
extras_require=extras_require,
tests_require=tests_require,

Expand Down

0 comments on commit 25cbf54

Please sign in to comment.