Skip to content

Commit

Permalink
added python 3.12 to CI (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
auvipy authored Nov 5, 2023
1 parent ddb2858 commit 48bfade
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Install system packages
run: sudo apt update && sudo apt-get install libcurl4-openssl-dev libssl-dev
- name: Check out code from GitHub
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@main
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[tox]
requires =
tox-gh-actions
envlist = {3.7,3.8,3.9,3.10,3.11}-unit
envlist = {3.8,3.9,3.10,3.11,3.12}-unit
skip_missing_interpreters = True

[gh-actions]
python =
3.7: 3.7-unit
3.8: 3.8-unit
3.9: 3.9-unit
3.10: 3.10-unit
3.11: 3.11-unit
3.12: 3.12-unit

[testenv]
distribute = True
Expand Down

0 comments on commit 48bfade

Please sign in to comment.