Skip to content

Commit 8225a4b

Browse files
authored
Merge pull request #70 from infothrill/develop
bump to 0.4.4
2 parents 70f5ba6 + a177418 commit 8225a4b

14 files changed

Lines changed: 52 additions & 23 deletions

File tree

.pre-commit-config.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- repo: git@github.com:pre-commit/pre-commit-hooks
2+
sha: v0.9.1
3+
hooks:
4+
- id: check-case-conflict
5+
- id: fix-encoding-pragma
6+
- id: check-docstring-first

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
sudo: required
1+
sudo: false
22
language: python
33
python:
44
- "2.6"

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
33
Release history
44
---------------
5+
0.4.4 (December 27th 2017)
6+
++++++++++++++++++++++++++
7+
- fixed: fixed wheel dependency on python 2.6 and 3.3
8+
- fixed: pep8 related changes, doc fixes
9+
510
0.4.3 (June 26th 2017)
611
++++++++++++++++++++++
712
- fixed: nsupdate URLs

Makefile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,10 @@ deb:
4141

4242

4343
clean:
44-
@echo "Cleaning up distutils stuff"
45-
rm -rf build
46-
rm -rf dist
47-
rm -rf deb_dist
48-
rm -rf *.egg
49-
rm -rf *.egg-info
44+
@echo "Cleaning up distutils and tox stuff"
45+
rm -rf build dist deb_dist
46+
rm -rf *.egg .eggs *.egg-info
47+
rm -rf .tox
5048
@echo "Cleaning up byte compiled python stuff"
51-
find . -type f -regex ".*\.py[co]$$" -delete
49+
find . -regex "\(.*__pycache__.*\|*.py[co]\)" -delete
50+

README.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ Dyndnsc - dynamic dns update client
44
.. image:: https://travis-ci.org/infothrill/python-dyndnsc.svg?branch=develop
55
:target: https://travis-ci.org/infothrill/python-dyndnsc
66

7-
.. image:: https://coveralls.io/repos/infothrill/python-dyndnsc/badge.png?branch=develop
7+
.. image:: https://img.shields.io/coveralls/infothrill/python-dyndnsc/develop.svg
88
:target: https://coveralls.io/r/infothrill/python-dyndnsc?branch=develop
9+
:alt: Code coverage
910

1011
.. image:: https://img.shields.io/pypi/v/dyndnsc.svg
1112
:target: https://pypi.python.org/pypi/dyndnsc/
1213

13-
.. image:: https://requires.io/github/infothrill/python-dyndnsc/requirements.png?branch=develop
14-
:target: https://requires.io/github/infothrill/python-dyndnsc/requirements/?branch=develop
15-
:alt: Requirements Status
14+
.. image:: https://img.shields.io/requires/github/infothrill/python-dyndnsc.svg
15+
:target: https://requires.io/github/infothrill/python-dyndnsc/requirements/?branch=develop
16+
:alt: Requirements Status
1617

1718
*Dyndnsc* is a command line client for sending updates to dynamic
1819
dns (ddns, dyndns) services. It supports multiple protocols and services,
@@ -45,7 +46,7 @@ Installation
4546
4647
Requirements
4748
============
48-
* Python 2.6, 2.7 or 3.2+
49+
* Python 2.6, 2.7 or 3.3+
4950

5051

5152
Status

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Sphinx==1.6.2
1+
Sphinx==1.6.3

docs/user/faq.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ supported:
1515

1616
* Python 2.6
1717
* Python 2.7
18-
* Python 3.2
1918
* Python 3.3
2019
* Python 3.4
21-
* PyPy 1.9
20+
* Python 3.5
21+
* Python 3.6
22+
* PyPy
2223

23-
Support for Python 2.6 and 3.2 may be dropped at any time.
24+
Support for Python 2.6 may be dropped at any time.
2425

2526
Is service xyz supported?
2627
-------------------------

dyndnsc/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1+
# -*- coding: utf-8 -*-
12
from . import updater
23
from .core import getDynDnsClientForConfig, DynDnsClient
34

4-
__version__ = '0.4.3'
5+
__version__ = '0.4.4'

dyndnsc/common/detect_ip.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
23

34
# Permission to use, copy, modify, and/or distribute this software for any
45
# purpose with or without fee is hereby granted, provided that the above

dyndnsc/tests/plugins/notify/test_growl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
import unittest
23

34

0 commit comments

Comments
 (0)