diff --git a/.github/workflows/python-package.yaml b/.github/workflows/python-package.yaml index 3ccb771..fa042c3 100644 --- a/.github/workflows/python-package.yaml +++ b/.github/workflows/python-package.yaml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index 0f2029d..d15089b 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ supertypes (grouped alleles sharing binding specificies). `HLAfreq` is a `python` package available on windows, mac, and linux. We recommend installing with `conda`. ``` -conda create -n hlafreq -c conda-forge -c bioconda hlafreq +conda create -n hlafreq bioconda::hlafreq conda activate hlafreq ``` diff --git a/noxfile.py b/noxfile.py index 95268e8..0b10863 100644 --- a/noxfile.py +++ b/noxfile.py @@ -13,7 +13,7 @@ def bandit(session): session.install("bandit") session.run("bandit", "-r", "src") -@nox.session(python=["3.10", "3.11", "3.12"]) +@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14"]) def tests(session): session.install("pytest", "pytest-cov") session.install(".")