Code for the ICML 2025 paper "AssistanceZero: Scalably Solving Assistance Games".
Project description
Minecraft Building Assistance Game
This repository contains code for the ICML 2025 paper AssistanceZero: Scalably Solving Assistance Games. It includes the implementation of the Minecraft Building Assistance Game (MBAG), which we introduce to study more complex assistance games. It also includes code for running all experiments in the paper, including training assistants for MBAG with AssistanceZero.
MBAG is a multiagent environment that can run on its own within Python. It can also connect to running instances of Minecraft via Project Malmo for visualization or for interaction with human players.
See the project website for videos of our Minecraft assistant playing with real people!
Setup
This section describes how to set up your environment for running MBAG.
Installing dependencies
Installing the Python package: first, install Python 3.8, 3.9, or 3.10. Then, run one of the following commmands:
-
Install just the environment:
pip install -e . -
Also install the RLlib dependencies for training and running assistants:
pip install -e .[rllib] -
Also install the Malmo interface to run assistants in Minecraft:
pip install -e .[rllib,malmo]Note: the interface with Minecraft via Malmo is currently only supported on macOS and Linux.
Installing Java: to run assistants in Minecraft, you will also need Java 8 installed. On macOS, you specifically need to install the Java JDK 8u152, which is available here. See https://github.com/microsoft/malmo/issues/907 for details about why the specific version for macOS is necessary.
Downloading the house dataset: to install the house dataset from the CraftAssist paper that we use for training and evaluation, run:
cd data
wget https://minecraft-building-assistance-game.s3.us-east-1.amazonaws.com/craftassist.zip
unzip -o craftassist.zip
cd ..
Linting, testing, and type checking
The project uses various tools to maintain code quality. To install them all, run
pip install --upgrade -e .[dev]
Then, run linting and testing with the following commands:
./lint.sh
pytest -m "not uses_malmo"
To run fewer tests, you can some or all of these additional filters:
pytest -m "not uses_malmo and not slow"
pytest -m "not uses_malmo and not uses_rllib"
pytest -m "not uses_malmo and not uses_cuda"
Running assistants in Minecraft
Playing with assistants in Minecraft and/or collecting data of humans playing takes two steps: first, starting Minecraft instances, and second, connecting to those instances to run an episode within the MBAG environment.
Starting Minecraft
To start Minecraft instances, run the following command, assuming you've installed the Malmo dependencies (see setup section):
python -m malmo.minecraft launch --num_instances 2 --goal_visibility True False
Set the number of Minecraft instances to launch with the --num_instances option. You need at least two instances to play with an assistant (one for the human and one for the AI assistant); if you want to record a video of the game, start an additional instance for a "spectator" player.
The --goal_visibility argument controls which instances show the goal house as a transparent blueprint within the game. Generally you should set this to True for the first instances and False for additional instances (e.g., --goal_visibility True False False for three instances).
You can tell when Minecraft instances are ready by the following signs:
- The menu screen is displayed within Minecraft.
- The
python -m malmo.minecraft launchcommand stops producing new output, and the latest output lines showCLIENT enter state: DORMANT.
Running an MBAG episode
Once the Minecraft instances are running, you can use the following command to start an episode playing with an assistant:
python -m mbag.scripts.evaluate with human_with_assistant assistant_checkpoint=data/assistancezero_assistant/checkpoint_002000 num_simulations=1
Note: num_simulations is used to control how long MCTS runs. If you are on a machine with a GPU, you can probably set num_simulations=20. If you do not have a GPU, you may want to set num_simulations=1, which will sample directly from the policy network. If you notice errors like WARNING - mbag.environment.mbag_env - environment step took longer than Malmo action_delay; action_delay may need to be increased to achieve consistent step rate, then reduce num_simulations.
To play an episode without an assistant, run:
python -m mbag.scripts.evaluate with human_alone assistant_checkpoint=data/assistancezero_assistant/checkpoint_002000
The assistant_checkpoint argument is still needed in this case to load the environment configuration.
Once the episode starts, press Return (Enter) to enable movement and Delete (Fn + Backspace on Mac) to enable flying.
The episode will automatically terminate when the house is completed, but if you want to end it sooner, use Ctrl+C. At the end of the episode, the episode data will be saved and metrics will be printed out.
You can additional specify record_video=True to record a video of the game.
Running experiments
There are several steps in the pipeline to train and evaluate human models and assistants:
-
Training human models: use the commands below to train the eight human models (PPO, AlphaZero, 3 BC, and 3 piKL):
python -m mbag.scripts.train with ppo_human # PPO human model python -m mbag.scripts.train with alphazero_human # AlphaZero human model # BC human model; can also set data_split=human_with_assistant or data_split=combined python -m mbag.scripts.train with bc_human data_split=human_alone # piKL human models; replace path/to/BC/checkpoint with the final checkpoint from the above. # Replace data_split=human_alone with whichever split you trained BC on. python -m mbag.scripts.train with pikl checkpoint_to_load_policies=path/to/BC/checkpoint \ checkpoint_name=bc_human_alone data_split=human_alone -
Evaluating prediction performance of human models: for BC and piKL, we use cross validation to train human models with one participant from the data collection left out. To do this, add
validation_participant_ids='[3]'to thebc_humantraining command. The participant IDs are 3, 4, 7, 9, and 11. Then, run this command to evaluate cross entropy and accuracy on the held-out data, replacingparticipant_ids='[3]'with the participant IDs you want to test:python -m mbag.scripts.evaluate_human_modeling with checkpoint=path/to/human/model/checkpoint \ policy_id=human \ participant_ids='[3]' \ human_data_dir=data/human_data_cleaned/human_alone/infinite_blocks_true/rllib_with_own_noops_flat_actions_flat_observations_place_wrong_reward_-1_repaired_player_0_inventory_0Additional instructions:
-
Use the
human_data_dirdepending on the human model and which data subset you would like to evaluate on:-
If the human model has
1_playerin the checkpoint name, use either of these to evaluate the human alone or human with assistant data, respectively:human_data_dir=data/human_data_cleaned/human_alone/infinite_blocks_true/rllib_with_own_noops_flat_actions_flat_observations_place_wrong_reward_-1_repaired_player_0_inventory_0 human_data_dir=data/human_data_cleaned/human_with_assistant/infinite_blocks_true/rllib_with_own_noops_flat_actions_flat_observations_place_wrong_reward_-1_repaired_player_1_inventory_1 -
If the human model has
2_playerin the checkpoint name, use these:human_data_dir=data/human_data_cleaned/human_alone/infinite_blocks_true/rllib_with_own_noops_flat_actions_flat_observations_place_wrong_reward_-1_repaired_player_0_inventory_0_1 human_data_dir=data/human_data_cleaned/human_with_assistant/infinite_blocks_true/rllib_with_own_noops_flat_actions_flat_observations_place_wrong_reward_-1_repaired_player_1_inventory_0_1
-
-
If you are evaluating a piKL human model, specify
minimatch_size=1.
-
-
Evaluating performance of human models at building houses: use the following command. Replace
runs='["BC"]'withruns='["MbagAlphaZero"]'for AlphaZero/piKL orruns='["MbagPPO"]'for PPO.python -m mbag.scripts.evaluate with checkpoints='["path/to/human/model/checkpoint"]' \ runs='["BC"]' policy_ids='["human"]' num_episodes=100 num_workers=10 \ env_config_updates='{"truncate_on_no_progress_timesteps": None, "goal_generator_config": "goal_generator_config": {"subset": "test"}}'Specify the number of episodes to evaluate with
num_episodesand choose how many evaluations to run in parallel by specifyingnum_workers(more workers will be faster but will use more memory/CPU/GPU). -
Training an assistant with AssistanceZero: use the following command:
python -m mbag.scripts.train with assistancezero_assistant \ checkpoint_to_load_policies=path/to/human/model/checkpoint \ checkpoint_name=name_of_human_model -
Testing an assistant with a human model: use the following command:
python -m mbag.scripts.evaluate with runs='["BC", "AlphaZero"]' \ checkpoints='["path/to/human/model/checkpoint", "path/to/assistant/checkpoint"]' \ policy_ids='["human", "assistant"]' \ temperatures='[1.0, 1.0]' \ num_episodes=100 num_workers=10 \ algorithm_config_updates='[{},{"mcts_config": {"argmax_tree_policy": True, "add_dirichlet_noise": False, "num_simulations": 20}}]' \ env_config_updates='{"horizon": 1500, "random_start_locations": True, "randomize_first_episode_length": False, "terminate_on_goal_completion": True, "truncate_on_no_progress_timesteps": None, "goal_generator_config": {"goal_generator_config": {"subset": "test"}}}' \ out_dir=path/to/store/outputSome of the options can be modified depending on the human model and assistant:
runs: these should be set to the algorithms used to train the human model and assistant. For BC, use"BC"; for piKL, AlphaZero, or AssistanceZero, use"MbagAlphaZero"; for PPO, use"MbagPPO". The first element of the list should be set to the algorithm for the human model and the second should be set based on the assistant.policy_ids: these should generally be set to["human", "assistant"]to use thehumanpolicy from the human model checkpoint and theassistantpolicy from the assistant checkpoint. However, when evaluating with the pretrained assistant, setpolicy_ids='["human", "human"]since the pretrained assistant has the policy IDhuman(it was trained by imitating human model data).temperatures: these can be used to modify the sampling temperature for the human model and assistant. In the paper, we set the assistant's temperature to 0.3 for the pretrained assistant and SFT assistant.num_episodesandnum_workers: see the above instructions on evaluating performance of human models at building houses for the meaning of these options.algorithm_config_updates: the options in here can be used to modify AssistanceZero's MCTS at test time. The main option of interest is"num_simulations"; more simulations take longer but may lead to better performance. We always use 20 simulations for evaluation in the paper.env_config_updates: setting the"subset"option under"goal_generator_config"will choose whether to use sample goal houses from the"train"or"test"dataset.
-
Pretrained and SFT assistants: to train the pretrained and SFT assistants, run the following commands:
# Generate a dataset of episodes from the BC human model (this will take a while). # It will create a directory under the human model checkpoint called rollouts_... python -m mbag.scripts.rollout with run=BC \ checkpoint=path/to/combined/bc/human/model/checkpoint \ run=BC policy_ids='["human"]' \ num_episodes=10000 num_workers=10 \ save_samples=True save_as_sequences=True max_seq_len=64 # Train pretrained assistant. python -m mbag.scripts.train with pretrained_assistant \ input=path/to/rollouts # Train SFT assistant. python -m mbag.scripts.train with sft_assistant \ checkpoint_to_load_policies=path/to/pretrained/assistant/checkpoint \ checkpoint_name=pretrained_assistant
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 mbag_gensyn-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 280.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
197f6da37537ba8be741469dabf026fa6f6feb3ec8860d765092170440acc800
|
|
| MD5 |
c64f152ea17340883050bd7a8b568db7
|
|
| BLAKE2b-256 |
f495d47b3852aa914996dc01d3c9b5af2d02aed650d75fd488382b703a450ce9
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
197f6da37537ba8be741469dabf026fa6f6feb3ec8860d765092170440acc800 - Sigstore transparency entry: 298591342
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 279.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3e4e051d77f2c99fd2a912484364855452da537c6095052f55411f4d36b2a8a
|
|
| MD5 |
81d89c60a164b433586948bacf41fa59
|
|
| BLAKE2b-256 |
2a02e1adcab2a190a00a02c7b259829ffa14a7cde09905ac5f0ffd9977f4dbd7
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
b3e4e051d77f2c99fd2a912484364855452da537c6095052f55411f4d36b2a8a - Sigstore transparency entry: 298591514
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 279.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66a74c3ae52dcdeadc6be53a393cdc1c75e26cde4e4792a780fe92cb2033bfa2
|
|
| MD5 |
6f3ad05a920c5227a8ef54f5932cd90e
|
|
| BLAKE2b-256 |
b1bec0b5c51281de14e60d74cd2db4336bd719bd363964e7cd5a8b26f9a75970
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
66a74c3ae52dcdeadc6be53a393cdc1c75e26cde4e4792a780fe92cb2033bfa2 - Sigstore transparency entry: 298591561
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 280.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17f4b5e8d653247db144a720ded7a4cd3853731ddef7e189caf3a8ec3fb71455
|
|
| MD5 |
0e310a597932cb8b918243451c3aae0d
|
|
| BLAKE2b-256 |
913e634871248f05d742b1e9b8270ae870cfc6eecadbc4ed360a84df8cf87120
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
17f4b5e8d653247db144a720ded7a4cd3853731ddef7e189caf3a8ec3fb71455 - Sigstore transparency entry: 298591653
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 237.0 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fbc1f04f9fe86ab693b2780c55278c96ec79715d1428ec616ff396403d5af9e
|
|
| MD5 |
821094f15d95219c78e125e4219cbebb
|
|
| BLAKE2b-256 |
eb07b5aeee094a4e2f23261ac9c6691a285a234c2f0d7e71652e5cef22534e58
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
7fbc1f04f9fe86ab693b2780c55278c96ec79715d1428ec616ff396403d5af9e - Sigstore transparency entry: 298591421
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 237.6 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3b36cb8729693488092c3bc8de62aaa000a7d1eb11dd7bff69280122c9a2da7
|
|
| MD5 |
b85ccdb335683fdbf5f6fbe9ea76f14a
|
|
| BLAKE2b-256 |
e01200bfc190fe05ca4ace1fabbfcc84e2e90b02c8c56f64c6b1ac406479955d
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
f3b36cb8729693488092c3bc8de62aaa000a7d1eb11dd7bff69280122c9a2da7 - Sigstore transparency entry: 298591607
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 280.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3eb6e9e80326af9a00d58e0126614cd7dd2ba5385df762a10fe393fbf8e762bb
|
|
| MD5 |
b397dc18194eccaf62ad3084d9c6af82
|
|
| BLAKE2b-256 |
356e7ea97894012a90f970804d6bd1dad76367f522aa4dd766c63be9ee0e43cb
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
3eb6e9e80326af9a00d58e0126614cd7dd2ba5385df762a10fe393fbf8e762bb - Sigstore transparency entry: 298591393
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 279.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f77ef3ec224c1bdac5b9c75c2a94c00c4203171f11e1e544fe755986af82e7ee
|
|
| MD5 |
d69042dfbe40251fd5b13b52e942773e
|
|
| BLAKE2b-256 |
20f1b750c6fc71075dd45164e330049489f78d572c4213136c8811ab3df4cd53
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
f77ef3ec224c1bdac5b9c75c2a94c00c4203171f11e1e544fe755986af82e7ee - Sigstore transparency entry: 298591308
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 279.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
707b5c94a727cb26c4baeaae0eb2bdd1c1c41ca26853b04870177d13472dfd64
|
|
| MD5 |
7bdc31c943611b7851f0c147afff8797
|
|
| BLAKE2b-256 |
dc6ac37d20883795e1dc81d4f7866a22bc80db8f4a71d8cab61e09dedac92e5d
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
707b5c94a727cb26c4baeaae0eb2bdd1c1c41ca26853b04870177d13472dfd64 - Sigstore transparency entry: 298591376
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 281.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3763cc59d4d3839971e2cc7c91ed28c55262371d93cf2fc679a0cb874e77b669
|
|
| MD5 |
5a49cffaa610d7fc85728a17ecb21326
|
|
| BLAKE2b-256 |
1041fcdb8c5685b97c9b4d2b2d86ebfd11b3c122177205fa06d54e5d6871fa20
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
3763cc59d4d3839971e2cc7c91ed28c55262371d93cf2fc679a0cb874e77b669 - Sigstore transparency entry: 298591493
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 237.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24d3814318a8577eb6e9858aa6e4935b87ef9e3eb40b3a129a5687b1edfc2fca
|
|
| MD5 |
30ef5296970e4b202bc8550165d04072
|
|
| BLAKE2b-256 |
94d439631d564fd19d881811d34203305d3a15aff3e04666865ee5cedf1947d4
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
24d3814318a8577eb6e9858aa6e4935b87ef9e3eb40b3a129a5687b1edfc2fca - Sigstore transparency entry: 298591326
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 237.6 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d17e72b48686dbe8b13e322a09f9a495b61f7aaf88be6b6ef01a7300e9979478
|
|
| MD5 |
8f312c8e2850a4740085e351d9770ad3
|
|
| BLAKE2b-256 |
14b2a49e52f1908cdbd29fc0a0b054e2e7a169e96b27756af6ca081bd0f94770
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
d17e72b48686dbe8b13e322a09f9a495b61f7aaf88be6b6ef01a7300e9979478 - Sigstore transparency entry: 298591578
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 280.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46d3c1113e210c359ea292488bebea169df5cf20814aa108cfa1cf07383ad562
|
|
| MD5 |
a4cfad46a84687202f8395e25bf06e46
|
|
| BLAKE2b-256 |
9014753036041e92eaabd50d1c71ca63a7cc05f1e15ac8c4c1d1c9375f7fec9f
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
46d3c1113e210c359ea292488bebea169df5cf20814aa108cfa1cf07383ad562 - Sigstore transparency entry: 298591406
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 278.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5815b1e3eb155d468e10ad497623d270707ba21726ca40622a86a1b7f357be40
|
|
| MD5 |
62eb75c23337afef265a7e6bac353b61
|
|
| BLAKE2b-256 |
cf51d8e9e15a0119391da08159ce73aa9fd7a6321c37a508d51d9fb61b4abd05
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
5815b1e3eb155d468e10ad497623d270707ba21726ca40622a86a1b7f357be40 - Sigstore transparency entry: 298591531
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 278.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
528fd1380c2dc0fd896ba7b7b8be513adcab5c0cf12dc0333b2ed5a9864336a2
|
|
| MD5 |
a4e98a865ce0434e6c53fa38a063291f
|
|
| BLAKE2b-256 |
3e504ca5fedc873fce257bcd682d0d5e6516869f0d868c41e3cc3d3d9c820214
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
528fd1380c2dc0fd896ba7b7b8be513adcab5c0cf12dc0333b2ed5a9864336a2 - Sigstore transparency entry: 298591634
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 280.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf21111ab3204ea4b286c222fbc88020be7afa5025fe3ea56e09a4df2b2ac5db
|
|
| MD5 |
5a15eeaa03eb14c4ffb8fc8504c4ecbe
|
|
| BLAKE2b-256 |
b70e6597062a0244d965a4bd23b0f13b75a16099024d976526264d9d8c122ab4
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
cf21111ab3204ea4b286c222fbc88020be7afa5025fe3ea56e09a4df2b2ac5db - Sigstore transparency entry: 298591462
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 237.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1d8128ad9cca95587320eb361d3041ab9f4bd76030a11c2808fa4f859d6f694
|
|
| MD5 |
b7e64120eeeb45b681ddcc1c67f91946
|
|
| BLAKE2b-256 |
da55febdc9217a5703af918e22e2c7cd3f3fe7c59bddef6a503c26f057052df8
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
d1d8128ad9cca95587320eb361d3041ab9f4bd76030a11c2808fa4f859d6f694 - Sigstore transparency entry: 298591352
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 237.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b93f985f2911a192acb7564a93974d4e8f42c486c3ff8d10c4d27a3b3e1cf91
|
|
| MD5 |
9b2247065e515146752304fbf985e271
|
|
| BLAKE2b-256 |
65dee2d6d1bcb7adb2e3e852fcbf7329486a5223b2ffc03190499d05fd442ca2
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
4b93f985f2911a192acb7564a93974d4e8f42c486c3ff8d10c4d27a3b3e1cf91 - Sigstore transparency entry: 298591430
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 279.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d74da9094d49d26dbe1bd2d4e22b4c98aa0c7a576356c5fa1bfdb3a6625fc28
|
|
| MD5 |
c47c82a7f14c4ad78074b9347907193e
|
|
| BLAKE2b-256 |
8c1593b47159517cb119fb4c9041748653fa3c120f2d16ff0714b3281ce45b6e
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
6d74da9094d49d26dbe1bd2d4e22b4c98aa0c7a576356c5fa1bfdb3a6625fc28 - Sigstore transparency entry: 298591544
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 278.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c25698c4977d0522fb51c46daf048487894ee97ecaf7a5a5f7c653d41d38b061
|
|
| MD5 |
8dcb19b4b7a3217fa13b5b01c27b5801
|
|
| BLAKE2b-256 |
50e1eb5bfa8d6ad6b85336c7cfa58f178c05582090f984c87a309a3a5a404d90
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
c25698c4977d0522fb51c46daf048487894ee97ecaf7a5a5f7c653d41d38b061 - Sigstore transparency entry: 298591503
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 278.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ecfa01367ae0bce12457025f034ff9440fae1bc9eff97247e57a0368d5ad0b2
|
|
| MD5 |
10900dfc31d9c5de2c4d273dabdd39e6
|
|
| BLAKE2b-256 |
59117b01c18cb73d0a1c38ace04afda949c94d034a82586e43416bacaf514a93
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
9ecfa01367ae0bce12457025f034ff9440fae1bc9eff97247e57a0368d5ad0b2 - Sigstore transparency entry: 298591481
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 279.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f483f897d380d184040cfe3fec5c5e8854ea1f8d1ecd4719d922d4715f0034a2
|
|
| MD5 |
40c446f25d12ade30b6a4e51114f42e5
|
|
| BLAKE2b-256 |
5b533e22b9968a71e41af5c349e26215e97d3437b98163eaa03bde84ad731095
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
f483f897d380d184040cfe3fec5c5e8854ea1f8d1ecd4719d922d4715f0034a2 - Sigstore transparency entry: 298591451
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 237.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e15623c028282597c932c8d80133b31f8ae52264e9190198fd8f4a3dc96f6b3
|
|
| MD5 |
4994a7db7ce65bee0a73bcb622d09356
|
|
| BLAKE2b-256 |
4d75a33b999a711b3a7c112cceba0877d2c951469369e194b446d3a2c5d56bc6
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
9e15623c028282597c932c8d80133b31f8ae52264e9190198fd8f4a3dc96f6b3 - Sigstore transparency entry: 298591618
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mbag_gensyn-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: mbag_gensyn-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 237.5 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b38f3221685111343ec35172280bffcac89d34fa5a3f6ce775ff0a295dd8fe02
|
|
| MD5 |
86280da168aaec81b47242c0e29037b0
|
|
| BLAKE2b-256 |
dc02bc2f140f9ff3deac12cd659cb6a96163d1877efa331b0fd56488965c4e7c
|
Provenance
The following attestation bundles were made for mbag_gensyn-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
build_wheels.yml on gensyn-ai/minecraft-building-assistance-game
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mbag_gensyn-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
b38f3221685111343ec35172280bffcac89d34fa5a3f6ce775ff0a295dd8fe02 - Sigstore transparency entry: 298591368
- Sigstore integration time:
-
Permalink:
gensyn-ai/minecraft-building-assistance-game@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/gensyn-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@91687ecf05d8a31e6f43e764b54c7b054d3804d6 -
Trigger Event:
push
-
Statement type: