Skip to content

Commit 8aa1ded

Browse files
authored
Remove 3.5 support. (#23)
Aiohttp dropped support for 4.0+, and so did frozenlist 1.0.0.
1 parent 2cf3a76 commit 8aa1ded

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Installation
5353

5454
$ pip install aiosignal
5555

56-
The library requires Python 3.5.3 or newer.
56+
The library requires Python 3.6 or newer.
5757

5858

5959
Documentation
@@ -73,8 +73,8 @@ Feel free to post your questions and ideas here.
7373
Requirements
7474
============
7575

76-
- Python >= 3.5.3
77-
- frozenlist >= 1.0.0a0
76+
- Python >= 3.6
77+
- frozenlist >= 1.0.0
7878

7979
License
8080
=======

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import io
1717
import os
1818
import re
19-
import sys
19+
2020

2121
_docs_path = os.path.dirname(__file__)
2222
_version_path = os.path.abspath(os.path.join(_docs_path,

docs/index.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Installation
4747
4848
$ pip install aiosignal
4949
50-
The library requires Python 3.5.3 or newer.
50+
The library requires Python 3.6 or newer.
5151

5252
Dependencies
5353
------------
@@ -71,7 +71,8 @@ Feel free to post your questions and ideas here.
7171
Requirements
7272
============
7373

74-
- Python >= 3.5.3
74+
- Python >= 3.6
75+
- frozenlist >= 1.0.0
7576

7677
License
7778
=======

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
from setuptools import setup
66

7-
if sys.version_info < (3, 5, 3):
8-
raise RuntimeError("aiosignal 1.x requires Python 3.5.3+")
7+
if sys.version_info < (3, 6):
8+
raise RuntimeError("aiosignal 1.x requires Python 3.6+")
99

1010

1111
here = pathlib.Path(__file__).parent
@@ -19,7 +19,7 @@
1919
raise RuntimeError('Unable to determine version.')
2020

2121
install_requires = [
22-
'frozenlist>=1.0.0a0',
22+
'frozenlist>=1.0.0',
2323
]
2424

2525

@@ -38,7 +38,6 @@ def read(f):
3838
'Intended Audience :: Developers',
3939
'Programming Language :: Python',
4040
'Programming Language :: Python :: 3',
41-
'Programming Language :: Python :: 3.5',
4241
'Programming Language :: Python :: 3.6',
4342
'Programming Language :: Python :: 3.7',
4443
'Development Status :: 5 - Production/Stable',
@@ -63,7 +62,7 @@ def read(f):
6362
},
6463
license='Apache 2',
6564
packages=['aiosignal'],
66-
python_requires='>=3.5.3',
65+
python_requires='>=3.6',
6766
install_requires=install_requires,
6867
include_package_data=True,
6968
)

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22

3-
envlist = check, clean, {py35,py36,py37}-{debug,release}, report
3+
envlist = check, clean, {py36,py37,py38}-{debug,release}, report
44

55
[testenv]
66

@@ -20,9 +20,9 @@ setenv =
2020
debug: PYTHONASYNCIODEBUG = 1
2121

2222
basepython:
23-
py35: python3.5
2423
py36: python3.6
2524
py37: python3.7
25+
py38: python3.8
2626

2727
[testenv:check]
2828

@@ -37,7 +37,7 @@ commands =
3737
python setup.py check -rms
3838

3939
basepython:
40-
python3.6
40+
python3.7
4141

4242
[testenv:clean]
4343

@@ -48,7 +48,7 @@ commands =
4848
coverage erase
4949

5050
basepython:
51-
python3.6
51+
python3.7
5252

5353
[testenv:report]
5454

@@ -64,4 +64,4 @@ whitelist_externals =
6464
echo
6565

6666
basepython:
67-
python3.6
67+
python3.7

0 commit comments

Comments
 (0)