Skip to content

Commit 01043da

Browse files
committed
Drop support for Python 3.6
1 parent 4fae244 commit 01043da

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ language: python
22
dist: xenial
33

44
python:
5-
- "3.6"
65
- "3.7"
6+
- "3.8"
7+
- "3.9"
78

89
install:
910
- pip install -r test-requirements.txt

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Pip is the simplest way to install Baudot:
6464

6565
pip install baudot
6666

67-
This library works with Python 3.6 and up.
67+
This library works with Python 3.7 and up.
6868
It does not have any external requirement.
6969

7070
## Docs

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@
2727

2828
setup(
2929
name='baudot',
30-
version='0.1.1.post2',
30+
version='0.2.0.dev0',
3131
description='Tools for handling stateful 5-bit encoding',
3232
long_description=LONG_DESC,
3333
author='Xavier Villaneau',
3434
author_email='xvillaneau+baudot@gmail.com',
3535
url='https://github.com/xvillaneau/python-baudot',
3636
license='LGPLv3',
37-
python_requires='>=3.6.0',
37+
python_requires='>=3.7.0',
3838
packages=find_packages(exclude=('tests',)),
3939
test_requires=["pytest", "hypothesis", "coverage", "pylint"],
4040
classifiers=[
4141
'Development Status :: 4 - Beta',
4242
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
4343
'Programming Language :: Python :: 3',
44-
'Programming Language :: Python :: 3.6',
44+
'Programming Language :: Python :: 3.7',
4545
'Topic :: Communications',
4646
],
4747
)

0 commit comments

Comments
 (0)