Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.13
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -35,17 +35,17 @@ jobs:
needs: Build
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest, macos-latest]
exclude:
- os: windows-latest
python-version: "3.10"
python-version: "3.12"
- os: windows-latest
python-version: "3.11"
python-version: "3.13"
- os: macos-latest
python-version: "3.10"
python-version: "3.12"
- os: macos-latest
python-version: "3.11"
python-version: "3.13"
runs-on: ${{ matrix.os }}
# runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

pypi-publish:
name: Upload release to PyPI
needs: test
needs: Test
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
environment:
Expand Down
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ History
* fast_dp no longer supports Python 2.7 or 3.5
* change default plugin for Eiger data to durin-plugin.so
* migrate from pkg_resources to importlib.resources
* require python 3.11 or later to match DIALS requirements

1.6.2 (2020-03-14)
------------------
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ authors = [
]
description = "Fast DP: Fast Data Processsing with XDS"
readme = "README.rst"
requires-python = ">=3.9"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"Operating System :: POSIX :: Linux",
]

Expand Down
Loading