Skip to content

Commit

Permalink
Drop Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Mar 4, 2024
1 parent 0764d85 commit 07c0891
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.9'
- name: Install dependencies
run: |
sudo apt update -y
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.9'
- name: Install dependencies
run: |
sudo apt update -y
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.9]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
# checkout repo to subdirectory to get access to scripts
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
needs: ['build']
strategy:
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.9"]
steps:
# checkout repo to subdirectory to get access to scripts
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ queue_rules:
- name: default
conditions:
- base=main
- status-success=build (3.8)
- status-success=build (3.9)
- status-success=build (3.10)
- status-success=build (3.11)
- status-success=win_build (3.9)
- approved-reviews-by=@pystatgen/committers
- "#approved-reviews-by>=1"
Expand All @@ -14,9 +14,9 @@ pull_request_rules:
- name: automatic merge
conditions:
- base=main
- status-success=build (3.8)
- status-success=build (3.9)
- status-success=build (3.10)
- status-success=build (3.11)
- status-success=win_build (3.9)
- approved-reviews-by=@pystatgen/committers
- "#approved-reviews-by>=1"
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Getting Started
Installation
------------

You can install sgkit with pip. Python 3.8, 3.9, or 3.10 is required::
You can install sgkit with pip. Python 3.9, 3.10, or 3.11 is required::

$ pip install sgkit

Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ classifiers =
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Expand All @@ -26,7 +25,7 @@ classifiers =
packages = sgkit
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
include_package_data = True
python_requires = >=3.8
python_requires = >=3.9
install_requires =
numpy
xarray
Expand Down

0 comments on commit 07c0891

Please sign in to comment.