You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:code:`pushover_complete` officially supports Python 2.7, 3.5, and 3.6.
57
57
Currently, Python 3.3 and 3.4 pass all tests and function properly as well, but this could change: these versions are not officially targeted by development.
58
-
Support for Python 2.x may be dropped in the future, but only in a major version update (e.g. 1.x.y → 2.x.y) and this change will be announced well in advance.
58
+
Additionally, due to changes in Sphinx, the documentation cannot be built with Python 3.3.
59
+
60
+
As of version 1.1.0, support for Python 3.5 is deprecated. It will be removed in the next major version release.
61
+
This doesn't mean that Python 3.5 will stop working immediately, but I will no longer consider failing tests for that version to be critical.
59
62
63
+
Support for Python 2.x may be dropped in the future, but only in a major version update (e.g. 1.x.y → 2.x.y) and this change will be announced well in advance.
60
64
61
65
Contributing
62
66
------------
@@ -69,7 +73,17 @@ The full list of contributors is in :code:`AUTHORS.rst` or `on GitHub <https://g
69
73
Changelog
70
74
---------
71
75
72
-
Changes as of 23 December 2016
76
+
Changes as of 6 April 2018
77
+
78
+
1.1.0 <6 April 2018>
79
+
^^^^^^^^^^^^^^^^^^^^
80
+
81
+
- Add `image attachment support <https://pushover.net/api#attachments>`_ (Pulls `#5 <https://github.com/scolby33/pushover_complete/pull/5>`_ and `#9 <https://github.com/scolby33/pushover_complete/pull/9>`_)
82
+
- Officially add support for Python 3.6
83
+
- Change default tox environment for Python 3 to py36
84
+
- Refactored :code:`.travis.yml` to be more concise and use the new :code:`py` `environment specification <https://tox.readthedocs.io/en/3.0.0/example/basic.html#a-simple-tox-ini-default-environments>`_ (Pull `#8 <https://github.com/scolby33/pushover_complete/pull/8>`_)
85
+
- Some refactoring in the main API (more list comprehensions yay!) (Pull `#6 <https://github.com/scolby33/pushover_complete/pull/6>`_)
Copy file name to clipboardexpand all lines: docs/source/changelog.rst
+12-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,18 @@ Changelog
15
15
Details about this versioning scheme can be found on the `Semver website <http://semver.org/spec/v2.0.0.html>`_.
16
16
Versions postfixed with '-dev' are currently under development and those without a postfix are stable releases.
17
17
18
-
Changes as of 23 December 2016
18
+
Changes as of 6 April 2018
19
+
20
+
1.1.0 <6 April 2018>
21
+
^^^^^^^^^^^^^^^^^^^^
22
+
23
+
- Add `image attachment support <https://pushover.net/api#attachments>`_ (Pulls `#5 <https://github.com/scolby33/pushover_complete/pull/5>`_ and `#9 <https://github.com/scolby33/pushover_complete/pull/9>`_)
24
+
- Officially add support for Python 3.6
25
+
- Officially deprecate support for Python 3.5. It will be removed in the next major version release.
26
+
- Change default tox environment for Python 3 to py36
27
+
- Refactored :code:`.travis.yml` to be more concise and use the new :code:`py` `environment specification <https://tox.readthedocs.io/en/3.0.0/example/basic.html#a-simple-tox-ini-default-environments>`_ (Pull `#8 <https://github.com/scolby33/pushover_complete/pull/8>`_)
28
+
- Some refactoring in the main API (more list comprehensions yay!) (Pull `#6 <https://github.com/scolby33/pushover_complete/pull/6>`_)
:mod:`pushover_complete` officially supports Python 2.7, 3.5, and 3.6.
89
91
Currently, Python 3.3 and 3.4 pass all tests and function properly as well, but this could change: these versions are not officially targeted by development.
92
+
Additionally, due to changes in Sphinx, the documentation cannot be built with Python 3.3.
93
+
94
+
.. warning::
95
+
.. deprecated:: 1.1.0 Support for Python 3.5 is deprecated. It will be removed in the next major version release.
96
+
This doesn't mean that Python 3.5 will stop working immediately, but I will no longer consider failing tests for that version to be critical.
97
+
90
98
Support for Python 2.x may be dropped in the future, but only in a major version update (e.g. 1.x.y → 2.x.y) and this change will be announced well in advance.
91
99
92
100
See :ref:`installation` for further information about installing :mod:`pushover_complete` in all manner of ways.
@@ -160,7 +168,7 @@ Changelog
160
168
Details about this versioning scheme can be found on the `Semver website <http://semver.org/spec/v2.0.0.html>`_.
161
169
Versions postfixed with '-dev' are currently under development and those without a postfix are stable releases.
162
170
163
-
The current version of :mod:`pushover_complete` is |release|.
171
+
You are reading the documents for version |release| of :mod:`pushover_complete`.
164
172
165
173
Full changelogs can be found on the :ref:`changelog` page.
Copy file name to clipboardexpand all lines: docs/source/installation.rst
+4-4
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@
11
11
Installation
12
12
============
13
13
14
-
There are many ways to install a Python package like :code:`pushover_complete`. Here many of those will be explained and the advantages of each will be identified.
14
+
There are many ways to install a Python package like :mod:`pushover_complete`. Here many of those will be explained and the advantages of each will be identified.
15
15
16
-
If you are not yet familiar with virtual environments, stop reading this documentation and take a few moments to learn. Try some searches for "virtualenv," "virtualenvwrapper," and "pyvenv."
16
+
If you are not yet familiar with virtual environments, stop reading this documentation and take a few moments to learn. Try some searches for "virtualenv," "virtualenvwrapper," and the "venv" standard library module.
17
17
I promise that they will change your (Python) life.
18
18
19
19
Where to Get the Code
@@ -22,7 +22,7 @@ Where to Get the Code
22
22
From PyPI
23
23
^^^^^^^^^
24
24
25
-
Stable releases of :code:`pushover_complete` are located on PyPI, the `PYthon Package Index <https://pypi.python.org/pypi>`_.
25
+
Stable releases of :mod:`pushover_complete` are located on PyPI, the `PYthon Package Index <https://pypi.python.org/pypi>`_.
26
26
Installation from here is easy and generally the preferred method::
27
27
28
28
$ pip install pushover_complete
@@ -37,7 +37,7 @@ From GitHub
37
37
38
38
This works because only release-ready code is pushed to the master branch.
39
39
40
-
To get the latest and greatest version of :code:`pushover_complete` from the develop branch, install like this instead::
40
+
To get the latest and greatest version of :mod:`pushover_complete` from the develop branch, install like this instead::
Copy file name to clipboardexpand all lines: docs/source/roadmap.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,8 @@ The following Pushover API endpoints are fully implemented:
27
27
28
28
This constitutes all of the API endpoints available for entities acting as Pushover applications.
29
29
30
-
A command line interface is in the works to allow use directly from the shell.
30
+
.. versionadded:: 1.1.0 Additionally, the `image attachment functionality <https://pushover.net/api#attachments>`_ added to Pushover in January 2018 `with version 3.0 of the Pushover apps <https://updates.pushover.net/post/170043375237/pushing-images-with-pushover-30>`_ is now supported.
31
+
32
+
A command line interface is in the works to allow use directly from your shell.
31
33
32
34
The Pushover Open Client API may be implemented for a future release.
0 commit comments