FITS I/O for PyTorch with native tensor reads, datasets, and transforms
Project description
torchfits
torchfits reads and writes FITS files as PyTorch tensors. A multi-threaded
C++ engine (vendored CFITSIO) handles images, tables, headers, compression, and
MEF files. Optional datasets, transforms, and a torchfits CLI sit on top.
pip install torchfits
Requires Python 3.10+ and PyTorch 2.10. Docs: astroai.github.io/torchfits.
At a Glance
| Task | torchfits |
|---|---|
| Image → GPU tensor | torchfits.read_tensor("img.fits", device="cuda") |
| Write a tensor | torchfits.write("out.fits", tensor) |
| Filter a catalog in C++ | table.read(..., where="MAG < 20") |
| Open a MEF | with torchfits.open("mef.fits") as hdul: … |
| Train | FitsImageDataset + make_loader(..., num_workers=4) |
| Shell | torchfits info / header / convert / … |
Features
- Fast FITS I/O — mmap image reads, compressed images, MEF, checksums
- Tables — Arrow-native with
where=pushdown, scan/stream, Parquet/CSV/TSV/Arrow IPC export - ML —
torchfits.datadatasets +make_loader - Transforms — stretches, FITS scale/null handling, spectral prep (
torchfits.transforms) - CLI — MEF-aware inspect/convert tools (docs/cli.md)
Supported feature matrix: docs/parity.md.
What's New in 0.9.2 / 0.9.3
- CLI —
torchfitsforinfo,header,verify,stats,table,cutout,convert, … (docs/cli.md) - Leaner imports — transforms from
torchfits.transforms; useread/read_tensor(notread_fast/read_image) - Convert — tables → Parquet, CSV, TSV, or Arrow IPC; images → Lupton PNG
- Scorecard — CUDA 0 strict deficits; Linux CPU 1; Mac MPS 16 (docs/benchmarks.md)
Full notes: docs/changelog.md.
Transforms
from torchfits.transforms import ArcsinhStretch, BackgroundSubtract, Compose, ZScaleNormalize
pipeline = Compose([BackgroundSubtract(), ArcsinhStretch(a=0.1), ZScaleNormalize()])
normalized = pipeline(image) # forward → model input
restored = pipeline.inverse(normalized) # inverse → physical flux
Representative classes (full catalog in docs/api.md):
| Category | Examples | Inverse |
|---|---|---|
| Image stretches | ArcsinhStretch, LogStretch, SqrtStretch, ZScaleNormalize, RobustNormalize, MinMaxNormalize, PercentileClipNormalize |
✓ |
| Background / normalization | BackgroundSubtract, GlobalScalarNorm, FITSHeaderNormalize |
✓ |
| Header / table | FITSHeaderScale, FITSScaleColumns, TNullToNan |
✓ |
| Spectral | ContinuumNormalize, ContinuumRemoval, DopplerShift, SpectralBinning |
✓ (except BandMath) |
| Continuum estimators | AsymmetricLeastSquares, AlphaShapeContinuum, WaveletDecompose, SavitzkyGolayFilter, RunningPercentile, UpperEnvelopeContinuum |
✓ |
| Outlier / time | SigmaClip, AsymmetricSigmaClip, PhaseFold |
✗ (lossy or many-to-one) |
Runnable demos: examples/example_transforms.py (image pipeline),
examples/example_hyperspectral.py (spectral cube),
examples/example_time_series.py (light curves).
Performance
Lab multi-host exhaustive scorecard
(exhaustive_mps_20260717_040150 Mac MPS,
exhaustive_cpu_20260717_040146 CANFAR CPU,
exhaustive_cuda_20260717_042840 CANFAR CUDA); see
docs/benchmarks.md for methodology, full exhaustive
table, category summaries, RSS columns, and deficit transparency.
Under the strict gate (images: any lag; Arrow tables: ≤1.05×), CANFAR CUDA reports 0 TorchFits deficits; Linux CPU 1 (narrow 1M-row predicate); Mac MPS 16. MPS is not the Linux CUDA release gate.
Headline numbers
| Case | torchfits | astropy | fitsio | Speedup vs astropy |
|---|---|---|---|---|
| Large float32 image read (16 MB, CPU) | 6.51 ms | 13.95 ms | 8.83 ms | 2.1× |
| Compressed Rice image (CPU) | 15.17 ms | 75.41 ms | 18.45 ms | 5.2× |
| 50× repeated 100×100 cutouts (CPU) | 21.75 ms | 335.26 ms | 21.03 ms | 18.3× |
| Table read (100k rows, 8 cols) | 6.97 ms | 95.60 ms | 30.20 ms | 13.7× |
| Varlen table read (100k rows, 3 cols) | 258.11 ms | 1.624 s | 337.40 ms | 6.4× |
By benchmark category
Category ranges and the full exhaustive table live in
docs/benchmarks.md
(CANFAR CUDA exhaustive_cuda_20260717_042840). Use the headline table above
for this release’s absolute timings.
Current deficits
Scorecard policy (same-mmap peers):
- Images / cubes / spectra / cutouts: any lag above float-timer ε is a deficit (rice/hcompress included — no percent floor).
- Arrow tables: allow up to 1.05×.
Prior “0 deficit” claims used a 25% lag floor and are retracted. Re-score after
the SIMD endian + thin device + WHERE⇒mmap-scan fixes; see
docs/benchmarks.md.
GPU integer reads: Default read(..., device="cuda") applies BSCALE/BZERO on
device and returns float32 for generic scaled pixels — good for ML. For native
integer dtypes (int8, uint16) matching fitsio, use
read_tensor(..., raw_scale=True) or rely on the automatic signed-byte /
unsigned-integer fast paths (see benchmarks doc). Tables remain CPU-resident in
all backends; GPU rows measure host decode + H2D copy, not disk→GPU bypass.
ML DataLoader (local diagnostic, not in lab CSV): 30×512² float32, CPU, 2
epochs — torchfits 1.12× vs fitsio on Rice-compressed files; uncompressed
within ~4%. make_loader(..., optimize_cache=True) warms handle caches
automatically when the dataset exposes a files attribute.
Install
pip install torchfits
Pre-built wheels are available for Linux x86_64 and macOS arm64. No system CFITSIO is needed—it is vendored and compiled automatically. Other architectures install from source when a compatible compiler and PyTorch are available.
From source:
git clone https://github.com/astroai/torchfits.git
cd torchfits
pip install -e .
Requires Python 3.10+, a C++17 compiler, CMake 3.21+, and PyTorch 2.10.
Quick Start
Read an image to GPU
import torchfits
data, header = torchfits.read("science.fits", device="cuda", return_header=True)
# data: torch.Tensor on CUDA, shape e.g. (4096, 4096), dtype torch.float32
tensor = torchfits.read_tensor("science.fits", hdu=0, device="cuda")
PyTorch DataLoader
from torchfits.data import FitsImageDataset, make_loader
ds = FitsImageDataset("observations/*.fits", label_key="CLASS")
loader = make_loader(ds, batch_size=32, num_workers=4)
for images, labels in loader:
... # images: [B, 1, H, W] when add_channel_dim=True (default)
Filter and stream a catalog
# Predicate pushdown — only matching rows leave C++
table = torchfits.table.read(
"catalog.fits",
columns=["RA", "DEC", "MAG_G"],
where="MAG_G < 20.0 AND CLASS_STAR > 0.9",
)
# table: pyarrow.Table
# Stream 100M rows in constant memory
for batch in torchfits.table.scan("survey.fits", batch_size=50_000):
process(batch) # batch: pyarrow.RecordBatch
Multi-HDU access
with torchfits.open("multi_ext.fits") as hdul:
print(hdul) # pretty-printed summary
img = hdul[0].data # image tensor
tbl = hdul[1].data # dict-like table accessor
tbl_filtered = hdul[1].filter("FLUX > 100 AND FLAG = 0")
Write back
torchfits.write("output.fits", data, header=header, overwrite=True)
# table_dict is a dict of column names to 1D arrays/tensors
torchfits.table.write("catalog_out.fits", table_dict, header=header, overwrite=True)
Shell (CLI)
torchfits info science.fits
torchfits header science.fits --keyword OBJECT --json
torchfits verify science.fits
torchfits stats science.fits --hdu 0
torchfits convert catalog.fits out.csv --to csv --hdu 1
Benchmarks
torchfits is benchmarked across FITS image I/O (1D/2D/3D, all integer and float dtypes, compressed, scaled, MEF, cutouts, time series) and FITS table I/O (read, projection, row slicing, predicate filtering, streaming). GPU (CUDA) transport rows are included for image reads.
Comparators are astropy.io.fits and fitsio; selected CFITSIO behavior is
validated through the torchfits native backend and smoke tests.
Methodology, full exhaustive table, category summaries, and known deficits:
docs/benchmarks.md
Documentation
Published site: astroai.github.io/torchfits
| Documentation site | Browse all docs on GitHub Pages |
| API Reference | Full public API with signatures and examples |
| CLI | torchfits command-line tools |
| Migration from Astropy | Side-by-side workflow translation |
| Migration from fitsio | Side-by-side workflow translation |
| Dataset migration | Removed FITSDataset → torchfits.data |
| Roadmap | FITS I/O roadmap and parity tiers |
| Parity Matrix | Supported, partial, unsupported, and out-of-scope features |
| Examples | Runnable scripts for every major workflow |
| Installation | Build from source, GPU setup, troubleshooting |
| Benchmarks | Methodology, commands, and latest numbers |
| Changelog | Version history and migration notes |
| Release Checklist | Maintainer guide for cutting releases |
Contributing
git clone https://github.com/astroai/torchfits.git
cd torchfits
pixi install
pixi run test
The project uses pixi for environment management, ruff for linting, and pytest for testing.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file torchfits-1.0b1.tar.gz.
File metadata
- Download URL: torchfits-1.0b1.tar.gz
- Upload date:
- Size: 2.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f2b11a2b448a0decca2903c06547bfaa43154a7ed4a428b462bca2d2a8e8b05
|
|
| MD5 |
fac3b7bf4675c5c6837a70d13f275729
|
|
| BLAKE2b-256 |
c361396c953f87f08d30356336acb1b4257fdd6528a62920a19345c5d5502436
|
Provenance
The following attestation bundles were made for torchfits-1.0b1.tar.gz:
Publisher:
build_wheels.yml on astroai/torchfits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchfits-1.0b1.tar.gz -
Subject digest:
9f2b11a2b448a0decca2903c06547bfaa43154a7ed4a428b462bca2d2a8e8b05 - Sigstore transparency entry: 2192129766
- Sigstore integration time:
-
Permalink:
astroai/torchfits@acf4f42f7840e669e2335ae096477a4550a8a885 -
Branch / Tag:
refs/tags/v1.0b1 - Owner: https://github.com/astroai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@acf4f42f7840e669e2335ae096477a4550a8a885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file torchfits-1.0b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: torchfits-1.0b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb56f5e0c336999018f4c3aa49cf8e170bb251a91fa1abdd4347424013e9a196
|
|
| MD5 |
c07e4e8bc4228784783d564e707abbc5
|
|
| BLAKE2b-256 |
f5fdc6a13797d4906779638ae3ae0a301e34798dd643e9fd05f3f8fb8cbf0ef8
|
Provenance
The following attestation bundles were made for torchfits-1.0b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on astroai/torchfits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchfits-1.0b1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
bb56f5e0c336999018f4c3aa49cf8e170bb251a91fa1abdd4347424013e9a196 - Sigstore transparency entry: 2192129951
- Sigstore integration time:
-
Permalink:
astroai/torchfits@acf4f42f7840e669e2335ae096477a4550a8a885 -
Branch / Tag:
refs/tags/v1.0b1 - Owner: https://github.com/astroai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@acf4f42f7840e669e2335ae096477a4550a8a885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file torchfits-1.0b1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: torchfits-1.0b1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 919.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e72c3aeaf0b12ec9b697ac91c9bf71aa6d4d9eb8b898105295f7bd8c9b666021
|
|
| MD5 |
67a9d27d46bf52fd066037d92019af0a
|
|
| BLAKE2b-256 |
e237acd255ef5c016fdfe32f1add6cf331b4e3aa16a136bd136cc5d30f828ad3
|
Provenance
The following attestation bundles were made for torchfits-1.0b1-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on astroai/torchfits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchfits-1.0b1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
e72c3aeaf0b12ec9b697ac91c9bf71aa6d4d9eb8b898105295f7bd8c9b666021 - Sigstore transparency entry: 2192130285
- Sigstore integration time:
-
Permalink:
astroai/torchfits@acf4f42f7840e669e2335ae096477a4550a8a885 -
Branch / Tag:
refs/tags/v1.0b1 - Owner: https://github.com/astroai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@acf4f42f7840e669e2335ae096477a4550a8a885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file torchfits-1.0b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: torchfits-1.0b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37c15fbcc7d401b4a7387ee9ee85c6ae2c74649353a24fefcfa56543bfdb2732
|
|
| MD5 |
8d07735404a065ae65aa3fc131798580
|
|
| BLAKE2b-256 |
5d505e225ff30db9d0fd5d2d60bf01b99c85f57ad741abc834a63da85aae50fd
|
Provenance
The following attestation bundles were made for torchfits-1.0b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on astroai/torchfits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchfits-1.0b1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
37c15fbcc7d401b4a7387ee9ee85c6ae2c74649353a24fefcfa56543bfdb2732 - Sigstore transparency entry: 2192129897
- Sigstore integration time:
-
Permalink:
astroai/torchfits@acf4f42f7840e669e2335ae096477a4550a8a885 -
Branch / Tag:
refs/tags/v1.0b1 - Owner: https://github.com/astroai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@acf4f42f7840e669e2335ae096477a4550a8a885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file torchfits-1.0b1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: torchfits-1.0b1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 919.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb834cc10a7a0ac5380bf846d972dc88101abf63214572c5828c2a6c8454cd6b
|
|
| MD5 |
fdf9b22cf11b1d9c61b10d7d6d37a255
|
|
| BLAKE2b-256 |
0ad78e5e3adf67520dc6d1b0a3de4457a54a610bc9c8c8e0a42803eef544a95f
|
Provenance
The following attestation bundles were made for torchfits-1.0b1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on astroai/torchfits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchfits-1.0b1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
fb834cc10a7a0ac5380bf846d972dc88101abf63214572c5828c2a6c8454cd6b - Sigstore transparency entry: 2192129837
- Sigstore integration time:
-
Permalink:
astroai/torchfits@acf4f42f7840e669e2335ae096477a4550a8a885 -
Branch / Tag:
refs/tags/v1.0b1 - Owner: https://github.com/astroai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@acf4f42f7840e669e2335ae096477a4550a8a885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file torchfits-1.0b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: torchfits-1.0b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a5e3830c64c36001532fa720e4e5c2f921da505d5e3f17a4764f82511506601
|
|
| MD5 |
8551e1d3b3cbee5f081d3e296ed784e1
|
|
| BLAKE2b-256 |
42cbd0202a9291d5ff4b66356e52f91a9570f85e4460635a84dc0f8ecaa02699
|
Provenance
The following attestation bundles were made for torchfits-1.0b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on astroai/torchfits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchfits-1.0b1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
2a5e3830c64c36001532fa720e4e5c2f921da505d5e3f17a4764f82511506601 - Sigstore transparency entry: 2192130231
- Sigstore integration time:
-
Permalink:
astroai/torchfits@acf4f42f7840e669e2335ae096477a4550a8a885 -
Branch / Tag:
refs/tags/v1.0b1 - Owner: https://github.com/astroai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@acf4f42f7840e669e2335ae096477a4550a8a885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file torchfits-1.0b1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: torchfits-1.0b1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 920.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22cdb1b64a2094c89c1eb1abf78843101f44c589432ba02426abacfc23966ec9
|
|
| MD5 |
d0eb44d5f71b8fb182ececeed0b48470
|
|
| BLAKE2b-256 |
af69317b2d3ae364ba638b58a7643bae504d764d4f1c1bb15c676a3fbb1076e8
|
Provenance
The following attestation bundles were made for torchfits-1.0b1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on astroai/torchfits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchfits-1.0b1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
22cdb1b64a2094c89c1eb1abf78843101f44c589432ba02426abacfc23966ec9 - Sigstore transparency entry: 2192130024
- Sigstore integration time:
-
Permalink:
astroai/torchfits@acf4f42f7840e669e2335ae096477a4550a8a885 -
Branch / Tag:
refs/tags/v1.0b1 - Owner: https://github.com/astroai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@acf4f42f7840e669e2335ae096477a4550a8a885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file torchfits-1.0b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: torchfits-1.0b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d06df286edf869e4de52fffc68676f35ef874c076268ae9061a658797850355
|
|
| MD5 |
a64d2abf30f1a77df92176416b56200b
|
|
| BLAKE2b-256 |
1f4fa544f54e7da739553fb2803692aabdcee04154b59af0ec6b62096edb87d0
|
Provenance
The following attestation bundles were made for torchfits-1.0b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on astroai/torchfits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchfits-1.0b1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0d06df286edf869e4de52fffc68676f35ef874c076268ae9061a658797850355 - Sigstore transparency entry: 2192130149
- Sigstore integration time:
-
Permalink:
astroai/torchfits@acf4f42f7840e669e2335ae096477a4550a8a885 -
Branch / Tag:
refs/tags/v1.0b1 - Owner: https://github.com/astroai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@acf4f42f7840e669e2335ae096477a4550a8a885 -
Trigger Event:
push
-
Statement type:
File details
Details for the file torchfits-1.0b1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: torchfits-1.0b1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 921.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
889c78550965a4c2908de7e4c66925639716d3cec8f749c23e861f1d3ee653da
|
|
| MD5 |
b6c5f439c3b8eee635dc94585fe7fba0
|
|
| BLAKE2b-256 |
a6bc82cf677eabd6644650b5d05e095d5845c5f7bbdf1fbd484ff521bd514f62
|
Provenance
The following attestation bundles were made for torchfits-1.0b1-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on astroai/torchfits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
torchfits-1.0b1-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
889c78550965a4c2908de7e4c66925639716d3cec8f749c23e861f1d3ee653da - Sigstore transparency entry: 2192130083
- Sigstore integration time:
-
Permalink:
astroai/torchfits@acf4f42f7840e669e2335ae096477a4550a8a885 -
Branch / Tag:
refs/tags/v1.0b1 - Owner: https://github.com/astroai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@acf4f42f7840e669e2335ae096477a4550a8a885 -
Trigger Event:
push
-
Statement type: