Commit 8ec9ee8b authored by Andrew Quinn's avatar Andrew Quinn
Browse files

Merge branch 'newdocs' into 'master'

Newdocs

See merge request !70
parents 9122b2b7 44757498
Loading
Loading
Loading
Loading
Loading
+66 −13
Original line number Diff line number Diff line
default:
  image: debian:buster
include:
  - template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'

before_script:
  - apt update
  - apt upgrade -q -y
  - pip install -r requirements.txt

stages:
  - build_test
  - build

build_test:
  stage: build_test
build35:
  stage: build
  image: python:3.6
  script:
    - flake8
    - make clean
    - make all
    - pytest
  artifacts:
    paths:
      - dist/
    expire_in: 1 week

build36:
  stage: build
  image: python:3.6
  script:
    - flake8
    - make clean
    - make all
    - pytest
  artifacts:
    paths:
      - dist/
    expire_in: 1 week

build37:
  stage: build
  image: python:3.7
  script:
    - flake8
    - make clean
    - make all
    - pytest
  artifacts:
    paths:
      - dist/
    expire_in: 1 week

build38:
  stage: build
  image: python:3.8
  script:
    - flake8
    - make clean
    - make all
    - pytest
  artifacts:
    paths:
      - dist/
    expire_in: 1 week

build39:
  stage: build
  image: python:3.9
  script:
    - apt update
    - apt upgrade -y
    - apt install -y python3-setuptools python3-numpy python3-scipy python3-matplotlib python3-h5py python3-sklearn python3-sphinx python3-sphinx-rtd-theme ipython3 flake8 python3-setuptools python3-pytest python3-pytest-cov python3-wheel codespell
    - flake8
    - make spell
    - python3 setup.py build
    - make doc-html
    - make testv3
    - python3 setup.py sdist bdist_wheel
    - make clean
    - make all
    - pytest
  artifacts:
    paths:
      - dist/
+7 −0
Original line number Diff line number Diff line
:root {
  /*****************************************************************************
  * Theme config
  **/
  --pst-header-height: 90px;

}
+220 KiB
Loading image diff...
+554 KiB
Loading image diff...
+35.2 KiB
Loading image diff...
Loading