From bd21cb966c384366b37508168b5a26f979390501 Mon Sep 17 00:00:00 2001 From: paugier Date: Thu, 7 Dec 2023 15:34:18 +0100 Subject: [PATCH 1/2] Fix link towards site.cfg.default --- doc/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/install.rst b/doc/install.rst index dba6178e..0f896585 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -85,7 +85,7 @@ You can also configure the installation of fluidsim by creating the file ``~/.fluidsim-site.cfg`` (or ``site.cfg`` in the repo directory) and modify it to fit your requirements before the installation with pip:: - wget https://foss.heptapod.net/fluiddyn/fluidsim/raw/default/site.cfg.default -O ~/.fluidsim-site.cfg + wget https://foss.heptapod.net/fluiddyn/fluidsim/-/raw/branch/default/site.cfg.default -O ~/.fluidsim-site.cfg Runtime configuration ..................... From 109320d0909415767f84d6cf25700adfdf37f92f Mon Sep 17 00:00:00 2001 From: paugier Date: Thu, 7 Dec 2023 15:34:54 +0100 Subject: [PATCH 2/2] Remove .travis.yml (unused) --- .travis.yml | 59 ----------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 18dd5f80..00000000 --- a/.travis.yml +++ /dev/null @@ -1,59 +0,0 @@ -dist: focal -language: python - -python: - - 3.7 - - 3.8 - -env: - - TOXENV=py,codecov-travis - - TOXENV=py-pythran,codecov-travis - - TOXENV=py-fft,codecov-travis - -addons: - apt: - packages: - - libfftw3-dev - - libfftw3-mpi-dev - - libhdf5-openmpi-dev - - openmpi-bin - - libopenmpi-dev - - libopenblas-dev - -matrix: - fast_finish: true - include: - - python: 3.7 - env: TOXENV=lint - - allow_failures: - - python: 3.7 - env: TOXENV=lint - -before_cache: - - | - coverage erase - rm -f $HOME/.cache/pip/log/debug.log - -cache: - directories: - - $HOME/.cache/pip - # - $TRAVIS_BUILD_DIR/.tox - -install: - - pip install -U pip tox colorlog coverage fluiddevops - -before_script: - - | - mkdir -p $HOME/.config/matplotlib - echo 'backend : agg' > $HOME/.config/matplotlib/matplotlibrc - echo '[pythran]\ncomplex_hook = True\n[compiler]\nCXX = clang++-10\nCC = clang-10\n' > $HOME/.pythranrc - wget https://foss.heptapod.net/fluiddyn/fluidfft/raw/branch/default/site.cfg.files/site.cfg.travis_$TRAVIS_OS_NAME -O $HOME/.fluidfft-site.cfg - -script: - - set -o pipefail - - tox -vv | fluidicat --every 1 --wait 300 - -notifications: - email: false - irc: "chat.freenode.net#fluiddyn-tasks"