Skip to content

Commit

Permalink
change out data is imported
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholaswogan committed Sep 26, 2024
1 parent 885b520 commit 38b1fcd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION "3.14")
cmake_policy(SET CMP0148 OLD) # To suppress a warning emerging from scikit-build

project(Clima LANGUAGES Fortran C VERSION "0.5.1")
project(Clima LANGUAGES Fortran C VERSION "0.5.2")
set(PHOTOCHEM_CLIMA_DATA_VERSION "0.2.0")

set(CMAKE_Fortran_MODULE_DIRECTORY "${CMAKE_BINARY_DIR}/modules")
Expand Down
1 change: 0 additions & 1 deletion clima/cython/AdiabatClimate.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ cdef class AdiabatClimate:
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 clima/cython/_clima.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,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 ERR_LEN = 1024;
Expand Down

0 comments on commit 38b1fcd

Please sign in to comment.