Skip to content

Commit 654465c

Browse files
committed
Merge branch 'master' of github.com:ZettaIO/cachet-client
2 parents 4864e51 + a113480 commit 654465c

5 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
11+
python-version: [3.6, 3.7, 3.8, 3.9]
1212

1313
steps:
1414
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
# 4.0.1
3+
4+
Drop python 3.5 support.
5+
26
# 4.0.0
37

48
## Tags
@@ -17,7 +21,7 @@ versions was limited to inspecting component slugs.
1721
## Other Additions / Fixes
1822

1923
* Incidents now support the ``occurred_at`` field in cachet 2.4
20-
" Updating components via incidents should no longer cause a 400 error if
24+
* Updating components via incidents should no longer cause a 400 error if
2125
`component_id` or `component_status` is missing
2226

2327
# 3.1.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# cachet-client
55

6-
A python 3.5+ API client for the open source status page system
6+
A python 3.6+ API client for the open source status page system
77
[Cachet](https://github.com/CachetHQ/Cachet).
88

99
* [cachet-client on github](https://github.com/ZettaIO/cachet-client)

cachetclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from cachetclient.client import Client # noqa
22

3-
___version__ = "4.0.0"
3+
___version__ = "4.0.1"

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name="cachet-client",
6-
version="4.0.0",
6+
version="4.0.1",
77
description="A python 3 client for the Cachet API",
88
long_description=open('README.md').read(),
99
long_description_content_type='text/markdown',
@@ -19,7 +19,6 @@
1919
classifiers=[
2020
'Programming Language :: Python',
2121
'Programming Language :: Python :: 3',
22-
'Programming Language :: Python :: 3.5',
2322
'Programming Language :: Python :: 3.6',
2423
'Programming Language :: Python :: 3.7',
2524
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)