Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport changes for the release 2024.09 #586

Merged
merged 9 commits into from
Sep 12, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Install from sdist
run: |
pip install "$(ls dist/fabio-*.tar.gz)"
pip install pyqt5
pip install pyqt5 matplotlib
- name: Run tests
run: python -c "import fabio.test, sys; sys.exit(fabio.test.run_tests())"

Expand Down Expand Up @@ -93,9 +93,9 @@ jobs:
cibw_archs: "ppc64le"
- os: windows-2019
cibw_archs: "auto64"
- os: macos-11
- os: macos-12
cibw_archs: "x86_64"
macos_target: "10.9"
macos_target: "11.0"
- os: macos-14
cibw_archs: "arm64"
macos_target: "11.0"
Expand All @@ -122,7 +122,7 @@ jobs:
CIBW_TEST_COMMAND: python -c "import fabio.test, sys; sys.exit(fabio.test.run_tests())"
# Skip tests for emulated architectures
# and Python3.8 on macos/arm64 (https://github.com/pypa/cibuildwheel/pull/1169)
CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le,s390x} cp38-macosx_arm64"
CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le,s390x} cp38-macosx_*"

- uses: actions/upload-artifact@v4
with:
Expand Down
7 changes: 3 additions & 4 deletions doc/source/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ FabIO-2024.9.0:
- Link `peak` from sparse dataset to the dense one when using `densify_Bragg`
- New tool `hdf2neggia` which converts any HDF5 file compatible into something compatible with XDS+neggia pluggin
- support new detector: `LambdaImage`
- fix endianness issue in several file-format
- fix bug in `edf.fast_data_read`
- fix warning which became errors in gcc14
- Fix endianness issue in several file-format
- Fix bug in `edf.fast_data_read`
- Fix warning which became errors in gcc14
- Supports Python 3.8-3.12


FabIO-2024.4.0:
................
- Support for new style GE-files (contribution from Patrick Avery)
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ requires = [
'pyproject-metadata>=0.5.0',
'tomli>=1.0.0'
]
[project.optional-dependencies]
gui = [ "pyqt5", "matplotlib" ]
all = ["pyqt5", "matplotlib"]

[project.urls]
homepage = 'http://www.silx.org'
Expand All @@ -75,3 +78,7 @@ hdf2neggia = 'fabio.app.hdf2neggia:main'

[project.gui-scripts]
fabio_viewer = 'fabio.app.viewer:main'

[tool.cibuildwheel]
test-requires = ["pyqt5", "matplotlib"]

2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
MAJOR = 2024
MINOR = 9
MICRO = 0
RELEV = "dev" # <16
RELEV = "final" # <16
SERIAL = 0 # <16
date = __date__

Expand Down
Loading