First package version of Oil Spill simulator
Project description
cpp_py_oil_simulator
A C++ oil spill simulator with Python bindings (pybind11). This repository provides a performant core simulator written in C++ and a small pybind11 wrapper so the simulator can be used from Python as the oilspillsim package.
Highlights
- Core numerical code uses Eigen for linear algebra (bundled under
src/Eigen). - Python bindings implemented in
src/utils/pywrap/pywrap.cppusing pybind11. - Minimal example and utilities live under
src/andutils/.
Quick install
Install using pip from the project root:
pip install .
This builds the extension module (oilspillsim) with pybind11. Ensure you have a C++ toolchain and CMake available on your platform.
Build (developer)
Build the native extension directly using the provided CMake and setuptools integration:
# from project root
pip install -e .
Or build with CMake in src/ (native build):
mkdir -p build && cd build
cmake ../src
cmake --build .
Usage (Python)
After installation the package exposes the oilspillsim extension module. Example (the exact API is defined in the pybind wrapper):
import oilspillsim
# Create simulator (example — check `src/utils/pywrap/pywrap.cpp` for real args)
sim = oilspillsim.oilspillsim("src/mapas/defuniak_map.csv")
sim.step()
density = sim.get_normalized_density()
Accessible functions (API)
The oilspillsim extension exposes a class named oilspillsim (C++ type SIMULATOR). Below is a concise summary of constructors, methods and read-only attributes provided by the pybind11 wrapper. For exact function signatures and default values see src/utils/pywrap/pywrap.cpp.
- Class:
oilspillsim(C++:SIMULATOR)-
Constructor:
oilspillsim(_filepath: str, **kwargs)- Create the simulator by loading a map from a file (CSV or supported format by the core).
oilspillsim(base_matrix: numpy.ndarray or Eigen::MatrixXi, **kwargs)- Create the simulator from an in-memory base matrix (map, usually a 2D array, 0 for obstacle 1 for valid position).
-
Contructor kwargs:
_dt: (float=10.0) internal time variable. Each time oilspillsim.step() is called, particles will move relative to this._kw: (float=0.5) wind gain. wind component affecting particles is weighted by this value_kc: (float=1.0) current gain. current components affecting particles are weighted by this value._gamma: (float=1.0) brownian movement gain. Random movement due to particle intereffects are weighet by this value_flow: (float=50.0) ammount of particles liberated to the environment normalized for _dt =1 at each sourcepoint_number_of_sources: (int=3) ammount of sources that liberate oil to the environment_max_contamination_value: (int=5) value to dictate maximun concentration of contamination per node. No more than "_max_contamination_value" particles can be present in the same node._source_fuel: (int=1000) maximum fuel a source can liberate to the environment, once a source liberates "_source_fuel" particles, it stops liberating_random_seed: (int=-1) seed to relive experiments, leave to -1 to allways use a different seed_triangular: (bool=False) special condition promoving a different particle behaviour where particles moves following a cross shape.
-
Main methods:
step()- Advance the simulation by one time step. The GIL is released during execution for performance.
reset(_seed: int = -1, Eigen::MatrixXi _source_points_pos)- Reset the simulation state. If
_seedis provided the RNG is seeded for reproducibility. -1 used for random seed. - If
_source_points_posis provided, source points will take chosen position, otherwise seed source points will be taken
- Reset the simulation state. If
get_normalized_density(gaussian: bool = True) -> numpy.ndarray- Return the normalized density matrix (optionally smoothed using a Gaussian kernel if
gaussian=True).
- Return the normalized density matrix (optionally smoothed using a Gaussian kernel if
-
Read-only attributes (accessible from Python):
source_points— coordinates of contamination sources (list/array).contamination_position— array containing all the discrete particles positions (list/array).density— raw hydrocarbon density matrix (not normalized).x,y— spatial coordinate vectors associated with the grid.u,v— velocity fields (x/y components) used by the simulation to simulate currents (array).wind_speed— wind speed value or field used in the model (array(2)).
-
Notes:
- For exact signatures and default values check
src/utils/pywrap/pywrap.cpp. - Exposed structures (for example Eigen matrices) are converted to/from NumPy arrays via
pybind11/eigen.h.
Tests
There is a small test script used by CI in src/tests/test.py (also referenced in pyproject.toml) accesible from github. Run it with:
python src/tests/test.py
Contributing
Contributions and bug reports are welcome. Please open issues or pull requests on the GitHub repository: https://github.com/AloePacci/cpp_oil_simulator
Authors
Alejandro Casado Pérez — acasado4@us.es
Acknowledgements: Samuel Yanes Luis (help and guidance).
License
This project is provided under the terms in 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 oilspillsim-0.0.2.tar.gz.
File metadata
- Download URL: oilspillsim-0.0.2.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2137366775775079e5ae228363ade303683bb1118da87335ee4d6341b9835dd4
|
|
| MD5 |
8e72d7d8a03ae84866ea49e0e015f2b8
|
|
| BLAKE2b-256 |
ce4caea9f19b2451c4007523ff4090c2447b23051227b1300357a4bdf9242d2b
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2.tar.gz:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2.tar.gz -
Subject digest:
2137366775775079e5ae228363ade303683bb1118da87335ee4d6341b9835dd4 - Sigstore transparency entry: 637377034
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 132.2 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
453f7c4b0103f1eb99b29e5703c285b692810d1e0e026b8bb2a7f5533b14d361
|
|
| MD5 |
19a13ed4250d41da378afc2a16935eed
|
|
| BLAKE2b-256 |
9e762375dcb728e08ab6d8d1dd2aa7df90636171f635e4dc5951d8d9954b4289
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314t-win_amd64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314t-win_amd64.whl -
Subject digest:
453f7c4b0103f1eb99b29e5703c285b692810d1e0e026b8bb2a7f5533b14d361 - Sigstore transparency entry: 637377335
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314t-win32.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314t-win32.whl
- Upload date:
- Size: 120.2 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a56c816d23461c8ebab69a7c037043d6461e12dbe6187016339b319ca18d705b
|
|
| MD5 |
62ab45b0de2a119282c7ce28ec0babf9
|
|
| BLAKE2b-256 |
cedac6758016877d921eb39b201453c0468097f24e72b717e5223e1359c5835c
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314t-win32.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314t-win32.whl -
Subject digest:
a56c816d23461c8ebab69a7c037043d6461e12dbe6187016339b319ca18d705b - Sigstore transparency entry: 637377141
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa417503faa393b508a128b460382283b9d7e1adb78ae799c04a510ef1ac546e
|
|
| MD5 |
b833799ad2a9f64f86d271c3246691b3
|
|
| BLAKE2b-256 |
f99ab3eacae7fec5a07f8811d60651099f9f10da119f434e4da10480f0d139c6
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
aa417503faa393b508a128b460382283b9d7e1adb78ae799c04a510ef1ac546e - Sigstore transparency entry: 637377527
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 144.4 kB
- Tags: CPython 3.14t, 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cd4bd8e3be39a4366934f3653c01227721a4d88507c5da2366049c537b42c19
|
|
| MD5 |
a2aa78502de78e2cb0b172596f116640
|
|
| BLAKE2b-256 |
db40518be8b18afa28420df6abfe6e7de4308383d773d1fce2e46ae2383b9244
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
9cd4bd8e3be39a4366934f3653c01227721a4d88507c5da2366049c537b42c19 - Sigstore transparency entry: 637377054
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 144.7 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20243e8c061c374f8f89b69d38d4052603de5cecf32e8caac37ce57c34fd427e
|
|
| MD5 |
10f9462c86f166efdf208b35cef899ad
|
|
| BLAKE2b-256 |
8a95b10b4b73697c10b8c451a4b4fba21c30226463db95f55064089f85e20ae5
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314t-macosx_10_15_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
20243e8c061c374f8f89b69d38d4052603de5cecf32e8caac37ce57c34fd427e - Sigstore transparency entry: 637377290
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314t-macosx_10_15_universal2.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314t-macosx_10_15_universal2.whl
- Upload date:
- Size: 274.4 kB
- Tags: CPython 3.14t, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23188c2dd015eb82a72a2c4e5f5391712845382d8c7810e72d15c4dddda31d09
|
|
| MD5 |
f5d87fca48898f5e7b566774b343171d
|
|
| BLAKE2b-256 |
340da592f4bc537ad8831f9efc02abd5fdb9c853123f11c8fab66f7334959db6
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314t-macosx_10_15_universal2.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314t-macosx_10_15_universal2.whl -
Subject digest:
23188c2dd015eb82a72a2c4e5f5391712845382d8c7810e72d15c4dddda31d09 - Sigstore transparency entry: 637377229
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 123.2 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c19bed9abe90b628ec5677fd4052389a4a9069727fcd4e0b1b1a41f9b858f0df
|
|
| MD5 |
4d23e9861f2e541b5d327e55bd6c6a1e
|
|
| BLAKE2b-256 |
358663dc54838dc7591de8cfb8a134171f3dfc743acfef272e297c0da0e4b5cd
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314-win_amd64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314-win_amd64.whl -
Subject digest:
c19bed9abe90b628ec5677fd4052389a4a9069727fcd4e0b1b1a41f9b858f0df - Sigstore transparency entry: 637377327
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314-win32.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314-win32.whl
- Upload date:
- Size: 113.3 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
583a1722a517946106805d625089b6f3799585b8bb4dd6b35a2aadf16ceb725b
|
|
| MD5 |
a3d5855550bdc931fda3a06f455ed588
|
|
| BLAKE2b-256 |
ab409ef6f1867fc8789ad2134aecd9e0fbeb96028fa2dc3b6205cfe1e4582a9d
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314-win32.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314-win32.whl -
Subject digest:
583a1722a517946106805d625089b6f3799585b8bb4dd6b35a2aadf16ceb725b - Sigstore transparency entry: 637377443
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b13a5a424e757e12375077e64a2cff07e828e218e307cb3426d8699480a43f7a
|
|
| MD5 |
9d0b4d9051b8945407a46b76124391e7
|
|
| BLAKE2b-256 |
4e1437022e1a08dc02e4c93347dadf92ca71234754779bfdd66698a964ef1292
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
b13a5a424e757e12375077e64a2cff07e828e218e307cb3426d8699480a43f7a - Sigstore transparency entry: 637377075
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 143.0 kB
- Tags: CPython 3.14, 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2bdb6115498ef5b7cbbd25df18ed104e72bc0a31fdd5de48c636bab5d4c5caa
|
|
| MD5 |
6c5195fc8e59e65ab77c7fb587cbc6de
|
|
| BLAKE2b-256 |
602dcc537a3b4968adafc93a717358fb4f859a017a914766a68882b7c06b70cf
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
b2bdb6115498ef5b7cbbd25df18ed104e72bc0a31fdd5de48c636bab5d4c5caa - Sigstore transparency entry: 637377343
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 138.9 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b877dfa4fee428ca84f0c78e0dd5890e8beb05945aef1d6d0392d5e10b2e6c9
|
|
| MD5 |
70244f9053cdd851ad583b61dd4b0e35
|
|
| BLAKE2b-256 |
923541290f42cdca486c1569411cf85f5b84d4bda3dabb7dfb9d25d0a11ea284
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
6b877dfa4fee428ca84f0c78e0dd5890e8beb05945aef1d6d0392d5e10b2e6c9 - Sigstore transparency entry: 637377215
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 262.4 kB
- Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed0bbf4edd567a7a5ecc34d96ea75425965b0c2e5afa321e7684aaa373dc4e6b
|
|
| MD5 |
fe010a4ad343c9a38204cb3de3fe6366
|
|
| BLAKE2b-256 |
9888ee31ddd1c7a6dff41a1e05fe3d9a68936169d7c05cd427b0708e21048e8d
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp314-cp314-macosx_10_15_universal2.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp314-cp314-macosx_10_15_universal2.whl -
Subject digest:
ed0bbf4edd567a7a5ecc34d96ea75425965b0c2e5afa321e7684aaa373dc4e6b - Sigstore transparency entry: 637377301
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 120.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
692665c401071f9820e90e0f11e7f357f1f908d421cf538420b2a8b01fc461db
|
|
| MD5 |
9c361d0cb2fa9615d3e6e8b032494e06
|
|
| BLAKE2b-256 |
1db190330d8394e162a3b5b5fb35576c445d717bfaf5b65fd4ab43a3f102bd90
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp313-cp313-win_amd64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp313-cp313-win_amd64.whl -
Subject digest:
692665c401071f9820e90e0f11e7f357f1f908d421cf538420b2a8b01fc461db - Sigstore transparency entry: 637377353
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp313-cp313-win32.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp313-cp313-win32.whl
- Upload date:
- Size: 110.7 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f5ea9555b3308f5ce0aef136d09b4e23cfda1d5194c491154481f8c436138bd
|
|
| MD5 |
5fedf5a587b911c415dcd0992bd6a096
|
|
| BLAKE2b-256 |
ac33c9774c4698924fe7e7c4c2b5239b44979faeacab550c89e05e45e294a722
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp313-cp313-win32.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp313-cp313-win32.whl -
Subject digest:
3f5ea9555b3308f5ce0aef136d09b4e23cfda1d5194c491154481f8c436138bd - Sigstore transparency entry: 637377180
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40e41a2c96f4e3f0cae15b3b37ba08a6b248e82efd6ab80c24ff1459b3c072a2
|
|
| MD5 |
03dab045b0534ad415365962e64b9dac
|
|
| BLAKE2b-256 |
5b9c01f68b3be06795c1929f318fbd635f6bbc3df7dd87df8721eef518c647e7
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
40e41a2c96f4e3f0cae15b3b37ba08a6b248e82efd6ab80c24ff1459b3c072a2 - Sigstore transparency entry: 637377467
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.9 kB
- 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d37dfe968462f4eaab357c8df9cf2e4e8f375e71bb677e8bc48e59c54c1ebe44
|
|
| MD5 |
30efba7ea1f05404a645c1740378fd9b
|
|
| BLAKE2b-256 |
bcf45587826bb65067e40a016ccbb70be7d80e7ba1920234c9c4387b11d39675
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d37dfe968462f4eaab357c8df9cf2e4e8f375e71bb677e8bc48e59c54c1ebe44 - Sigstore transparency entry: 637377478
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 138.7 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3499823482f2f6b116bfb82a6c308c5e2c1516e62a9bef75e617f79f5f4dfd53
|
|
| MD5 |
c74c6ae00c569f4a558fbb05c4d1d9d7
|
|
| BLAKE2b-256 |
8f72ba8c4a2f5a1a082bca4dfb42bd29417e28a9ec52781db873641d44f967b1
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
3499823482f2f6b116bfb82a6c308c5e2c1516e62a9bef75e617f79f5f4dfd53 - Sigstore transparency entry: 637377473
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 262.1 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aaa0120ee2752ef8d630d82e9cab87108a98f3619faa4b1af0c81c85b78a237e
|
|
| MD5 |
fccd80f3abb84cfefae8c471d9838fb5
|
|
| BLAKE2b-256 |
2a20e0c9532afb700340407d806c221e650e3f198fe5f8056abe4d3bb9e9e9f1
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp313-cp313-macosx_10_13_universal2.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp313-cp313-macosx_10_13_universal2.whl -
Subject digest:
aaa0120ee2752ef8d630d82e9cab87108a98f3619faa4b1af0c81c85b78a237e - Sigstore transparency entry: 637377204
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 120.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ed320ff52af1f4a8eb9579880183fe10e1d20ad7e14d273e4e8abcc829a0279
|
|
| MD5 |
a84e81e31dcd381e8465dd82d4a02dda
|
|
| BLAKE2b-256 |
8b6b47bc13664990323bbd2eb85edd669c35c7cad0fd0fe63c538178e1c82523
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp312-cp312-win_amd64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp312-cp312-win_amd64.whl -
Subject digest:
6ed320ff52af1f4a8eb9579880183fe10e1d20ad7e14d273e4e8abcc829a0279 - Sigstore transparency entry: 637377067
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp312-cp312-win32.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp312-cp312-win32.whl
- Upload date:
- Size: 110.7 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d58c63822d03766b5861be037803873169fe096f5156b7a6289258727e2692e2
|
|
| MD5 |
bae1826cb17751641e6a294e5431144c
|
|
| BLAKE2b-256 |
134dcc7b22526a174ba7f4626bb9cf5578ce5d49a491a03fe08e59ddb085db11
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp312-cp312-win32.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp312-cp312-win32.whl -
Subject digest:
d58c63822d03766b5861be037803873169fe096f5156b7a6289258727e2692e2 - Sigstore transparency entry: 637377553
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fe5c05d71de9b7c4ed710e0466f2fcced25446227615d93102e108dd71d844f
|
|
| MD5 |
812f5ee04ff76c0d61c29c17c4af451a
|
|
| BLAKE2b-256 |
c6386207ff528f47d5f50fb16c8e61883abd0d5a33fc6890c916e8b3f173358a
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
8fe5c05d71de9b7c4ed710e0466f2fcced25446227615d93102e108dd71d844f - Sigstore transparency entry: 637377096
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.6 kB
- 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e264780e3bc7871e2ae11bb1a63259d8601f52889415b5d26ba38757b046345
|
|
| MD5 |
f42efc20f6953d58f325cff9526da53c
|
|
| BLAKE2b-256 |
e6b13c1f8d33283092b1d33e6b328dfb02b03fb71cb5f0cb2ab90b168d67f641
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6e264780e3bc7871e2ae11bb1a63259d8601f52889415b5d26ba38757b046345 - Sigstore transparency entry: 637377562
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 138.7 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e747e0f7ac78babe9ae4b63edab08f7bfe125a466702ec9e31106e61c2ce7a1d
|
|
| MD5 |
4eefb4c93de88426313982103f4b0ddb
|
|
| BLAKE2b-256 |
20d3636af1fa81a2f5516937d0c80f69fd914eacdd42d2b9e753c586d524b023
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
e747e0f7ac78babe9ae4b63edab08f7bfe125a466702ec9e31106e61c2ce7a1d - Sigstore transparency entry: 637377377
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 262.0 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8774b60c172f5b049f2e6a9ca7a727aeaca8507d6d01447e60e73105d88d104c
|
|
| MD5 |
7bb890afab6ea9a1e5107f65313e00fc
|
|
| BLAKE2b-256 |
647eabcd07da610151a0fd31f23f6c9628bdf3d8e7204d971e003a0097ad6c6c
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp312-cp312-macosx_10_13_universal2.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp312-cp312-macosx_10_13_universal2.whl -
Subject digest:
8774b60c172f5b049f2e6a9ca7a727aeaca8507d6d01447e60e73105d88d104c - Sigstore transparency entry: 637377247
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 119.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ed584af50948675e37cde4a36be3e7a25502d02e0bad84c7792102af965c04f
|
|
| MD5 |
1a12d63b03cb5fe770386c02dacbbf2f
|
|
| BLAKE2b-256 |
dda5999db2860acbc8cbdeeb587ef997aabc7640aa3a418e6a5b7d9bcc70d596
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp311-cp311-win_amd64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp311-cp311-win_amd64.whl -
Subject digest:
7ed584af50948675e37cde4a36be3e7a25502d02e0bad84c7792102af965c04f - Sigstore transparency entry: 637377106
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp311-cp311-win32.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp311-cp311-win32.whl
- Upload date:
- Size: 110.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e348c43f99a081979d90ad979584df688af320229a264acaf4a9d9c0eaced180
|
|
| MD5 |
1d1e3a2344f45c65baa3d66e160c27a7
|
|
| BLAKE2b-256 |
a9b6d9b3a8c448b35d7c04f7cf0fc5e5eb1f5de00d083aaf3cde1b457c6ced9f
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp311-cp311-win32.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp311-cp311-win32.whl -
Subject digest:
e348c43f99a081979d90ad979584df688af320229a264acaf4a9d9c0eaced180 - Sigstore transparency entry: 637377315
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4decea9e3ca57270df27cd38f43767dc8925efc352e1eb046d97568fe85c60fe
|
|
| MD5 |
a491d073b5d6605969035e22684b31d4
|
|
| BLAKE2b-256 |
898347bf65f498ab159eb64dfded534d7f521834a37ff8ce07bd89ae9bb92124
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
4decea9e3ca57270df27cd38f43767dc8925efc352e1eb046d97568fe85c60fe - Sigstore transparency entry: 637377392
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 141.0 kB
- 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f88937a1d27a34b21e489f58022ee01b6c4f4bd5929c0cb3ba0b7003f7221610
|
|
| MD5 |
dbd069a207546688112aba8c483823f5
|
|
| BLAKE2b-256 |
4f1d547bc10733e070c91e0e198990f668f4f6b23f5f6c156b0837088ea9ece8
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f88937a1d27a34b21e489f58022ee01b6c4f4bd5929c0cb3ba0b7003f7221610 - Sigstore transparency entry: 637377488
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 136.9 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dea485423dcadbbbd2c2855ee1353cde1a50429aa8264a4e3edc7411a88e954
|
|
| MD5 |
a525d6dddbc987e8152638ca3b349a40
|
|
| BLAKE2b-256 |
24df7483858e927369d3ca2b31413c5fa3bd817c4d5ef3e236736cf17c465d63
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
4dea485423dcadbbbd2c2855ee1353cde1a50429aa8264a4e3edc7411a88e954 - Sigstore transparency entry: 637377416
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 259.4 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e977e11318a754b92bd8a4052d104467e175971aff1003424f65924e14ca4a5a
|
|
| MD5 |
395a5b63b5d941d18b4190913971d96d
|
|
| BLAKE2b-256 |
b59b9397684f08b5d02d8ab8be7b988455a4c8dc4b204725bbe4a826dcd3a334
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp311-cp311-macosx_10_9_universal2.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp311-cp311-macosx_10_9_universal2.whl -
Subject digest:
e977e11318a754b92bd8a4052d104467e175971aff1003424f65924e14ca4a5a - Sigstore transparency entry: 637377436
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 118.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bec24f801bc262515ea90b34866a9f20b00005ccc5d9bb10241f6497865dc6fd
|
|
| MD5 |
beb68eb6552628ecc2e3a092fed3a69d
|
|
| BLAKE2b-256 |
1266c70852fee9ccb3a1215a70816fa367621f2c2c4e038ad7d75d4a7681eda4
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp310-cp310-win_amd64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp310-cp310-win_amd64.whl -
Subject digest:
bec24f801bc262515ea90b34866a9f20b00005ccc5d9bb10241f6497865dc6fd - Sigstore transparency entry: 637377543
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp310-cp310-win32.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp310-cp310-win32.whl
- Upload date:
- Size: 109.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8b7fb2fb91c794bda0dc453ceb61b7344180783db6c1740b9532c7e95b4fbb4
|
|
| MD5 |
0c4881cac7002fa3bf46735b3cfa4992
|
|
| BLAKE2b-256 |
d965b8cad9f1d790f3cb72aa1959e3d6d8b7f77fd54aa037cfb6c9358b4ae91d
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp310-cp310-win32.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp310-cp310-win32.whl -
Subject digest:
c8b7fb2fb91c794bda0dc453ceb61b7344180783db6c1740b9532c7e95b4fbb4 - Sigstore transparency entry: 637377265
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6784125609d60dcaeded4fa321cc9931ae28416669b2e319679c3cea8b86a05
|
|
| MD5 |
e3661e7ea781c524fb9648eaedf2760f
|
|
| BLAKE2b-256 |
620cee4726c04c56eb766b9b2f45784db2c82b66ac19cf7ec5347028a20f40a2
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
e6784125609d60dcaeded4fa321cc9931ae28416669b2e319679c3cea8b86a05 - Sigstore transparency entry: 637377507
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 139.7 kB
- 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df22516c95084f29bacd7b1c0f5f142336b83bac3bb2d7565de73ba6ddd98f99
|
|
| MD5 |
29b710a77d5e7a9f6ec9ac12f8cf5f01
|
|
| BLAKE2b-256 |
92bd6aae66eee39bea480b35b87fc4ca07a0af9f9da316fa78423d49e595e0ef
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
df22516c95084f29bacd7b1c0f5f142336b83bac3bb2d7565de73ba6ddd98f99 - Sigstore transparency entry: 637377116
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 135.7 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e2a28a8911aff9a215ffc60e12d6399193fd3ba1b8eea3b43db1e66e4f321c4
|
|
| MD5 |
07a90937f06dee6305c97962fd773695
|
|
| BLAKE2b-256 |
405f0b8a14fa2f538da8ba3299c1ada5017d50b729985f24a4a38c3d66edd38e
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
2e2a28a8911aff9a215ffc60e12d6399193fd3ba1b8eea3b43db1e66e4f321c4 - Sigstore transparency entry: 637377043
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 256.9 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
559af9af287577a2d381cb38a60742a7cdda3cfd6d89124a908fc05ca1ea1245
|
|
| MD5 |
3a6e14312c30831777cc10604da36617
|
|
| BLAKE2b-256 |
2ba8259f6d41e020b00eb87e35cd13f1331962da158b7a7c6d73f458fe1e80a2
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp310-cp310-macosx_10_9_universal2.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp310-cp310-macosx_10_9_universal2.whl -
Subject digest:
559af9af287577a2d381cb38a60742a7cdda3cfd6d89124a908fc05ca1ea1245 - Sigstore transparency entry: 637377403
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 119.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cccb6103b0d4f8b78273b99248ed2143d5861c62f7c3acd9a707249ae27d41be
|
|
| MD5 |
0aa39621d8ea61b954da42cd93fae32f
|
|
| BLAKE2b-256 |
39444e9474de916db9de628d11c673141d910365eb3b33cd71bdc1323075a501
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp39-cp39-win_amd64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp39-cp39-win_amd64.whl -
Subject digest:
cccb6103b0d4f8b78273b99248ed2143d5861c62f7c3acd9a707249ae27d41be - Sigstore transparency entry: 637377151
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp39-cp39-win32.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp39-cp39-win32.whl
- Upload date:
- Size: 109.6 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edda6f0865585d351e632efe2ce50bc615ff96474c97a499250aa1d80a2a700b
|
|
| MD5 |
5b391cbf445b7609eee7df2a6bb8b54b
|
|
| BLAKE2b-256 |
2d59aa36fc2454a032ce41a9d3b160038477e5fc8c140b3037cfb1cc57e4e6b3
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp39-cp39-win32.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp39-cp39-win32.whl -
Subject digest:
edda6f0865585d351e632efe2ce50bc615ff96474c97a499250aa1d80a2a700b - Sigstore transparency entry: 637377533
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fead00e578e92f599f282ffb0fa19c625c44056088db254459bf7eaa401ef8d
|
|
| MD5 |
8588d96b060935180adc9bfa118f34a0
|
|
| BLAKE2b-256 |
169a849d19786be008a46b4bd5bdc2be7e6db0d2d2d9bea167667eda1c48bf25
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
6fead00e578e92f599f282ffb0fa19c625c44056088db254459bf7eaa401ef8d - Sigstore transparency entry: 637377167
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 139.7 kB
- Tags: CPython 3.9, 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aca23ca4b5367ebfca7196387c89ce797b492286b19e9d9731f317674f7b7030
|
|
| MD5 |
b51af34a959b2b0c683e78cf4d69e900
|
|
| BLAKE2b-256 |
2fc2b108d510f38a9dbdaecbe6cf7de0f701c045b1b93892141e14879613479a
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
aca23ca4b5367ebfca7196387c89ce797b492286b19e9d9731f317674f7b7030 - Sigstore transparency entry: 637377158
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 135.8 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be2c4ea85d759e07c27068239df6ead74dcaae054fa7572fb6f38087b738f682
|
|
| MD5 |
5bdfc2543316a6470e2994b3ca202668
|
|
| BLAKE2b-256 |
6b7914b5f97f0535b5f8abdcbff5153da4714439adf8f0379ccc5d9e693184e4
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
be2c4ea85d759e07c27068239df6ead74dcaae054fa7572fb6f38087b738f682 - Sigstore transparency entry: 637377520
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 257.2 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6fbef7222548e3794407f4978028d843cfacd0c433db7949a5b08a0928c3144
|
|
| MD5 |
ca742f17735bb4ad0571dbd2154cb1e4
|
|
| BLAKE2b-256 |
0ada5570e962d269724208ddacdf98ae5bd68bc1343240eb10f5d5aef5a2d0ea
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp39-cp39-macosx_10_9_universal2.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp39-cp39-macosx_10_9_universal2.whl -
Subject digest:
a6fbef7222548e3794407f4978028d843cfacd0c433db7949a5b08a0928c3144 - Sigstore transparency entry: 637377129
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 118.8 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea94e94d31d8c000cc2b8a5b7f98af9bba6b5092619bfc2b731e8bc4aff6d3f5
|
|
| MD5 |
dc728c00757c01b3a03a40e875e87cc7
|
|
| BLAKE2b-256 |
e3e38ff9c5493363ccd586a54d32ea5184a32e4e0d89f3c5098df6ad28a3c27d
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp38-cp38-win_amd64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp38-cp38-win_amd64.whl -
Subject digest:
ea94e94d31d8c000cc2b8a5b7f98af9bba6b5092619bfc2b731e8bc4aff6d3f5 - Sigstore transparency entry: 637377498
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp38-cp38-win32.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp38-cp38-win32.whl
- Upload date:
- Size: 109.3 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9f9b9dfc4611247e7f3d6b68ffa2de0aec6901f1ba11bab1aeb8e8b0de179e9
|
|
| MD5 |
ea33bef52f5b820d172dbd350d5a9fd3
|
|
| BLAKE2b-256 |
dcc2179c2486b938e076a13b5df04353c804f9bb763db56ab2acb8ff0a2c50b2
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp38-cp38-win32.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp38-cp38-win32.whl -
Subject digest:
b9f9b9dfc4611247e7f3d6b68ffa2de0aec6901f1ba11bab1aeb8e8b0de179e9 - Sigstore transparency entry: 637377192
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e39c11ec604eb9f8c98debef25fe7bb578b6c53dfbe6df87c3e7c3e43614e9ab
|
|
| MD5 |
c87c24fa9b772caf9d8bc75ee9b721ee
|
|
| BLAKE2b-256 |
9e3d364b7dbb7aa221a91139496726da6cd2d79aa0157573c6da1da09fab3311
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl -
Subject digest:
e39c11ec604eb9f8c98debef25fe7bb578b6c53dfbe6df87c3e7c3e43614e9ab - Sigstore transparency entry: 637377457
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 139.0 kB
- Tags: CPython 3.8, 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
488a0fa6daa7ee049abeadfe6c500cc5523d62cdf199bb4298ea50fe85d20913
|
|
| MD5 |
e46d28dee020d81286876ba319441b08
|
|
| BLAKE2b-256 |
65f1791cc08bfbfcf736a915f810a9d325508fa24cc3b9e03814bec65745cbf3
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
488a0fa6daa7ee049abeadfe6c500cc5523d62cdf199bb4298ea50fe85d20913 - Sigstore transparency entry: 637377359
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 135.3 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bfacb1dc967e55c70d187a24a27e42cb2337cca16a05d423b31c78e39a550de
|
|
| MD5 |
838fc83e1d4cd253f2d40bf7c5ad4ba0
|
|
| BLAKE2b-256 |
96c3c8404e00e544858c4869b2db037ce91c8d1a2831569827439078bd8770f4
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl -
Subject digest:
0bfacb1dc967e55c70d187a24a27e42cb2337cca16a05d423b31c78e39a550de - Sigstore transparency entry: 637377079
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type:
File details
Details for the file oilspillsim-0.0.2-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: oilspillsim-0.0.2-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 256.4 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0cbf21d33b59ab495fe24090d1c846efffe3943924ddb4e4beae3899f12b7ac
|
|
| MD5 |
c28a26fb8a69daeb50db3f032501146d
|
|
| BLAKE2b-256 |
81f828332734c7e4b8b17c0213d99f14900488b0ddca11544125192ab4a72cdf
|
Provenance
The following attestation bundles were made for oilspillsim-0.0.2-cp38-cp38-macosx_10_9_universal2.whl:
Publisher:
wheels.yml on AloePacci/cpp_oil_simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
oilspillsim-0.0.2-cp38-cp38-macosx_10_9_universal2.whl -
Subject digest:
a0cbf21d33b59ab495fe24090d1c846efffe3943924ddb4e4beae3899f12b7ac - Sigstore transparency entry: 637377276
- Sigstore integration time:
-
Permalink:
AloePacci/cpp_oil_simulator@5af757ecaeb20fafe0013760bbee884ee2359536 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AloePacci
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@5af757ecaeb20fafe0013760bbee884ee2359536 -
Trigger Event:
push
-
Statement type: