Skip to content

Commit

Permalink
removed python test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholaswogan committed Sep 26, 2024
1 parent d3cd5bc commit 97a50c1
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 9 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,3 @@ jobs:
- name: build python
run: python -m pip install . -v

- name: test python
working-directory: ${{github.workspace}}/tests
run: python test.py
2 changes: 1 addition & 1 deletion examples/ModernEarth/settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ boundary-conditions:
lower-boundary: {type: press, press: 360.0}
upper-boundary: {type: veff, veff: 0.0}
- name: CH4
lower-boundary: {type: flux, flux: 1.0e11}
lower-boundary: {type: flux, flux: 9.0e10}
upper-boundary: {type: veff, veff: 0.0}
- name: CO
lower-boundary: {type: press, press: 0.11}
Expand Down
1 change: 0 additions & 1 deletion photochem/cython/Atmosphere.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ cdef class Atmosphere:
self._init_called = True

if data_dir == None:
import photochem_clima_data
data_dir_ = photochem_clima_data.DATA_DIR
else:
data_dir_ = data_dir
Expand Down
1 change: 0 additions & 1 deletion photochem/cython/EvoAtmosphere.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ cdef class EvoAtmosphere:
self._init_called = True

if data_dir == None:
import photochem_clima_data
data_dir_ = photochem_clima_data.DATA_DIR
else:
data_dir_ = data_dir
Expand Down
1 change: 1 addition & 0 deletions photochem/cython/_photochem.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ from cpython.object cimport PyObject_GenericSetAttr
import numpy as np
import ctypes as ct
import os
import photochem_clima_data

DEF S_STR_LEN = 20;
DEF M_STR_LEN = 100;
Expand Down
4 changes: 2 additions & 2 deletions src/dependencies/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ CPMAddPackage(

CPMAddPackage(
NAME clima
VERSION 0.5.1
VERSION 0.5.2
OPTIONS
"BUILD_EXECUTABLE OFF"
"BUILD_WITH_OPENMP ${BUILD_WITH_OPENMP}"
"SKBUILD ${SKBUILD}"
"BUILD_PYTHON_CLIMA ${BUILD_PYTHON_PHOTOCHEM}"
"PYTHON_CLIMA_DESTINATION photochem"
GITHUB_REPOSITORY "Nicholaswogan/clima"
GIT_TAG "v0.5.1"
GIT_TAG "v0.5.2"
EXCLUDE_FROM_ALL OFF
)

Expand Down

0 comments on commit 97a50c1

Please sign in to comment.