Skip to content

Commit a33f56f

Browse files
loriabLori A. Burns
andauthored
v2.0.9 (#77)
* v209 and gha * basic gha --------- Co-authored-by: Lori A. Burns <lori.burns7@gmail.com>
1 parent 5ed2479 commit a33f56f

2 files changed

Lines changed: 19 additions & 6 deletions

File tree

.github/workflows/hello.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
hello:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Say hello
12+
run: echo "Hello, GitHub Actions!"
13+

CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
cmake_minimum_required(VERSION 3.12...4.0)
22

33
project(gau2grid
4-
VERSION 2.0.8
4+
VERSION 2.0.9
55
LANGUAGES C)
66
set(gau2grid_AUTHORS "Daniel G. A. Smith")
77
set(gau2grid_DESCRIPTION "Fast computation of a gaussian and its derivative on a grid")
8-
set(gau2grid_URL "https://github.com/dgasmith/gau2grid")
8+
set(gau2grid_URL "https://github.com/psi4/gau2grid")
99
set(gau2grid_LICENSE "BSD 3-clause")
1010

1111
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
@@ -151,21 +151,21 @@ endif()
151151

152152
if(${INSTALL_PYMOD})
153153
if(${NATIVE_PYTHON_INSTALL})
154-
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c
154+
execute_process(COMMAND ${Python_EXECUTABLE} -c
155155
"import sys; print(sys.prefix);"
156156
OUTPUT_VARIABLE CMAKE_INSTALL_PREFIX
157157
OUTPUT_STRIP_TRAILING_WHITESPACE)
158-
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c
158+
execute_process(COMMAND ${Python_EXECUTABLE} -c
159159
"from distutils import sysconfig as s; import os; import sys; cmake_install_prefix = sys.prefix; prefix_lib = s.get_config_var('LIBDIR'); print(prefix_lib.replace(os.path.commonpath([prefix_lib, cmake_install_prefix]), '').strip('/'));"
160160
OUTPUT_VARIABLE CMAKE_INSTALL_LIBDIR
161161
OUTPUT_STRIP_TRAILING_WHITESPACE)
162-
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c
162+
execute_process(COMMAND ${Python_EXECUTABLE} -c
163163
"from distutils import sysconfig as s; import os; prefix_lib = s.get_config_var('LIBDIR'); spdir = s.get_python_lib(plat_specific=True); print(spdir.replace(os.path.commonpath([prefix_lib, spdir]), ''));"
164164
OUTPUT_VARIABLE PYMOD_INSTALL_LIBDIR
165165
OUTPUT_STRIP_TRAILING_WHITESPACE)
166166
endif()
167167

168-
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c
168+
execute_process(COMMAND ${Python_EXECUTABLE} -c
169169
"from numpy import distutils; print(distutils.misc_util.get_shared_lib_extension(is_python_ext=False))"
170170
OUTPUT_VARIABLE PYLIB_EXTENSION
171171
OUTPUT_STRIP_TRAILING_WHITESPACE)

0 commit comments

Comments
 (0)