Skip to content

Commit 66d6483

Browse files
authored
release: 1.0.1 (#10)
* deprecate python 3.5 * support python 3.9 * Update requirements.txt
1 parent bbede4c commit 66d6483

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: [3.5, 3.6, 3.7, 3.8]
12+
python-version: [3.6, 3.7, 3.8, 3.9]
1313
steps:
1414

1515
- uses: actions/checkout@v1

docs/history.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# History
22

3+
### 1.0.1 (28-02-2021)
4+
* Deprecate Python 3.5
5+
* Support Python 3.9
6+
* Update dependencies
7+
38
### 1.0.0 (06-09-2020)
49
* Reworked xkcd API response json decoding
510
* Reworked `Comic`

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
nose2==0.9.* # tests
22
requests-mock==1.7.* # tests, Client
3-
aioresponses==0.6.* # tests, AsyncClient
3+
aioresponses==0.7.* # tests, AsyncClient
44
pylint==2.6.* # style
55
coverage==5.1.* # coverage
66
mkdocs==1.1.* # docs

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
aiohttp==3.6.*
2-
requests==2.23.*
1+
aiohttp>=3.7.3,<3.8
2+
requests>=2.23.*,<2.25.*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
5757
'Natural Language :: English',
5858
'Programming Language :: Python :: 3',
59-
'Programming Language :: Python :: 3.5',
6059
'Programming Language :: Python :: 3.6',
6160
'Programming Language :: Python :: 3.7',
6261
'Programming Language :: Python :: 3.8',
62+
'Programming Language :: Python :: 3.9',
6363
],
6464
)

xkcd_wrapper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
__author__ = 'Pedro HC David, https://github.com/Kronopt'
2828
__credits__ = ['Pedro HC David']
2929
__license__ = 'GPLv3'
30-
__version__ = '1.0.0'
30+
__version__ = '1.0.1'
3131

3232

3333
REQUESTS_INSTALLED = True

0 commit comments

Comments
 (0)