From 6920a23019d90ebae7ff33ebb522c6623dcb06a6 Mon Sep 17 00:00:00 2001 From: Kevin Lyda <kevin@ie.suberic.net> Date: Sat, 21 Jan 2017 13:53:16 +0000 Subject: [PATCH] Don't test 3.5/3.6 for now. --- .gitlab-ci.yml | 25 +++++++++++++------------ zone2gandi/zone2gandi.py | 2 +- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e0612eb..594037d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,20 +30,21 @@ test:3.4: - python setup.py test # - py.test --cov=zone2gandi tests -test:3.5: - image: python:3.5 - type: test - script: - - python setup.py install - - python setup.py test +# TODO: PyYAML fails to build under 3.5/3.6. Need to find out why. +#test:3.5: +# image: python:3.5 +# type: test +# script: +# - python setup.py install +# - python setup.py test # - py.test --cov=zone2gandi tests -test:3.6: - image: python:3.6 - type: test - script: - - python setup.py install - - python setup.py test +#test:3.6: +# image: python:3.6 +# type: test +# script: +# - python setup.py install +# - python setup.py test # - py.test --cov=zone2gandi tests test:pypy-2: diff --git a/zone2gandi/zone2gandi.py b/zone2gandi/zone2gandi.py index 99c7c76..fed259e 100755 --- a/zone2gandi/zone2gandi.py +++ b/zone2gandi/zone2gandi.py @@ -12,7 +12,7 @@ try: except ImportError as _: import xmlrpc as xmlrpclib -__version__ = "0.1.2" +__version__ = "0.1.3" def main(): -- GitLab