From d6ce545fda9d46831ed9f4fb74a49164f05c770e Mon Sep 17 00:00:00 2001 From: Jason Thomale Date: Fri, 18 Nov 2022 11:53:09 -0600 Subject: [PATCH] Remove travis-CI cfg and update README Github actions are now working, so we can remove the old travis-CI config and add the Github actions badge to the README. --- .travis.yml | 27 --------------------------- README.md | 6 ++++-- 2 files changed, 4 insertions(+), 29 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 13e5069..0000000 --- a/.travis.yml +++ /dev/null @@ -1,27 +0,0 @@ -language: python -matrix: - include: - - python: "2.7" - env: TOX_ENV=py27 - - python: "3.4" - env: TOX_ENV=py34 - - python: "3.5" - env: TOX_ENV=py35 - - python: "3.6" - env: TOX_ENV=py36 - - python: "3.7" - dist: xenial - sudo: required - env: TOX_ENV=py37 - - python: "2.7" - env: TOX_ENV=flake8 - allow_failures: - - env: TOX_ENV=flake8 -before_install: - - "pip install --upgrade pip" - - "pip install --upgrade setuptools" - - "pip install tox" -install: - - "pip install ." - -script: tox -e $TOX_ENV \ No newline at end of file diff --git a/README.md b/README.md index 88d072b..84f87e3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # pycallnumber +[![Build Status](https://github.com/unt-libraries/pycallnumber/actions/workflows/do-checks-and-tests.yml/badge.svg?branch=master)](https://github.com/unt-libraries/pycallnumber/actions) + Use pycallnumber in your library's Python projects to parse, model, and manipulate any type of call number string. Support for Library of Congress, Dewey Decimal, SuDocs, and local call numbers is built in, and you can extend built-in classes to customize behavior or model other types of call numbers and formatted strings. * [Installation](#Installation) @@ -10,11 +12,11 @@ Use pycallnumber in your library's Python projects to parse, model, and manipula ### Requirements -Tests pass on Linux and MacOS Python 2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11. Version 3.4 and below may still work, but I'm unable to get these to compile any more so cannot test them. +Tests pass on Linux and MacOS Python 2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11. Versions 3.4 and below may still work, but I'm unable to get these to compile any more so cannot test them. #### Warning: Outdated Python Versions -The next version of pycallnumber (likely 1.0.0) will drop support for Python versions older than 3.7. +***Warning*** — The next release, v1.0.0, will drop support for Python versions older than 3.7. ### Dependencies