From aebb82103ab09636901a4b65046b7af2cd1b87c0 Mon Sep 17 00:00:00 2001 From: Tim Mitchell Date: Wed, 22 Sep 2021 16:35:58 +1200 Subject: [PATCH] #83: Remove remainders of obsolete travis integration. Bump version number. --- .travis.yml | 13 ------------- README.rst | 3 --- pure_interface.py | 2 +- setup.cfg | 2 +- tox.ini | 2 +- 5 files changed, 3 insertions(+), 19 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e6b05b4..0000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: python -python: - - 3.6 - - 3.7 - - 3.8 - - 3.9 -sudo: false - -install: - - pip install -r requirements_dev.txt - -script: - - python -m unittest discover -p "test*" diff --git a/README.rst b/README.rst index 84159e6..a55dfad 100644 --- a/README.rst +++ b/README.rst @@ -1,9 +1,6 @@ pure-interface ============== -.. image:: https://travis-ci.com/seequent/pure_interface.svg?branch=master - :target: https://travis-ci.com/seequent/pure_interface - A Python interface library that disallows function body content on interfaces and supports adaption. Jump to the `Reference`_. diff --git a/pure_interface.py b/pure_interface.py index 237f1a0..24dcbf7 100644 --- a/pure_interface.py +++ b/pure_interface.py @@ -18,7 +18,7 @@ import weakref -__version__ = '5.0.0' +__version__ = '5.0.1' is_development = not hasattr(sys, 'frozen') diff --git a/setup.cfg b/setup.cfg index 80afc2d..be93c0c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pure_interface -version = 5.0.0 +version = 5.0.1 description = A Python interface library that disallows function body content on interfaces and supports adaption. keywords = abc interface adapt adaption mapper structural typing dataclass author = Tim Mitchell diff --git a/tox.ini b/tox.ini index 73f966a..6ebaa44 100644 --- a/tox.ini +++ b/tox.ini @@ -9,6 +9,6 @@ envlist = py36, py37, py38, py39 [testenv] deps = pycontracts - dataclasses; python_version < 3.7 + dataclasses; python_version < '3.7' commands = python -m unittest discover -p "test*"