Skip to content

Commit

Permalink
Add python 3.12 to Github Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wookayin committed Nov 6, 2023
1 parent a59e5d7 commit d52cb36
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: "Run Tests"
on:
push:
branches:
- 'main'
- 'master'
- 'dev'
- 'ci/*'
- "main"
- "master"
- "dev"
- "ci/*"
tags:
- '*'
- "*"
pull_request:
workflow_dispatch:

Expand All @@ -19,11 +19,11 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- name: "Configure SSH on localhost"
Expand All @@ -45,7 +45,8 @@ jobs:
- name: Checkout expt
uses: actions/checkout@v2
with:
fetch-depth: 0 # fetch all tags, and unshallow (setuptools-scm requires them)
# fetch all tags, and unshallow (setuptools-scm requires them)
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ def next_semver(version: setuptools_scm.version.ScmVersion):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Utilities',
'Topic :: Scientific/Engineering',
],
Expand Down

0 comments on commit d52cb36

Please sign in to comment.