diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0356bc0..8b1fdf5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 with: diff --git a/setup.py b/setup.py index f79d34c..7cbd324 100644 --- a/setup.py +++ b/setup.py @@ -55,10 +55,10 @@ def finalize_options(self): 'eventio': ['*.c'], 'eventio.simtel': ['*.c'], }, - python_requires='>=3.6', + python_requires='>=3.8', install_requires=[ 'numpy', - 'corsikaio ~= 0.2.0', + 'corsikaio ~= 0.3.3', 'zstandard > 0.11.1', # memory leak in zstandard 0.11.1 'setuptools_scm', ],