Skip to content
Snippets Groups Projects
Unverified Commit 87b259d0 authored by acpaquette's avatar acpaquette Committed by GitHub
Browse files

Merge pull request #36 from acpaquette/main

Update Python Versions to Test
parents 216e9f52 6f426fda
No related branches found
No related tags found
No related merge requests found
...@@ -13,15 +13,15 @@ jobs: ...@@ -13,15 +13,15 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest] os: [ubuntu-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"] python-version: ["3.8", "3.9", "3.10", "3.11"]
defaults: defaults:
run: run:
shell: bash -l {0} shell: bash -l {0}
env: env:
SSPICE_DEBUG: y SSPICE_DEBUG: y
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: conda-incubator/setup-miniconda@v2 - uses: conda-incubator/setup-miniconda@3b0f2504dd76ef23b6d31f291f4913fb60ab5ff3
with: with:
miniconda-version: "latest" miniconda-version: "latest"
activate-environment: csmswig activate-environment: csmswig
......
cmake_minimum_required(VERSION 3.14) cmake_minimum_required(VERSION 3.15)
project(swigcsm VERSION 1.0.1 DESCRIPTION "SWIG wrappers for the Community Sensor Model API") project(swigcsm VERSION 1.0.1 DESCRIPTION "SWIG wrappers for the Community Sensor Model API")
......
...@@ -5,7 +5,11 @@ set_source_files_properties(../csmapi.i ...@@ -5,7 +5,11 @@ set_source_files_properties(../csmapi.i
PROPERTIES CPLUSPLUS ON) PROPERTIES CPLUSPLUS ON)
#Find dependencies #Find dependencies
find_package(Python3 REQUIRED COMPONENTS Interpreter Development) set(Python_FIND_VIRTUALENV FIRST)
set(Python_FIND_REGISTRY LAST)
set(Python_FIND_FRAMEWORK LAST)
set(Python_FIND_STRATEGY LOCATION)
find_package(Python3 REQUIRED COMPONENTS Development)
find_path(CSM_INCLUDE_DIR NAMES csm.h find_path(CSM_INCLUDE_DIR NAMES csm.h
PATH_SUFFIXES csm) PATH_SUFFIXES csm)
find_library(CSM_LIBRARY NAMES csmapi) find_library(CSM_LIBRARY NAMES csmapi)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment