diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 3b2f342..0000000 --- a/.travis.yml +++ /dev/null @@ -1,30 +0,0 @@ -language: python -fast_finish: true - -python: - - 2.7 - - 3.6 - -os: - - linux - -notifications: - email: false - -git: - depth: 3 - -addons: - apt: - packages: - - gfortran - -before_install: - - pip -q install coveralls - -install: pip install -e . --process-dependency-links - -script: coverage run tests/test.py -v - -after_success: coveralls - diff --git a/Makefile b/Makefile index d3432e1..cc332ce 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,8 @@ install-gfortran: sudo apt-get -y install gfortran install: - pip -q install coveralls && pip install numpy && pip install -e . + pip install coveralls numpy + pip install -e . test: coverage run --source=. --module unittest discover --start-directory tests --verbose diff --git a/README.rst b/README.rst index dc14a23..a53bd87 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,3 @@ -.. image:: https://travis-ci.org/rilma/pyHWM14.svg?branch=master - :target: https://travis-ci.org/rilma/pyHWM14 .. image:: https://github.com/rilma/pyHWM14/actions/workflows/ci.yaml/badge.svg :target: https://github.com/rilma/pyHWM14/actions/workflows/ci.yaml .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.240890.svg @@ -20,14 +18,13 @@ Installation From Source Code ---------------- +Currently supports Python 3.10 (see Github Actions) + .. code-block:: bash $ git clone https://github.com/rilma/pyHWM14.git $ cd pyHWM14 - $ pip -q install coveralls - $ pip install numpy - $ pip install -e . --process-dependency-links - + $ make install ------- Testing @@ -35,7 +32,7 @@ Testing .. code-block:: bash - $ coverage run tests/test.py -v + $ make test ---------