Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/actions/LinuxEnvironmentSetup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,4 @@ runs:
shell: bash -l {0}
run: |
sudo apt update
sudo apt install -y build-essential lsb-release wget software-properties-common gnupg libboost-all-dev
wget https://apt.llvm.org/llvm.sh
chmod u+x llvm.sh
sed -i 's/add-apt-repository "${REPO_NAME}"/add-apt-repository -y "${REPO_NAME}"/g' llvm.sh
sudo ./llvm.sh 18
sudo ln -sfn /usr/bin/clang++-18 /usr/bin/clang++
sudo apt install -y build-essential clang lsb-release wget software-properties-common gnupg
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

**Compilers:**
Visual Studio: 2022
GNU: 13.3
Clang: 18
GNU: 13.3, 14.2
Clang: 18, 19

**Boost Versions:**
1.73+
Expand Down
9 changes: 5 additions & 4 deletions test/pytest/environment.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
name: test
dependencies:
- python=3.10
- python=3.12
- pip
- numpy
- astropy
- scipy
- matplotlib
- mpmath
- pytest
- boost
- tbb
- tbb-devel
- tbb-devel
- gtest
- gmock
- pip:
- pymap3d
- vectormath
- pymap3d
- vectormath
2 changes: 1 addition & 1 deletion test/pytest/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ target_include_directories(${TARGET_NAME} PRIVATE
)

set(Python_USE_STATIC_LIBS True)
find_package(Python 3.10 REQUIRED
find_package(Python 3.11 REQUIRED
COMPONENTS
Development.Module
)
Expand Down
Loading