Skip to content

Commit

Permalink
remove py38 support (#363)
Browse files Browse the repository at this point in the history
* init

* bump changelog
  • Loading branch information
t-young31 authored Nov 7, 2024
1 parent 140c60b commit cd691bf
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 25 deletions.
29 changes: 11 additions & 18 deletions .github/workflows/catch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,25 @@ on:
- 'doc/**'
- 'examples/**'

env:
BUILD_TYPE: Release

jobs:
build:

test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create Build Environment
run: mkdir $GITHUB_WORKSPACE/autode/ext/build

- name: Configure CMake
shell: bash
run: cd $GITHUB_WORKSPACE/autode/ext/build && cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE


- name: Build
shell: bash
run: cd $GITHUB_WORKSPACE/autode/ext/build && cmake --build . --config $BUILD_TYPE
run: mkdir autode/ext/build

- name: Test
- name: Run
shell: bash
run: cd $GITHUB_WORKSPACE/autode/ext/build && ctest -C $BUILD_TYPE --extra-verbose
working-directory: ./autode/ext/build
env:
BUILD_TYPE: Release
run: |
cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE
cmake --build . --config $BUILD_TYPE
ctest -C $BUILD_TYPE --extra-verbose
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
shell: bash -l {0}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: conda-incubator/setup-miniconda@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Lint"
name: Lint

on:
push:
Expand All @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run pre-commit
uses: pre-commit/action@v3.0.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
fail-fast: true
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.8", "3.13"]
python-version: ["3.9", "3.13"] # Lowest and highest supported versions

defaults:
run:
shell: bash -l {0}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: conda-incubator/setup-miniconda@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest_cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
shell: bash -l {0}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: conda-incubator/setup-miniconda@v3
with:
Expand Down
4 changes: 4 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ Functionality improvements
**************************
- Adds a boolean option for calculating single points refinements


Bug Fixes
*********
- Fixes coordinate extraction in some G16 output files

Usability improvements/Changes
******************************
- Drops Python 3.8 support

1.4.4
------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
setup(
name="autode",
version="1.4.5",
python_requires=">3.7",
python_requires=">3.8",
packages=[
"autode",
"autode.bracket",
Expand Down

0 comments on commit cd691bf

Please sign in to comment.