From 3573584192b36dfe90d5055ecd1625c783146dee Mon Sep 17 00:00:00 2001 From: Martin Rys Date: Fri, 12 Sep 2025 08:08:44 +0200 Subject: [PATCH] ci: Bump up versions and fix linting --- .travis.yml | 14 +++++++------- cmake/JoinPaths.cmake | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1e231e3..adb910d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ language: python python: - - "3.7" + - "3.13" -dist: focal +dist: noble before_install: - sudo apt-get install -y libfftw3-dev @@ -18,10 +18,10 @@ jobs: include: - name: "build (make)" script: - - make all - - make testall + - make all + - make testall - name: "build (cmake)" script: - - mkdir build && cd build - - cmake .. - - make + - mkdir build && cd build + - cmake .. + - make diff --git a/cmake/JoinPaths.cmake b/cmake/JoinPaths.cmake index c68d91b..5fc716a 100644 --- a/cmake/JoinPaths.cmake +++ b/cmake/JoinPaths.cmake @@ -6,7 +6,7 @@ # https://github.com/jtojnar/cmake-snips # # Modelled after Python’s os.path.join -# https://docs.python.org/3.7/library/os.path.html#os.path.join +# https://docs.python.org/3.13/library/os.path.html#os.path.join # Windows not supported function(join_paths joined_path first_path_segment) set(temp_path "${first_path_segment}")