File tree Expand file tree Collapse file tree 3 files changed +41
-7
lines changed
Expand file tree Collapse file tree 3 files changed +41
-7
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ matrix :
3+ include :
4+ - name : " Python 2.7.14 on macOS 10.13"
5+ os : osx
6+ osx_image : xcode9.3
7+ language : shell # 'language: python' errors on Travis CI macOS
8+ before_install :
9+ - python --version
10+ install : pip install tox --user
11+ script : tox -e py27
12+ - name : " Python 3.7.5 on macOS 10.14"
13+ os : osx
14+ osx_image : xcode10.2
15+ language : shell # 'language: python' errors on Travis CI macOS
16+ before_install :
17+ - python3 --version
18+ install : pip3 install tox --user
19+ script : tox -e py37
20+ env : PATH=/Users/travis/Library/Python/3.7/bin:$PATH
21+ - name : " Python 3.8.3 on macOS 10.15"
22+ os : osx
23+ osx_image : xcode12u
24+ language : shell # 'language: python' errors on Travis CI macOS
25+ before_install :
26+ - python3 --version
27+ install : pip3 install tox --user
28+ script : tox -e py38
29+ env : PATH=/Users/travis/Library/Python/3.8/bin:$PATH
Original file line number Diff line number Diff line change 11Release history
22---------------
33
4- 0.1.2 (????)
5- ++++++++++++
6- - added tox.ini for easier testing accross interpreter versions
4+ 0.1.2 (September 2020)
5+ ++++++++++++++++++++++
6+ - added tox.ini for easier testing accross interpreter versions
7+ - added travis test setup
8+ - fixed incompatibility with `launchctl ` in test code
9+ - fixed a typo in the README
710
8110.1.1 (November 2013)
912+++++++++++++++++++++
1013- Fixed a bug in launchd.plist.read() when no scope was specified
1114
12150.1 (November 2013)
1316+++++++++++++++++++
14- - Focus: initial public release
17+ - Focus: initial public release
Original file line number Diff line number Diff line change 1- .. image :: https://badge.fury .io/py/ launchd.png
2- :target: http ://badge.fury.io/py /launchd
1+ .. image :: https://img.shields .io/pypi/v/ launchd.svg
2+ :target: https ://pypi.python.org/pypi /launchd
33
4+ .. image :: https://travis-ci.org/infothrill/python-launchd.svg?branch=master
5+ :target: https://travis-ci.org/infothrill/python-launchd
46
5- launchd is a pythonic interface to interact with OS X's `launchd <https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man8/launchd.8.html >`_.
7+ * launchd * is a pythonic interface to interact with OS X's `launchd <https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man8/launchd.8.html >`_.
68It provides access to basic querying and interaction with launchd. It is
79implemented using the Objective C
810`ServiceManagement framework <https://developer.apple.com/library/mac/documentation/General/Reference/ServiceManagementFwRef/_index.html#//apple_ref/doc/uid/TP40009335 >`_
You can’t perform that action at this time.
0 commit comments