From 7159ab2e74656fa1884f0a2ccf5a646b0026a08b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Wed, 8 Apr 2020 09:53:03 -0400 Subject: Update README --- .travis.yml | 20 -------------------- README.rst | 15 +++++++-------- appveyor.yml | 38 -------------------------------------- 3 files changed, 7 insertions(+), 66 deletions(-) delete mode 100644 .travis.yml delete mode 100644 appveyor.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c34de14..0000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: python -matrix: - include: - - python: 3.8 - env: TOXENV=lint,typing - - python: 3.5 - env: TOXENV=py35-crypto,py35-nocrypto - - python: 3.6 - env: TOXENV=py36-crypto,py36-nocrypto - - python: 3.7 - env: TOXENV=py37-crypto,py37-nocrypto - - python: 3.8 - env: TOXENV=py38-crypto,py38-nocrypto -install: - - pip install -U pip - - pip install -U tox coveralls -script: - - tox -after_success: - - coveralls diff --git a/README.rst b/README.rst index 636b49c..c514e9e 100644 --- a/README.rst +++ b/README.rst @@ -1,17 +1,16 @@ PyJWT ===== -.. image:: https://travis-ci.com/jpadilla/pyjwt.svg?branch=master - :target: http://travis-ci.com/jpadilla/pyjwt?branch=master - -.. image:: https://ci.appveyor.com/api/projects/status/h8nt70aqtwhht39t?svg=true - :target: https://ci.appveyor.com/project/jpadilla/pyjwt - .. image:: https://img.shields.io/pypi/v/pyjwt.svg :target: https://pypi.python.org/pypi/pyjwt -.. image:: https://coveralls.io/repos/jpadilla/pyjwt/badge.svg?branch=master - :target: https://coveralls.io/r/jpadilla/pyjwt?branch=master +.. image:: https://github.com/jpadilla/pyjwt/workflows/CI/badge.svg?branch=master + :target: https://github.com/jpadilla/pyjwt/actions?workflow=CI + :alt: CI Status + +.. image:: https://codecov.io/github/jpadilla/pyjwt/branch/master/graph/badge.svg + :target: https://codecov.io/github/jpadilla/pyjwt + :alt: Test Coverage .. image:: https://readthedocs.org/projects/pyjwt/badge/?version=latest :target: https://pyjwt.readthedocs.io diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index ac139e9..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,38 +0,0 @@ -environment: - matrix: - - PYTHON: "C:\\Python35-x64" - TOX_ENV: "py35-crypto" - - - PYTHON: "C:\\Python36-x64" - TOX_ENV: "py36-crypto" - - - PYTHON: "C:\\Python37-x64" - TOX_ENV: "py37-crypto" - -init: - - SET PATH=%PYTHON%;%PATH% - - python -c "import sys;sys.stdout.write(sys.version)" - - ECHO . - - python -m pip list - -# pip & virtualenv are pre-installed -install: - - python -m pip install -U setuptools - - python -m pip install -U pip - - python -m pip install -U wheel - - python -m pip install -U tox - -build: false # Not a C# project, build stuff at the test step instead. - -test_script: - - python -m tox -e %TOX_ENV% - -after_test: - - python setup.py bdist_wheel - - ps: "ls dist" - -artifacts: - - path: dist\* - -#on_success: -# - TODO: upload the content of dist/*.whl to a public wheelhouse -- cgit v1.2.1