Skip to content

Commit

Permalink
Merge pull request #285 from cta-observatory/update_ci
Browse files Browse the repository at this point in the history
Add python 3.13 job, update actions
  • Loading branch information
maxnoe authored Nov 8, 2024
2 parents c8de98e + 6677022 commit 088978e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -36,12 +36,11 @@ jobs:
run: |
python --version
pip install codecov pytest-cov
pip install -U pytest docutils pygments Cython matplotlib
pip install -e .
pip install -e '.[test]'
pip freeze
- name: Tests
run: |
pytest --cov=eventio --cov-report=xml
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "eventio"
description = "Python read-only implementation of the EventIO file format"

requires-python = '>=3.9'
requires-python = '>=3.10'
dependencies = [
'numpy >= 1.21',
'corsikaio >= 0.3.3,<0.6.0',
Expand All @@ -29,10 +29,10 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
Expand Down

0 comments on commit 088978e

Please sign in to comment.