diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5b5ba9c..e3d562e9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11"] ctapipe-version: [v0.19.3] install-method: [ "mamba", "pip" ] diff --git a/.github/workflows/deploy-pypi.yml b/.github/workflows/deploy-pypi.yml index 25094d85..cbace591 100644 --- a/.github/workflows/deploy-pypi.yml +++ b/.github/workflows/deploy-pypi.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: | diff --git a/README.md b/README.md index dc961271..54a88014 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ mamba create -n nectarchain -c conda-forge nectarchain `nectarchain` can also be manually installed as a PyPI package, albeit following specific requirements which are automatically accounted for through a `conda`/`mamba` installation. ```shell -mamba create -n nectarchain python=3.8 +mamba create -n nectarchain python=3.11 mamba activate nectarchain pip install nectarchain ``` diff --git a/pyproject.toml b/pyproject.toml index fabb1c81..4286470f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,12 +15,11 @@ classifiers = [ "Topic :: Scientific/Engineering :: Astronomy", "Topic :: Scientific/Engineering :: Physics", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11" ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ "ctapipe~=0.19", "ctapipe-io-nectarcam",