Skip to content

Commit

Permalink
Add python 3.12 and root 6.32, remove python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
op3 committed Oct 25, 2024
1 parent 950f4e0 commit 8263534
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/compile-without-helpers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
miniconda-version: "latest"
mamba-version: "*"
channels: conda-forge
python-version: '3.10'
python-version: '3.12'

- name: Install dependencies
shell: bash -l {0}
run: mamba install root='6.26.2'
run: mamba install root='6.32.2'

- name: Build
shell: bash -l {0}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: '3.12'
- name: Build
run: |
pip install wheel
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
root-version: ['6.26.10', '6.28.10', '6.30.2']
python-version: ['3.9', '3.10', '3.11', '3.12']
root-version: ['6.26.10', '6.28.12', '6.30.4', '6.32.2']
exclude:
- python-version: '3.12'
root-version: '6.26.10'
- python-version: '3.12'
root-version: '6.28.12'
- python-version: '3.12'
root-version: '6.30.4'
fail-fast: false

steps:
Expand All @@ -33,4 +40,4 @@ jobs:

- name: Post Coverage
uses: codecov/codecov-action@v1
if: matrix.python-version == '3.11' && matrix.root-version == '6.30.2'
if: matrix.python-version == '3.12' && matrix.root-version == '6.32.2'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ for all user (requires superuser privileges).
To build and run HDTV, the following dependencies are required:

* Python
- Tested with 3.8, 3.9, 3.10, and 3.11
- Tested with 3.9, 3.10, 3.11, and 3.12
- Python-dependencies are installed automatically when using pip/pipx
- Packages: numpy scipy matplotlib prompt_toolkit>=3.0.14 uncertainties (when manually installed)
- Packages for development & testing: docutils pytest pytest-cov
Expand Down

0 comments on commit 8263534

Please sign in to comment.