Commit cd691bf 1 parent 140c60b commit cd691bf Copy full SHA for cd691bf
File tree 7 files changed +22
-25
lines changed
7 files changed +22
-25
lines changed Original file line number Diff line number Diff line change 9
9
- ' doc/**'
10
10
- ' examples/**'
11
11
12
- env :
13
- BUILD_TYPE : Release
14
-
15
12
jobs :
16
- build :
17
-
13
+ test :
18
14
runs-on : ${{ matrix.os }}
19
15
strategy :
20
16
matrix :
21
17
os : [ubuntu-latest, macOS-latest]
22
18
23
19
steps :
24
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
25
21
26
22
- name : Create Build Environment
27
- run : mkdir $GITHUB_WORKSPACE/autode/ext/build
28
-
29
- - name : Configure CMake
30
- shell : bash
31
- run : cd $GITHUB_WORKSPACE/autode/ext/build && cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE
32
-
33
-
34
- - name : Build
35
- shell : bash
36
- run : cd $GITHUB_WORKSPACE/autode/ext/build && cmake --build . --config $BUILD_TYPE
23
+ run : mkdir autode/ext/build
37
24
38
- - name : Test
25
+ - name : Run
39
26
shell : bash
40
- run : cd $GITHUB_WORKSPACE/autode/ext/build && ctest -C $BUILD_TYPE --extra-verbose
27
+ working-directory : ./autode/ext/build
28
+ env :
29
+ BUILD_TYPE : Release
30
+ run : |
31
+ cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE
32
+ cmake --build . --config $BUILD_TYPE
33
+ ctest -C $BUILD_TYPE --extra-verbose
Original file line number Diff line number Diff line change 13
13
shell : bash -l {0}
14
14
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
18
18
- uses : conda-incubator/setup-miniconda@v2
19
19
with :
Original file line number Diff line number Diff line change 1
- name : " Lint"
1
+ name : Lint
2
2
3
3
on :
4
4
push :
12
12
13
13
steps :
14
14
- name : Checkout repository
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
17
17
- name : Run pre-commit
18
18
uses : pre-commit/action@v3.0.0
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ jobs:
22
22
fail-fast : true
23
23
matrix :
24
24
os : ["ubuntu-latest", "macos-latest", "windows-latest"]
25
- python-version : ["3.8 ", "3.13"]
25
+ python-version : ["3.9 ", "3.13"] # Lowest and highest supported versions
26
26
27
27
defaults :
28
28
run :
29
29
shell : bash -l {0}
30
30
31
31
steps :
32
- - uses : actions/checkout@v3
32
+ - uses : actions/checkout@v4
33
33
34
34
- uses : conda-incubator/setup-miniconda@v3
35
35
with :
Original file line number Diff line number Diff line change 30
30
shell : bash -l {0}
31
31
32
32
steps :
33
- - uses : actions/checkout@v3
33
+ - uses : actions/checkout@v4
34
34
35
35
- uses : conda-incubator/setup-miniconda@v3
36
36
with :
Original file line number Diff line number Diff line change @@ -9,10 +9,14 @@ Functionality improvements
9
9
**************************
10
10
- Adds a boolean option for calculating single points refinements
11
11
12
+
12
13
Bug Fixes
13
14
*********
14
15
- Fixes coordinate extraction in some G16 output files
15
16
17
+ Usability improvements/Changes
18
+ ******************************
19
+ - Drops Python 3.8 support
16
20
17
21
1.4.4
18
22
------
Original file line number Diff line number Diff line change 33
33
setup (
34
34
name = "autode" ,
35
35
version = "1.4.5" ,
36
- python_requires = ">3.7 " ,
36
+ python_requires = ">3.8 " ,
37
37
packages = [
38
38
"autode" ,
39
39
"autode.bracket" ,
You can’t perform that action at this time.
0 commit comments