Skip to content

Commit

Permalink
Wrap up removal of Python2 support. Fixes #483
Browse files Browse the repository at this point in the history
  • Loading branch information
ecederstrand committed Jan 17, 2020
1 parent 94dc40f commit e93c438
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ os: linux
dist: bionic
sudo: true
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ HEAD
----
- The new Autodiscover implementation added in 2.2.0 is now default. To switch back to the old
implementation, set the environment variable `EXCHANGELIB_AUTODISCOVER_VERSION=legacy`.
- Removed support for Python 2


2.2.0
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,14 @@ def read(file_name):
},
packages=find_packages(exclude=('tests',)),
tests_require=['PyYAML', 'requests_mock', 'psutil', 'flake8'],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
python_requires=">=3.5",
test_suite='tests',
zip_safe=False,
url='https://github.com/ecederstrand/exchangelib',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Communications',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)

0 comments on commit e93c438

Please sign in to comment.