Skip to content

Commit 209164f

Browse files
committed
Release 0.1.2
1 parent 924e557 commit 209164f

File tree

3 files changed

+41
-7
lines changed

3 files changed

+41
-7
lines changed

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

CHANGELOG.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
Release 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

811
0.1.1 (November 2013)
912
+++++++++++++++++++++
1013
- Fixed a bug in launchd.plist.read() when no scope was specified
1114

1215
0.1 (November 2013)
1316
+++++++++++++++++++
14-
- Focus: initial public release
17+
- Focus: initial public release

README.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
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>`_.
68
It provides access to basic querying and interaction with launchd. It is
79
implemented using the Objective C
810
`ServiceManagement framework <https://developer.apple.com/library/mac/documentation/General/Reference/ServiceManagementFwRef/_index.html#//apple_ref/doc/uid/TP40009335>`_

0 commit comments

Comments
 (0)