Skip to main content

Runtime Hypervisor. Run infinite Python package & interpreter versions concurrently in one environment in milliseconds.

Project description

omnipkg Logo

omnipkg – Python Runtime Hypervisor

Run infinite Python package & interpreter versions concurrently in one environment in milliseconds.

License PyPI Conda Downloads Conda Downloads (minds3t) PyPI Downloads Docker Pulls Global Reach Badge

Python Versions Supported Platforms

Security Safety Pylint Bandit CodeQL Socket

Concurrent Python Interpreters Hot-Swapping Python Hot-Swapping Auto-Healing Performance 24 Languages


omnipkg is not just another package manager. It's an intelligent, self-healing runtime orchestrator that breaks the fundamental laws of Python environments. For 30 years, developers accepted that you couldn't run multiple Python versions in one script, or safely switch C-extensions like NumPy mid-execution. Omnipkg proves this is no longer true.

Born from a real-world nightmare—a forced downgrade that wrecked a production environment—omnipkg was built to solve what others couldn't: achieving perfect dependency isolation and runtime adaptability without the overhead of containers or multiple venvs.


⚖️ Multi-Version Support

omnipkg pip uv

Multi-version installation tests run every 3 hours. Live results here.


💡 Why This Matters

The Multi-Version Nightmare is Over: Modern projects are messy. You need tensorflow==2.10 for a legacy model but tensorflow==2.15 for new training. A critical library requires numpy==1.21 while your latest feature needs numpy==2.0. Traditional solutions like Docker or virtual environments force you into a painful choice: duplicate entire environments, endure slow context switching, or face crippling dependency conflicts.

The Multi-Interpreter Wall is Gone: Legacy codebases often require older Python versions (e.g., Django on 3.8) while modern ML demands the latest (Python 3.11+). This forces developers to constantly manage and switch between separate, isolated environments, killing productivity.

The omnipkg Solution: One Environment, Infinite Python Versions & Packages, Zero Conflicts, Downtime, or Setup. Faster than UV.

omnipkg doesn't just solve these problems—it makes them irrelevant.

  • Run Concurrently: Execute tests for Python 3.9, 3.10, and 3.11 at the same time, from one command, test is done in under 500ms. No more sequential CI jobs.
  • Switch Mid-Script: Seamlessly use torch==2.0.0 and torch==2.7.1 in the same script without restarting.
  • Instant Healing: Recover from environment damage in microseconds, not hours.
  • Speak Your Language: All of this, in your native tongue.

This is the new reality: one environment, one script, everything just works.


🧠 Revolutionary Core Features

1. Multiverse Orchestration & Python Hot-Swapping <600ms 3 Py Interps 1 Script 1 Env 🍎 macOS

The "Quantum Multiverse Warp": 3 Pythons, 1 Script, Sub-3ms Execution

Our "Quantum Multiverse Warp" demo, validated live in CI across multiple platforms, executes a single script across three different Python interpreters and three package versions concurrently in the same environment. The hot worker performance isn't just fast; it redefines what's possible for high-performance Python automation.

Production Benchmark Results (macOS CI)

Task (Same Script, Same Environment) Hot Worker Execution
🧵 Thread 1: Python 3.9 + Rich 13.4.2 2.2ms
🧵 Thread 2: Python 3.10 + Rich 13.6.0 2.3ms
🧵 Thread 3: Python 3.11 + Rich 13.7.1 2.3ms
🏆 Total Concurrent Runtime 2.3ms
⏱️ Total Test Duration (with setup) 2.14s

Platform-Specific Performance:

Platform Hot Worker Benchmark Total w/ Setup CI Link
🐧 Linux 3.8ms avg (3.2-4.5ms range) ~580ms View CI
🍎 macOS 2.3ms avg (2.2-2.3ms range) 2.14s View CI

What This Actually Means

The numbers that matter are the hot worker benchmarks (sub-5ms). This is the actual execution time for running code across three concurrent Python interpreters with three different package versions. The "Total w/ Setup" includes one-time initialization:

  • Worker pool spawning
  • Package installation (if not cached)
  • Environment validation

Why This Is Revolutionary:

  • Traditional approach: Docker containers or separate venvs would take 30-90 seconds minimum to achieve the same multi-version testing
  • omnipkg approach: After initial setup, switching between Python versions and package combinations happens in microseconds, not seconds

This isn't just a speedup; it's a paradigm shift. What traditionally takes minutes with Docker or complex venv scripting, omnipkg accomplishes in milliseconds. This isn't a simulation; it's a live, production-ready capability for high-performance Python automation.

Benchmark Methodology

Our production benchmark follows industry-standard practices:

  1. 📥 Setup Phase: Verify Python interpreters are available and daemon is running (one-time cost)
  2. 🔥 Warmup Phase: Spawn workers and install packages - timing discarded (matches real-world "first run" scenario)
  3. ⚡ Benchmark Phase: Execute with hot workers - THIS IS THE METRIC (pure execution performance)
  4. 🔍 Verification Phase: Prove correctness with version checks (not timed)

Key Achievement: The hot worker performance (2-4ms) represents the actual overhead of omnipkg's multiverse orchestration. Once warmed up, switching between Python interpreters and package versions is faster than most function calls.

Don't believe it? See the live proof, then run Demo 8 to experience it yourself:

uv pip install omnipkg && omnipkg demo
# Select option 8: 🌠 Quantum Multiverse Warp

Live CI Output from Multiverse Benchmark:

 Phase 3: PRODUCTION BENCHMARK (hot workers, concurrent execution)
----------------------------------------------------------------------------------------------------
[T1]  Benchmarking Python 3.9 + Rich 13.4.2...
[T1]  Benchmark: 2.2ms
[T2]  Benchmarking Python 3.10 + Rich 13.6.0...
[T2]  Benchmark: 2.3ms
[T3]  Benchmarking Python 3.11 + Rich 13.7.1...
[T3]  Benchmark: 2.3ms

====================================================================================================
📊 PRODUCTION BENCHMARK RESULTS
====================================================================================================
Thread   Python       Rich       Warmup          Benchmark      
----------------------------------------------------------------------------------------------------
T1       3.9          13.4.2     3.4ms           2.2ms          
T2       3.10         13.6.0     3.0ms           2.3ms          
T3       3.11         13.7.1     3.5ms           2.3ms          
----------------------------------------------------------------------------------------------------
⏱️  Sequential time (sum of all):  6.8ms
⏱️  Concurrent time (longest one):  2.3ms
====================================================================================================

🎯 PERFORMANCE METRICS:
----------------------------------------------------------------------------------------------------
   Warmup (cold start):     3.3ms avg
   Benchmark (hot workers): 2.3ms avg
   Range:                   2.2ms - 2.3ms
   Speedup (warmup→hot):    1.5x
   Concurrent speedup:      2.93x
----------------------------------------------------------------------------------------------------

🎉 BENCHMARK COMPLETE!

✨ KEY ACHIEVEMENTS:
    3 different Python interpreters executing concurrently
    3 different Rich versions loaded simultaneously
    Hot worker performance: sub-50ms execution!
    Zero state corruption or interference
    Production-grade benchmark methodology

⏱️  Total test duration: 2.14s

🚀 This is IMPOSSIBLE with traditional Python environments!

Real-World Impact

For CI/CD Pipelines:

  • Before: Sequential matrix testing across Python 3.9, 3.10, 3.11 = 3-5 minutes
  • After: Concurrent testing with omnipkg = < 3 seconds (including setup)
  • Improvement: 60-100x faster CI/CD workflows

For Development:

  • Before: Switch Python versions → wait 30-90s for new venv/container
  • After: Switch with omnipkg → < 5ms overhead
  • Improvement: Instant iteration, zero context-switching penalty

This is the new reality: one environment, one script, everything just works — and it's blazing fast.


🔄 Reproducible State Sync & Environment Reconstruction

Omnipkg treats your environment as a State Engine — a deterministic, rebuildable artifact rather than a collection of installed files. Two commands drive this:


8pkg export — Snapshot your environment

8pkg export

Scans all registered interpreters and writes two files:

  • Local lock<venv>/.omnipkg/omnipkg.lock — full environment inventory including interpreter registry, active packages, and bubble state per Python version
  • Canonical state~/.config/omnipkg/locks/states/sha256_<hash>.toml — a privacy-scrubbed, path-free cryptographic fingerprint of your environment (safe to commit or share)

If the environment has changed since the last export, the SHA transitions automatically:

🔄 Environment changed — updating lock file
   sha256:aaaaaa... → sha256:bbbbbb...

If nothing changed, it's a no-op.


8pkg sync — Rebuild or verify from a lock file

8pkg sync

Runs an interactive flow. Auto-selects the most recent lock file for the current environment, shows a full sync plan across all registered interpreters, then computes a live SHA and compares it against the lock.

If the environment already matches:

✅ Environment already matches lock file (sha256:bbbbbb...).

   What would you like to do?
   [1] Exit — nothing to do  (default)
   [2] Rebuild anyway
   [3] Sync from a different lock file
   [4] Manage lock files (delete old ones)

If the environment has drifted:

⚠️  This will DESTROY and rebuild the listed python environments.
Proceed? (y/N):

The destructive rebuild warning is explicit — sync is not a partial patch, it fully reconstructs all listed interpreter environments to match the lock exactly.


Switching lock files (--pick)

If you have multiple environments or historical snapshots:

8pkg sync --pick

Presents a numbered list of every lock file Omnipkg knows about, grouped by environment:

  ── my_env ──
    1) <venv>/.omnipkg/omnipkg.lock
       python: 3.11  9 interpreter(s)  918 active packages  ◀ most recent

  ── ? ──
    2) sha256_bbbbbb...toml   9 interpreters  918 pkgs  2026-04-16
    3) sha256_aaaaaa...toml   9 interpreters  826 pkgs  2026-04-14

  ── used by: other_env ──
    4) sha256_cccccc...toml   3 interpreters  152 pkgs  2026-04-06

Select by number, or [m] to manage/delete old states.


How the SHA split works

Layer Location Contains Shareable?
Local lock <venv>/.omnipkg/omnipkg.lock Paths, env kind, distro, venv origin No
Canonical state ~/.config/omnipkg/locks/states/ Package hashes, ABI tags, arch, Python version Yes — zero PII

The canonical SHA is deterministic: same packages + same arch + same Python patch version always produces the same hash, regardless of machine or user. Two machines can confirm environment parity by comparing SHAs without exchanging any local path data.


CI/CD

CI flags and --yes / -y are not yet implemented — sync is currently interactive only. For unattended use, pipe input directly:

echo "y" | 8pkg sync

Non-interactive flag support is planned for a future release.


### 2. Intelligent Script Runner (`omnipkg run`) [![⚡ Auto-Healing: 12.94x Faster than UV](https://img.shields.io/badge/⚡_Auto--Healing-12.94x_Faster_than_UV-gold?logo=lightning&logoColor=white)](https://github.com/1minds3t/omnipkg/actions/workflows/old_rich_test.yml)
`omnipkg run` is an intelligent script and CLI executor that **automatically detects and fixes** dependency errors using bubble versions—without modifying your main environment.

## What is `omnipkg run`?
Think of it as a "smart wrapper" around Python scripts and CLI commands that:
1. **Tries to execute** your script or command
2. **Detects errors** (ImportError, ModuleNotFoundError, version conflicts)
3. **Finds the right version** from existing bubbles or creates new ones
4. **Re-runs successfully** in milliseconds—all automatically

**The magic:** Your broken main environment stays broken, but everything works anyway.

## Two Modes of Operation

### Mode 1: Script Execution (`omnipkg run script.py`)
Automatically heals Python scripts with dependency conflicts:

```bash
$ python broken_script.py
AssertionError: Incorrect rich version! Expected 13.4.2, got 13.7.1

$ omnipkg run broken_script.py
🔍 Runtime version assertion failed. Auto-healing...
   - Conflict identified for: rich==13.4.2
🛠️  Installing bubble for rich==13.4.2...
   ⚡ HEALED in 16,223.1 μs (16.2ms)
✅ Script completed successfully!

Performance vs UV:

UV Failed Run      : 210.007ms (fails, no recovery)
omnipkg Activation :  16.223ms (succeeds automatically)
🎯 omnipkg is 12.94x FASTER than UV!

Mode 2: CLI Command Execution (omnipkg run <command>)

Automatically heals broken command-line tools:

# Regular execution fails
$ http --version
ImportError: cannot import name 'SKIP_HEADER' from 'urllib3.util'

# omnipkg run heals and executes
$ omnipkg run http --version
⚠️  Command failed (exit code 1). Starting Auto-Healer...
🔍 Import error detected. Auto-healing with bubbles...
♻️  Loading: ['urllib3==2.6.3']
    HEALED in 12,371.6 μs (12.4ms)
3.2.4
✅ Success!

What happened: The main environment still has urllib3 1.25.11 (broken), but omnipkg run used urllib3 2.6.3 from a bubble to make the command work.

How It Works

Step 1: Detect the Error

omnipkg run recognizes multiple error patterns:

# Import errors
ModuleNotFoundError: No module named 'missing_package'
ImportError: cannot import name 'SKIP_HEADER'

# Version conflicts  
AssertionError: Incorrect rich version! Expected 13.4.2, got 13.7.1
requires numpy==1.26.4, but you have numpy==2.0.0

# C-extension failures
A module compiled using NumPy 1.x cannot run in NumPy 2.0

Step 2: Build a Healing Plan

Analyzes the error and identifies what's needed:

🔍 Comprehensive Healing Plan Compiled (Attempt 1): ['rich==13.4.2']

For CLI commands, it includes the owning package:

🔍 Analyzing error: ImportError from urllib3
♻️  Loading: ['urllib3==2.6.3']

Step 3: Find or Create Bubbles

Checks if the needed version exists:

# Bubble exists - instant activation
🚀 INSTANT HIT: Found existing bubble urllib3==2.6.3 in KB
    HEALED in 12.4ms

# Bubble doesn't exist - create it
🛠️  Installing bubble for rich==13.4.2...
   📊 Bubble: 4 packages, 0 conflicts
    HEALED in 16.2ms

Step 4: Execute with Bubbles

Re-runs the script/command with the correct versions activated:

🌀 omnipkg auto-heal: Wrapping with loaders for ['rich==13.4.2']...
🚀 Fast-activating rich==13.4.2 ...
   📊 Bubble: 4 packages, 0 conflicts
   🧹 Purging 4 module(s) from memory...
🔗 Linked 20 compatible dependencies to bubble
    Bubble activated

🚀 Running target script inside the bubble...
✅ Successfully imported rich version: 13.4.2

Step 5: Clean Restoration

After execution, environment is restored to original state:

🌀 omnipkg loader: Deactivating rich==13.4.2...
    Environment restored.
   ⏱️  Swap Time: 35,319.103 μs (35.3ms)

Real-World Examples

Example 1: Version Conflict Resolution

Scenario: Script needs rich==13.4.2 but main environment has rich==13.7.1

$ omnipkg run test_rich.py
🔍 Runtime version assertion failed. Auto-healing...
   - Conflict identified for: rich==13.4.2

🛠️  Installing bubble for rich==13.4.2...
   - 🧪 Running SMART import verification...
    markdown-it-py: OK
    rich: OK
    mdurl: OK
    Pygments: OK
   
    HEALED in 16.2ms
✅ Script completed successfully inside omnipkg bubble.

Main environment after execution:

$ python -c "import rich; print(rich.__version__)"
13.7.1  # Still the original version - untouched!

Example 2: Broken CLI Tool

Scenario: httpie broken by urllib3 downgrade to 1.25.11

# Shows the error first
$ http --version
Traceback (most recent call last):
  File "/usr/bin/http", line 13, in <module>
    from urllib3.util import SKIP_HEADER
ImportError: cannot import name 'SKIP_HEADER' from 'urllib3.util'

# Heals and executes
$ omnipkg run http --version
⚠️  Command 'http' failed. Starting Auto-Healer...
🔍 Analyzing error: ImportError from module
   - Installing missing package: urllib3

🔍 Resolving latest version for 'urllib3'...
   🚀 INSTANT HIT: Found existing bubble urllib3==2.6.3
   
🐍 [omnipkg loader] Running in Python 3.11 context
🚀 Fast-activating urllib3==2.6.3 ...
   📊 Bubble: 1 packages, 0 conflicts
   🧹 Purging 31 modules for 'urllib3'
    HEALED in 12.4ms

🚀 Re-launching '/usr/bin/http' in healed environment...
3.2.4
✅ Success!

Main environment after execution:

$ python -c "import urllib3; print(urllib3.__version__)"
1.25.11  # Still broken - but who cares? omnipkg run works!

Performance Benchmarks

Script Healing (Demo 7)

Operation Time Status
UV failed run 210.007ms ❌ Fails, no recovery
omnipkg detection <1ms ✅ Instant
omnipkg healing 16.223ms ✅ Creates bubble
omnipkg execution ~35ms ✅ Runs successfully
Total recovery ~51ms 12.94x faster than UV

CLI Healing (Demo 10)

Operation Traditional omnipkg run
Error detection Manual (minutes) Automatic (<1ms)
Finding fix Manual research Automatic KB lookup
Applying fix 30-90s (reinstall) 12.4ms (bubble activation)
Main env impact ⚠️ Modified ✅ Untouched
Success rate ~50% (manual) 100% (automated)

Key Features

1. Zero Main Environment Impact

Traditional approach:

$ pip install old-package==1.0.0
# Breaks 5 other packages
# Spend 30 minutes fixing

omnipkg run approach:

$ omnipkg run script-needing-old-version.py
# Works instantly
# Main environment untouched

2. Intelligent Error Detection

Recognizes and fixes:

  • ModuleNotFoundError → Installs missing package
  • ImportError → Fixes import conflicts
  • AssertionError (version checks) → Switches to correct version
  • NumPy C-extension errors → Downgrades to compatible version
  • CLI command failures → Heals dependencies automatically

3. Smart Dependency Resolution

🔍 Analyzing script for additional dependencies...
    No additional dependencies needed

# Or if dependencies are found:
🔗 [omnipkg loader] Linked 20 compatible dependencies to bubble

Automatically detects and includes all required dependencies, not just the primary package.

4. Bubble Reuse

Once a bubble is created, it's instantly available:

# First time - creates bubble
🛠️  Installing bubble for rich==13.4.2...
    HEALED in 16.2ms

# Second time - instant activation
🚀 INSTANT HIT: Found existing bubble rich==13.4.2
    HEALED in <1ms

Usage

Basic Script Execution

# Run a Python script with auto-healing
omnipkg run script.py

# Pass arguments to the script
omnipkg run script.py --arg1 value1 --arg2 value2

CLI Command Execution

# Run any CLI command with auto-healing
omnipkg run http GET https://api.github.com

# Run tools that depend on specific library versions
omnipkg run pytest
omnipkg run black mycode.py
omnipkg run mypy myproject/

With Verbose Output

# See detailed healing process
omnipkg run -v script.py

When to Use omnipkg run

✅ Perfect For:

  • Scripts with version conflicts: Need old numpy but have new numpy installed
  • Broken CLI tools: Tool worked yesterday, broken after an upgrade today
  • Testing different versions: Try multiple library versions without changing environment
  • CI/CD pipelines: Guaranteed success even with dependency conflicts
  • Legacy code: Run old code without downgrading your entire environment

⚠️ Not Needed For:

  • Fresh scripts with satisfied dependencies: Just use python script.py
  • Well-maintained environments: If everything works, no need to heal

Performance Comparison

Traditional Workflow (Broken Tool):
1. Tool fails ........................... 0s
2. Debug error (find root cause) ....... 300s (5 min)
3. Research fix ........................ 600s (10 min)
4. Apply fix (reinstall) ............... 60s (1 min)
5. Test fix ............................ 10s
6. Fix breaks other things ............. 1800s (30 min)
Total: 2770s (46 minutes) ❌

omnipkg run Workflow:
1. omnipkg run <command> ............... 0.012s (12ms)
Total: 0.012s (12 milliseconds) ✅

Speedup: 230,833x faster

Try It Yourself

# Install omnipkg
uv pip install omnipkg

# Run Demo 7: Script auto-healing
omnipkg demo
# Select option 7

# Run Demo 10: CLI auto-healing
omnipkg demo
# Select option 10

See for yourself how omnipkg run turns minutes of frustration into milliseconds of automated healing.


The Future: Package Manager Interception

This healing capability is the foundation for our vision of transparent package management:

# Coming soon: omnipkg intercepts all package managers
$ pip install broken-package==old-version
⚠️  This would break 3 packages in your environment
🛡️  omnipkg: Creating bubble instead to protect environment
✅ Installed to bubble - use 'omnipkg run' to access

# Everything just works
$ omnipkg run my-script-using-old-version.py
✅ Success (using bubbled version)

$ python my-script-using-new-version.py   Success (using main environment)

The endgame: Infinite package coexistence, zero conflicts, microsecond switching—all invisible to the user.




3. Dynamic Package Switching & Process Isolation

💥 Nuclear Test: Multi-Framework Battle Royale Daemon Status

omnipkg allows you to switch package versions mid-script and run conflicting dependencies simultaneously. It offers two distinct modes depending on the severity of the dependency conflict:

  1. In-Process Overlay: For "safe" packages (NumPy, SciPy, Pandas) — Zero latency.
  2. Daemon Worker Pool: For "heavy" frameworks (TensorFlow, PyTorch) — True isolation.

🛑 The Hard Truth: Why You Need Daemons

Traditional Python wisdom says you cannot switch frameworks like PyTorch or TensorFlow without restarting the interpreter. This is true. Their C++ backends (_C symbols) bind to memory and refuse to let go.

What happens if you try to force-switch PyTorch in-process?

# ❌ THIS CRASHES IN STANDARD PYTHON
import torch  # Loads version 2.0.1
# ... try to unload and reload 2.1.0 ...
import torch
# NameError: name '_C' is not defined

The C++ backend remains resident, causing symbol conflicts and segfaults.

🟢 The Solution: omnipkg Daemon Workers

Instead of fighting the C++ backend, omnipkg accepts it. We spawn persistent, lightweight worker processes for each framework version.

  • Workers persist across script runs: Cold start once, hot-swap forever.
  • Zero-Copy Communication: Data moves between workers via shared memory (no pickling overhead).
  • Sub-millisecond switching: Switching contexts takes ~0.37ms.

🚀 The Impossible Made Real: Benchmark Results

We ran omnipkg demo (Scenario 11: Chaos Theory) to prove capabilities that should be impossible.

1. Framework Battle Royale (Concurrent Execution)

The Challenge: Run TensorFlow, PyTorch, and NumPy (different versions) at the exact same time.

🥊 ROUND 1: Truly Concurrent Execution
   ⚡ NumPy Legacy    →  (0.71ms)
   ⚡ NumPy Modern    →  (0.71ms)
   ⚡ PyTorch         →  (0.80ms)
   ⚡ TensorFlow      →  (1.15ms)

📊 RESULT: 4 Frameworks executed in 1.69ms total wall-clock time.

2. The TensorFlow Resurrection Test

The Challenge: Kill and respawn a TensorFlow environment 5 times.

  • Standard Method (Cold Spawn): ~2885ms per reload.
  • omnipkg Daemon (Warm Worker): ~716ms first run, 3ms subsequent runs.
  • Result: 4.0x Speedup (and nearly instant after warm-up).

3. Rapid Circular Switching

The Challenge: Toggle between PyTorch 2.0.1 (CUDA 11.8) and 2.1.0 (CUDA 12.1) doing heavy tensor math.

ROUND  | WORKER          | VERSION         | TIME       
-------------------------------------------------------
 #1    | torch-2.0.1     | 2.0.1+cu118     | 0.63ms     
 #2    | torch-2.1.0     | 2.1.0+cu121     | 1570ms (Cold)
 #3    | torch-2.0.1     | 2.0.1+cu118     | 0.66ms (Hot)
 #4    | torch-2.1.0     | 2.1.0+cu121     | 0.44ms (Hot)
 ...
 #10   | torch-2.1.0     | 2.1.0+cu121     | 0.37ms (Hot)

💻 Usage

Mode A: In-Process Loader (NumPy, SciPy, Tools)

Best for nested dependencies and libraries that clean up after themselves.

from omnipkg.loader import omnipkgLoader

# Layer 1: NumPy 1.24
with omnipkgLoader("numpy==1.24.3"):
    import numpy as np
    print(f"Outer: {np.__version__}") # 1.24.3
    
    # Layer 2: SciPy 1.10 (Nested)
    with omnipkgLoader("scipy==1.10.1"):
        import scipy
        # Works perfectly, sharing the NumPy 1.24 context
        print(f"Inner: {scipy.__version__}")

Mode B: Daemon Client (TensorFlow, PyTorch)

Best for heavy ML frameworks and conflicting C++ backends.

from omnipkg.isolation.worker_daemon import DaemonClient

client = DaemonClient()

# Execute code in PyTorch 2.0.1
client.execute_smart("torch==2.0.1+cu118", """
import torch
print(f"Running on {torch.cuda.get_device_name(0)} with Torch {torch.__version__}")
""")

# Instantly switch to PyTorch 2.1.0 (Different process, shared memory)
client.execute_smart("torch==2.1.0", "import torch; print(torch.__version__)")

📊 Resource Efficiency

You might think running multiple worker processes consumes massive RAM. It doesn't. omnipkg uses highly optimized stripping to keep workers lean.

Live omnipkg daemon monitor Output:

⚙️  ACTIVE WORKERS:
  📦 torch==2.0.1+cu118  | RAM: 390.1MB
  📦 torch==2.1.0        | RAM: 415.1MB
  
🎯 EFFICIENCY COMPARISON:
  💾 omnipkg Memory:   402.6MB per worker
  🔥 vs DOCKER:        1.9x MORE EFFICIENT (saves ~700MB)
  ⚡ Startup Time:     ~5ms (vs 800ms+ for Docker/Conda)

🌀 Try The Chaos

Don't believe us? Run the torture tests yourself.

omnipkg demo
# Select option 11: 🌀 Chaos Theory Stress Test

Available Scenarios:

  • [14] Circular Dependency Hell: Package A imports B, B imports A across version bubbles.
  • [16] Nested Reality Hell: 7 layers of nested dependency contexts.
  • [19] Zero Copy HFT: High-frequency data transfer between isolated processes.
  • [23] Grand Unified Benchmark: Run everything at once.

4. 🌍 Global Intelligence & AI-Driven Localization 🤖 AI-Powered: 24 Languages

omnipkg eliminates language barriers with advanced AI localization supporting 24+ languages, making package management accessible to developers worldwide in their native language.

Key Features: Auto-detection from system locale, competitive AI translation models, context-aware technical term handling, and continuous self-improvement from user feedback.

# Set language permanently
omnipkg config set language zh_CN
# ✅ Language permanently set to: 中文 (简体)

# Temporary language override
omnipkg --lang es install requests

# View current configuration
cat ~/.config/omnipkg/config.json

Zero setup required—works in your language from first run with graceful fallbacks and clear beta transparency.


5. Downgrade Protection & Conflict Resolution 🔧 Simple UV Multi-Version Test

omnipkg automatically reorders installations and isolates conflicts, preventing environment-breaking downgrades.

Example: Conflicting torch versions:

omnipkg install torch==2.0.0 torch==2.7.1

What happens? omnipkg reorders installs to trigger the bubble creation, installs torch==2.7.1 in the main environment, and isolates torch==2.0.0 in a lightweight "bubble," sharing compatible dependencies to save space. No virtual environments or containers needed.

🔄 Reordered: torch==2.7.1, torch==2.0.0
📦 Installing torch==2.7.1...  Done
🛡️ Downgrade detected for torch==2.0.0
🫧 Creating bubble for torch==2.0.0...  Done
🔄 Restoring torch==2.7.1...  Environment secure

6. Deep Package Intelligence with Import Validation 🔍 Package Discovery Demo

omnipkg goes beyond simple version tracking, building a deep knowledge base (in Redis or SQLite) for every package. In v1.5.0, this now includes live import validation during bubble creation.

  • The Problem: A package can be "installed" but still be broken due to missing C-extensions or incorrect sys.path entries.
  • The Solution: When creating a bubble, omnipkg now runs an isolated import test for every single dependency. It detects failures (e.g., absl-py: No module named 'absl_py') and even attempts to automatically repair them, ensuring bubbles are not just created, but are guaranteed to be functional.

Example Insight:

omnipkg info uv
📋 KEY DATA for 'uv':
🎯 Active Version: 0.8.11
🫧 Bubbled Versions: 0.8.10

---[ Health & Security ]---
🔒 Security Issues : 0  
🛡️ Audit Status  : checked_in_bulk
✅ Importable      : True
Intelligence Includes Redis/SQLite Superpowers
• Binary Analysis (ELF validation, file sizes) • 0.2ms metadata lookups
• CLI Command Mapping (all subcommands/flags) • Compressed storage for large data
• Security Audits (vulnerability scans) • Atomic transaction safety
• Dependency Graphs (conflict detection) • Intelligent caching of expensive operations
• Import Validation (runtime testing) • Enables future C-extension symlinking

7. Instant Environment Recovery

🛡️ UV Revert Test

If an external tool (like pip or uv) causes damage, omnipkg revert restores your environment to a "last known good" state in seconds.

Key CI Output Excerpt:

Initial uv version (omnipkg-installed):uv 0.8.11
$ uv pip install uv==0.7.13
 - uv==0.8.11
 + uv==0.7.13
uv self-downgraded successfully.
Current uv version (after uv's operation): uv 0.7.13

⚖️  Comparing current environment to the last known good snapshot...
📝 The following actions will be taken to restore the environment:
  - Fix Version: uv==0.8.11
🚀 Starting revert operation...
✅ Environment successfully reverted to the last known good state.

--- Verifying UV version after omnipkg revert ---
uv 0.8.11

UV is saved, along with any deps!


🛠️ Get Started in 30 Seconds

No Prerequisites Required!

omnipkg works out of the box with automatic SQLite fallback when Redis isn't available. Redis is optional for enhanced performance.

⚡ Native C-dispatcher

Typing 8pkg no longer spawns a Python process. A compiled C binary handles routing in under 1ms, compiling itself automatically on first run (MSVC on Windows, gcc/clang on Linux/macOS). For edge cases it can't handle natively, it hands off to the Python dispatcher transparently.

Force Python dispatch if you need to debug:

OMNIPKG_FORCE_PYTHON_DISPATCH=1 8pkg install numpy

Ready to end dependency hell?

uv pip install omnipkg && omnipkg demo

See the magic in under 30 seconds.


🌐 Verified Platform Support

Platforms Verified

omnipkg is a pure Python package (noarch) with no C-extensions, ensuring universal compatibility across all platforms and architectures.

📊 Platform Matrix

Linux (Native)

Platform Architecture Status Installation Notes
Linux x86_64 x86_64 Native installation

macOS (Native)

Platform Architecture Status Installation Notes
macOS Intel x86_64 (Intel) Native installation
macOS ARM64 ARM64 (Apple Silicon) Native installation

Windows (Native)

Platform Architecture Status Installation Notes
Windows Server x86_64 Latest Server

Debian/Ubuntu

Platform Architecture Status Installation Notes
Debian 12 (Bookworm) x86_64 --break-system-packages required
Debian 11 (Bullseye) x86_64 Standard install
Ubuntu 24.04 (Noble) x86_64 --break-system-packages required
Ubuntu 22.04 (Jammy) x86_64 Standard install
Ubuntu 20.04 (Focal) x86_64 Standard install

RHEL/Fedora

Platform Architecture Status Installation Notes
Fedora 39 x86_64 Standard install
Fedora 38 x86_64 Standard install
Rocky Linux 9 x86_64 Standard install
Rocky Linux 8 x86_64 Requires Python 3.9+ (default is 3.6)
AlmaLinux 9 x86_64 Standard install

Other Linux

Platform Architecture Status Installation Notes
Arch Linux x86_64 --break-system-packages required
Alpine Linux x86_64 Requires build deps (gcc, musl-dev)

📝 Special Installation Notes

Ubuntu 24.04+ / Debian 12+ (PEP 668)

Modern Debian/Ubuntu enforce PEP 668 to protect system packages:

# Use --break-system-packages flag
python3 -m pip install --break-system-packages omnipkg

# Or use a virtual environment (recommended for development)
python3 -m venv .venv
source .venv/bin/activate
pip install omnipkg

Rocky/Alma Linux 8 (Python 3.6 → 3.9)

EL8 ships with Python 3.6, which is too old for modern pyproject.toml:

# Install Python 3.9 first
sudo dnf install -y python39 python39-pip

# Make python3 point to 3.9
sudo ln -sf /usr/bin/python3.9 /usr/bin/python3
sudo ln -sf /usr/bin/pip3.9 /usr/bin/pip3

# Now install omnipkg
python3 -m pip install omnipkg

Alpine Linux (Build Dependencies)

Alpine requires build tools for dependencies like psutil:

# Install build tools first
apk add --no-cache gcc python3-dev musl-dev linux-headers

# Then install omnipkg
python3 -m pip install --break-system-packages omnipkg

Arch Linux

# Arch uses --break-system-packages for global installs
python -m pip install --break-system-packages omnipkg

# Or use pacman if available in AUR (future)
yay -S python-omnipkg

🐍 Python Version Support

Supported: Python 3.7 - 3.15 (including beta/rc releases)

Architecture: noarch (pure Python, no compiled extensions)

This means omnipkg runs on any architecture where Python is available:

  • x86_64 (Intel/AMD) - verified in CI
  • ARM32 (armv6/v7) - verified on piwheels
  • ARM64 (aarch64) - Python native support
  • RISC-V, POWER, s390x - anywhere Python runs!

✅ ARM64 Support Verified (QEMU)

ARM64 Verified

omnipkg is fully verified on ARM64. This was achieved without needing expensive native hardware by using a powerful QEMU emulation setup on a self-hosted x86_64 runner. This process proves that the package installs and functions correctly on the following ARM64 Linux distributions:

Platform Architecture Status Notes
Debian 12 (Bookworm) ARM64 (aarch64) QEMU Emulation
Ubuntu 24.04 (Noble) ARM64 (aarch64) QEMU Emulation
Ubuntu 22.04 (Jammy) ARM64 (aarch64) QEMU Emulation
Fedora 39 ARM64 (aarch64) QEMU Emulation
Rocky Linux 9 ARM64 (aarch64) QEMU Emulation
Alpine Linux ARM64 (aarch64) QEMU Emulation

This verification acts as a critical pre-release gate, ensuring that any version published to PyPI is confirmed to work for ARM64 users before it's released.

Current build status

Azure
VariantStatus
linux_64_python3.10.____cpython variant
linux_64_python3.11.____cpython variant
linux_64_python3.12.____cpython variant
linux_64_python3.13.____cp313 variant
linux_aarch64_python3.10.____cpython variant
linux_aarch64_python3.11.____cpython variant
linux_aarch64_python3.12.____cpython variant
linux_aarch64_python3.13.____cp313 variant
linux_ppc64le_python3.10.____cpython variant
linux_ppc64le_python3.11.____cpython variant
linux_ppc64le_python3.12.____cpython variant
linux_ppc64le_python3.13.____cp313 variant
osx_64_python3.10.____cpython variant
osx_64_python3.11.____cpython variant
osx_64_python3.12.____cpython variant
osx_64_python3.13.____cp313 variant
osx_arm64_python3.10.____cpython variant
osx_arm64_python3.11.____cpython variant
osx_arm64_python3.12.____cpython variant
osx_arm64_python3.13.____cp313 variant
win_64_python3.10.____cpython variant
win_64_python3.11.____cpython variant
win_64_python3.12.____cpython variant
win_64_python3.13.____cp313 variant

Installation Options

Available via UV, pip, conda-forge, Docker, brew, Github, and piwheels. Support for Linux, Windows, Mac, and Raspberry Pi.

⚡ UV (Recommended)

uv Install
uv pip install omnipkg

📦 PyPI

PyPI
pip install omnipkg

📦 Pixi (Recommended for Modern Workflows)

Pixi Install
# Add to your project
pixi add omnipkg

# Run globally without installation
pixi global install omnipkg

🏠 Conda & prefix.dev

Platforms / Noarch Conda-forge Minds3t Conda Channel

Official conda-forge (Recommended):

# Using prefix.dev (Ultra-fast resolver)
conda install -c https://prefix.dev/conda-forge omnipkg

# Standard conda-forge
conda install -c conda-forge omnipkg

# Using mamba
mamba install -c conda-forge omnipkg

Personal minds3t channel (Latest features first):

# Using conda
conda install -c minds3t omnipkg

# Using mamba
mamba install -c minds3t omnipkg

🐋 Docker (Multi-Registry)

Docker Pulls Docker Hub Version GitHub Container Registry

Docker Hub (Development + Releases):

# Latest release
docker pull 1minds3t/omnipkg:latest

# Specific version
docker pull 1minds3t/omnipkg:2.0.3

# Development branch
docker pull 1minds3t/omnipkg:main

GitHub Container Registry (Releases Only):

# Latest release
docker pull ghcr.io/1minds3t/omnipkg:latest

# Specific version
docker pull ghcr.io/1minds3t/omnipkg:2.0.3

Multi-Architecture Support:

  • linux/amd64 (x86_64)
  • linux/arm64 (aarch64)

🍺 Homebrew

# Add the tap first
brew tap 1minds3t/omnipkg

# Install omnipkg
brew install omnipkg

🥧 piwheels (for Raspberry Pi)

🥧 ARM32 Support (Raspberry Pi)

piwheels Latest Version: 3.2.1 | Python: 3.9 (Bullseye), 3.11 (Bookworm), 3.13 (Trixie) | View on piwheels

pip3 install omnipkg==3.2.1

Verified Platforms:

piwheels Install

For users on Raspberry Pi, use the optimized wheels from piwheels for faster installation:

pip install --index-url=https://www.piwheels.org/simple/ omnipkg

🌱 GitHub

# Clone the repo
git clone https://github.com/1minds3t/omnipkg.git
cd omnipkg

# Install in editable mode (optional for dev)
pip install -e .

Instant Demo

omnipkg demo

Choose from:

  1. Rich test (Python module switching)
  2. UV test (binary switching)
  3. NumPy + SciPy stress test (C-extension switching)
  4. TensorFlow test (complex dependency switching)
  5. 🚀 Multiverse Healing Test (Cross-Python Hot-Swapping Mid-Script)
  6. Flask test (under construction)
  7. Auto-healing Test (omnipkg run)
  8. 🌠 Quantum Multiverse Warp (Concurrent Python Installations)

Experience Python Hot-Swapping

# Let omnipkg manage your native Python automatically
omnipkg status
# 🎯 Your native Python is now managed!

# See available interpreters
omnipkg info python

# Install a new Python version if needed (requires Python >= 3.10)
omnipkg python adopt 3.10

# Hot-swap your entire shell context
omnipkg swap python 3.10
python --version  # Now Python 3.10.x

Optional: Enhanced Performance with Redis

For maximum performance, install Redis:

Linux (Ubuntu/Debian):

sudo apt-get update && sudo apt-get install redis-server
sudo systemctl enable redis && sudo systemctl start redis

macOS (Homebrew):

brew install redis && brew services start redis

Windows: Use WSL2 or Docker:

docker run -d -p 6379:6379 --name redis-omnipkg redis

Verify Redis: redis-cli ping (should return PONG)


🌟 Coming Soon

🚀 What We've Already Delivered (The Impossible Made Real)

Concurrent 3x Python & Package Versions in Single Environment

Already working in production: Our "Quantum Multiverse Warp" demo proves you can run Python 3.9, 3.10, and 3.11 concurrently in the same script, same environment, in under 6.22 seconds.

Flawless CI/CD Python Interpreter Hot-Swapping

Already working in CI: Mid-script interpreter switching now works reliably in automated environments with atomic safety guarantees.

Bubble Import Validation and Auto-Healing

Ensures your bubbles are 100% working and auto heals if they don't.

🌟 Coming Soon

  • Time Machine Technology for Legacy Packages: Install ancient packages with historically accurate build tools and dependencies that are 100% proven to work in any environment.

🚀 C++/Rust Core for Extreme Performance

  • 10-100x speedup on I/O operations and concurrent processing
  • Memory-safe concurrency for atomic operations at scale
  • Zero-copy architecture for massive dependency graphs

Intelligent Cross-Language Dependency Resolution

  • Auto-detect language boundaries and manage cross-stack dependencies
  • Unified dependency graph across Python, Node.js, Rust, and system packages
  • Smart conflict resolution between language-specific package managers

🔒 Global Atomic Operations

  • Cross-process locking for truly safe concurrent installations
  • Distributed transaction support for multi-machine environments
  • Crash-proof operation sequencing with guaranteed rollback capabilities

🔌 Universal Package Manager Integration

  • Transparent uv/conda/pip interoperability with smart fallbacks
  • Unified CLI interface across all supported package managers
  • Intelligent backend selection based on performance characteristics

📚 Documentation

Learn more about omnipkg's capabilities:


📄 Licensing

omnipkg uses a dual-license model designed for maximum adoption and sustainable growth:

Commercial inquiries: omnipkg@proton.me


🤝 Contributing

This project thrives on community collaboration. Contributions, bug reports, and feature requests are incredibly welcome. Join us in revolutionizing Python dependency management.

Translation Help: Found translation bugs or missing languages? Submit pull requests with corrections or new translations—we welcome community contributions to make omnipkg accessible worldwide.

→ Start Contributing

Dev Humor

 ________________________________________________________________
/                                                                \
| pip:    "Version conflicts? New env please!"                   |
| Docker: "Spin up containers for 45s each!"                     |
| venv:   "90s of setup for one Python version!"                 |
|                                                                |
| omnipkg: *runs 3 Python versions concurrently in 580ms,        |
|           caches installs in 50ms*                             |
|                                                                |
|          "Hold my multiverse—I just ran your entire            |
|           CI matrix faster than you blinked."                  |
\________________________________________________________________/
        \   ^__^
         \  (🐍)\_______
            (__)\       )\/\
                ||----w |
                ||     ||

                ~ omnipkg: The Multiverse Package Manager ~

Project details


Release history Release notifications | RSS feed

This version

3.3.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

omnipkg-3.3.1.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

omnipkg-3.3.1-py3-none-any.whl (1.6 MB view details)

Uploaded Python 3

omnipkg-3.3.1-cp313-cp313-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows ARM64

omnipkg-3.3.1-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

omnipkg-3.3.1-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

omnipkg-3.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

omnipkg-3.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

omnipkg-3.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

omnipkg-3.3.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

omnipkg-3.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

omnipkg-3.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

omnipkg-3.3.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

omnipkg-3.3.1-cp313-cp313-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

omnipkg-3.3.1-cp312-cp312-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows ARM64

omnipkg-3.3.1-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

omnipkg-3.3.1-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

omnipkg-3.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

omnipkg-3.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

omnipkg-3.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

omnipkg-3.3.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

omnipkg-3.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

omnipkg-3.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

omnipkg-3.3.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

omnipkg-3.3.1-cp312-cp312-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

omnipkg-3.3.1-cp311-cp311-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows ARM64

omnipkg-3.3.1-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

omnipkg-3.3.1-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

omnipkg-3.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

omnipkg-3.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

omnipkg-3.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

omnipkg-3.3.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

omnipkg-3.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

omnipkg-3.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

omnipkg-3.3.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

omnipkg-3.3.1-cp311-cp311-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

omnipkg-3.3.1-cp310-cp310-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows ARM64

omnipkg-3.3.1-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

omnipkg-3.3.1-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

omnipkg-3.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

omnipkg-3.3.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

omnipkg-3.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

omnipkg-3.3.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

omnipkg-3.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

omnipkg-3.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

omnipkg-3.3.1-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

omnipkg-3.3.1-cp310-cp310-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

omnipkg-3.3.1-cp39-cp39-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows ARM64

omnipkg-3.3.1-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

omnipkg-3.3.1-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86

omnipkg-3.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

omnipkg-3.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

omnipkg-3.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

omnipkg-3.3.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

omnipkg-3.3.1-cp39-cp39-macosx_11_0_universal2.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ universal2 (ARM64, x86-64)

omnipkg-3.3.1-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

omnipkg-3.3.1-cp39-cp39-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

omnipkg-3.3.1-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

omnipkg-3.3.1-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86

omnipkg-3.3.1-cp38-cp38-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

omnipkg-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file omnipkg-3.3.1.tar.gz.

File metadata

  • Download URL: omnipkg-3.3.1.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1.tar.gz
Algorithm Hash digest
SHA256 74ad69bcfa403b512bd184a0a22815c691e01c12cb36ca0dcc4c93d168cfae45
MD5 9a190fc8261215b96981c4207e8eefad
BLAKE2b-256 14f285b0c8095760025e62225aa19edeb622afebc9ead37b55f172ee57917668

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1.tar.gz:

Publisher: publish.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-py3-none-any.whl.

File metadata

  • Download URL: omnipkg-3.3.1-py3-none-any.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9a3f563b87cd9a5a0d25bc683b3fb88b7dfa54cbd959587e8d7d4c68b1ddc397
MD5 791e3393f08ce7f4d64b69094b3532e8
BLAKE2b-256 7359ef7696ae323de5f87cf215702366343612dba9c4dae07b8ffbe6c65d93cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-py3-none-any.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fa9706f62790f40acdb709db0dea565efd3b4af2ab3238c1ffcc85391c75c003
MD5 3877763cb96db1e93bb6011ef34bc790
BLAKE2b-256 b08bdeee18a0df4fcb164f34e0de8e52dce17647939dbce164591d6bc722e953

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-win_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c170a8f330b4301a0ba8c779269c8554835a9fcfac4a26f9886a281f1f6ddb30
MD5 c50ec5b56fb00b9460e575dc05467535
BLAKE2b-256 cc206834d6019da65a4a7f97363eb32b4d89293c6eaf223b6930d1abb1e3cd7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-win_amd64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 73b30046e5ebfb7725869c01f89aea901e0f7d5eb46c1e1e673985f589cd2067
MD5 5292df03d46a9eaf8133553e451bbc69
BLAKE2b-256 087fd77039827702ecb8c23f6ff5bcf3cbc281c223a87de679047107c23d979c

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-win32.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 404728ac4103a6ad5b2231aa0e82ed2b062bf02cb75efee3afbb6936c5ecb36a
MD5 d2f9c857c0728403b8f5de831ac3aeb8
BLAKE2b-256 faf6d838b6579aa95e9d485218f1f9239fd090b4c21a139de7cde65330d719a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 564b02a6c09ad22c8de2cd5027065cfa20377cadeb8aa079259e84a48099ccb0
MD5 49ae3e82b0549cc0af3b3ad56f473d5c
BLAKE2b-256 7a3e300a2bb79944cf1aa65d1dc1604eec15079748bfa3dc2f99dc1fe8a77fe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9983c2f8cf3977d7c4bca137595c6f291f157b5eae34f50094155b80643aec83
MD5 5d53f0c5d1128b56583b8c4f703d3514
BLAKE2b-256 fa909e49535f2254e80903c610f42e4b1c52571a29f2e66f4acb84b2e043b99d

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6ae7848100bac7407de2a16b827c84342c14e887bbeaceeee88281770b5fe67a
MD5 85449c0db42328456864896312f4639d
BLAKE2b-256 34b0cccb4daad7c0801b2953d9baab2f58262ea64d8f0e80c0f804c582baa7bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1b2e5b3bfe64e79a3bc02be3c54cffad70f5aa0839e4c1b7d581215b8b0f081
MD5 c4a8273705dba0f7524512bc29336f13
BLAKE2b-256 996bc10368c2216ad74b83da5fb175b3352b897015a79d564f514524bd5e8934

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4208d6b4331d5c3ae457a29a0e0f74d879861d7185cd3d00c8feb04a700b6f95
MD5 807d099525778a22b7c2724a5e42f86f
BLAKE2b-256 68cdf32f96d98932d2dd0b18bd6884b3e3242a80ec47d2452763d10bc2df629b

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d61b86eeba53890732526c7498cba9b116d2779572e51d536d40b8d6de03f79
MD5 85546a11a7413cb57fcb71fe6dfb0286
BLAKE2b-256 f8930e50fcd08b0af1dfe376710a074ed3ff8684596ddb160fa7d426a7a97506

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 793a93eae5ad96c9df83e1341b81682e901b6639943eaa68f49011a1752eb7a4
MD5 b5aa29ea08b941b65a26861e6c181fcd
BLAKE2b-256 4bad48979a99922f5be4b677a2ffd2dab8528da3e3785d17b2205ad242405a92

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 534471292fa47da254f2649a17ccef4b8229cbb2ab5106130b7e69046d214feb
MD5 a263839435d2acef4a7ec676118bda29
BLAKE2b-256 8dc82dfb275e86cd3c956425767c8b00f74a8a6ba5b4ba395a7a17f8434d6140

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-win_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d5b8e33cb6d6bbd320e26025a220b4a34d6ecccca2e8e86dfe5256548354f7c8
MD5 f31cd3273226cf7c34d1bfedfa2f424b
BLAKE2b-256 25fb6ac0c11432e76ee7b3d65d92ff08f1f939bfe7b050a3c4b23a60dcfc9c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-win_amd64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b13262219992c87b82888b2ae41c03333f74aefb8b56f26eb965a63bcd2b57a5
MD5 1fb910ead0a7186fcc52d999c3f97994
BLAKE2b-256 2ee8e49b671d0a9ad8505faaeb6ce376c6289a1bc6bb351ed97e5e78345dabb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-win32.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0bef6dc6095ce4516bda2b9b1378673446e961497d72e8cef14b876aa42601c
MD5 3c93c81384f9e1860be692b9b86b1d1c
BLAKE2b-256 763c9a3f7f91a25ede4f22cc7e9543d4e585ba5df282bf6949d71450d879a74e

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d36b5494eca6958f1e2ddece77cf2c8553907887585cd9bab10036c941f79f2c
MD5 7dbbb33d421da0f1c0bc6c041d929dab
BLAKE2b-256 cf8a194e7bf7542cf382ef63cebea5161e4d4e920499231bb38033b19f2bd062

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75ef81bae529665772df9018e0a2fb41a8e8496e49fc286c385b14ba0814b34b
MD5 77feeb122681e6d14ef940efc1d78320
BLAKE2b-256 51007b5d812bbd0bfbf2eedfbe1fa9cc8b845e724e99c7cba7b8e40b4c5d0c04

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dd2cc9f3cd4893ba62809907583f4d22a0619dd9eb0890fd64980d037c9096df
MD5 802058bca58ab5f611d25e543206371a
BLAKE2b-256 f384171f167d5a3f77b74753879ab52a83ca36846d29fb3b79605ad9324bbcea

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c9cd1a9a71cb8fcbdaa0beaf9275e39fa83c8f9a319ce3a2bba82489b784ab0
MD5 481be288ddea2e8c4109718f6536f792
BLAKE2b-256 4064a7bfa47250e66bc652c645ab3bd5200f0b1004e65c9183d8aba63c4e1261

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c2fcc9a6b560e7a128114f174aad6e890e08a26812fd66733ba8544a0a69c722
MD5 3798906244f7c4801368cb4796eef345
BLAKE2b-256 9c76a9028161507a910f392c5d2f08fed4c88bfdbc46f92f35a4c5b6a07e0250

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00e4d2106cfd1963308e2be6f811d4b41485973d2500c0fc28499d070437b297
MD5 aaf4c8790a3c7add622a9097931590c0
BLAKE2b-256 fa03459530b03e9c7ceb1bc7ecaaa1b28337ad6a0a4034aff0864174dba425bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f4bf71eba5e504cd4a6ec907aacc9c215f9ba8998e628f1cb07da01a43e209c3
MD5 4469b429d9d79348a05c04d9509a7728
BLAKE2b-256 8745b145b619933a1e7fbddd613de8e7923b0a709660bd2784a5f694f96eff1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 af64de250024ca8df0299846b1185f9bdf440718826ac42176ee4c57e9012644
MD5 32467267b985b9d74f4a6a44fcb2142b
BLAKE2b-256 36e51c13dfc0143c6515110950ab570fc556adb55e56ceb18253c1b754fe18f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-win_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a51e43f41da84dc736698f9aa4ef4f337abae5b9403f65976ff9734173ec7a9
MD5 8f5ad3c0c290b239ccd4b585a0c2f53c
BLAKE2b-256 04d4407f1c41c3b335d71bbfcd0ee5256649f029370bf7a7378e023a8d19204a

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-win_amd64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 90ae96c38c46fca6afe90939bfca9d9c6359f2d095c4b8fcef41a41aa827d3e5
MD5 b2642320f653c67bce34c75e93168d68
BLAKE2b-256 2336999ee5b02fad05634ce6f26556dedb58183d288b3d60f63b65600b63f467

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-win32.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ad7b4a91cd2112f97d8430a78a5dcb51bab9101da6a13fb885f3cc9531d4564
MD5 6f60f37225ab320d016a141a93cfc2ed
BLAKE2b-256 306bc870179489ed5e26c8e5c3881699e819e1c9a5e3dbc871213b904fff5c77

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1d48478e09c8aa759dbbe7f67e621b46165e0210226711a2b8d84889b4bb169
MD5 e372e74f1bcf03f06204f2e52fe329b7
BLAKE2b-256 53b4bfe21b78fd3414d636ee05ff8fc62af2d6bcffe9683802b44e9ce75e5a58

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40c1ae4283248621c83d43e9ce1135e40ed8145a3e2b87875b50e150266c4ff9
MD5 a23dcc33370615331799839bf5825de0
BLAKE2b-256 ad57716ed9cd141ce295816df403e4de49fa8df3e364aad0b2e30e9790ee4afe

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6d5aab9a5da64418ae501df67618a355d6eba81afb67c4368f8272c456a06631
MD5 b407a69a6847f33aec27050c898f4461
BLAKE2b-256 86f0a48d9b4996b032ede44b57253d5c2ad481f41b481ac6bc99561f2dce3348

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78a6815fba55e03806c6ba0bde9c616e9f9c2973418ff73feadfb2ec1ffffb5b
MD5 621f4cdb94fed73a088caad29d9d07bc
BLAKE2b-256 b1c1657f7e88e3380e82582d913a1472e7bfe7943ed4accf9e0306a968d7e496

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9146c22de6b8fb437512c036286978d067b2f83c8c5d9e43a5bdbdd90c174e6d
MD5 5a5ad86abf15a754cf1ed10d8eac9384
BLAKE2b-256 044777be0ff27b656f758eb915f4b1f2b5a9d8de477d57c1eaa56eae99e94927

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce35dfe6ce61aac962f1d699ad86fbc3fdd13809876b3d8436151b81756a6875
MD5 242dc10b7a03b6483dbf05b75eb3a7c4
BLAKE2b-256 d2ca29d88ba14d9235e496e12fe71561f9ed315ff9c641c10d2a63c158abcd1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21a7dcffe808b37009b019dca283e111acb27555cfab263ca0047f79b792b804
MD5 7fcc5875868e2f3a9cb6c21c606c45d5
BLAKE2b-256 44e0bce8aba31df9c87ea723f1296dfb24ddeee28f7a7663bf1315ecf494c61c

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ede44dc01f1116034514a52ad22e41339a198806bd8a2a16aab26cb233d53045
MD5 90a385cf9d04aedf5b3aa4c9c3c35a00
BLAKE2b-256 1410fdd3e7d8d7b79688403ed41b3a372e52808228430812b2ee4c24675abd2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-win_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa423f8ae9e8a68ad967ecab43413d240fa2ed4ea5e8f4f497eaf9ddde36dbc4
MD5 4509827365a41cdc3a03cb4b39cfd6a1
BLAKE2b-256 fa172260b0f8f8861a504a95f470f0fdeab01076227b74f9449bc2a62c9b3b4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-win_amd64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0e2c2dcb2fa4f03ee134270f43d397eaa1cb78c7b2cc1471c243a5c5c2c9bb78
MD5 e5f930ecc8a12a22580f0a7b8591b034
BLAKE2b-256 029c73d38adfb528591becc7fd2daa66c2da4301730afce3f00b552cca6cf738

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-win32.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 471b760b56abaf03471593156165e14ab6a2f8d7a9278c2a62f390697725355e
MD5 6e84660e086b996c3a2bce8940ac1efc
BLAKE2b-256 87f4e669c5b17bc57831fc00527df5b3d13f6b57ec9424b76500b0ad20a35a87

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b07435817c728ba9ab9e5aaf534bfd706fa980d8c126c661c26e9b78f87aff60
MD5 3b524adb8a9ba722ee4bb447ef9e6be3
BLAKE2b-256 91c2fb80f98f6c7916559589845d8e3510de10e45786ba12c50411a2a30f7195

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e84c91a21aa7c697ced8969f8d62f255a4d2d45e91c10fd2276f001898441a43
MD5 dcb288c3efc5e9d89d34a5b4f0bf317f
BLAKE2b-256 40f7021fbd3fc4b8ad2d56e2784d02df7e034f0bf4984c60465c3d32900b8d63

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ebe830a91d83ae9f164503c4e9223bddc49c806f2792c4fa8f5286707872b335
MD5 34212f70a2b56b40ee46be37a069ae52
BLAKE2b-256 22be827b357f11c8218f915eb267ad076669a7605a3c3d63d5fc71b5f645e8f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37aa0dd68f2902cc2819f1bcf8e4f2b1bc2abe325cf1d98f9c0a6f7a350191f9
MD5 ecb71438f1d17e9699250de9f8fce8a2
BLAKE2b-256 0e4324eac9316dc7936a752da362bef564a7f2f5046ccef90d2c1e6a053aee6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0ff4007f9f09044f047862043ed071522a43aa34b0da45bd1b540585b0d7f399
MD5 0254f911149cff8e9a91d630d720d612
BLAKE2b-256 6e634cc0bf7479e96dbc91a5e1c8a78c2293acd18879f638afb3c7705f48def6

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fad292dae7a59829c43296d0bcd413dbe6c91500d20deb3dbcc326cfd2a8f44
MD5 c5faeb085ba04b6b639456f5474a569e
BLAKE2b-256 4bdf9424c098a2a8277eb0206c44825f392e2147bc00d0b4376a45c028bddcde

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43e1bd03d6dc9c8895e957cf7bfb16329d44ec85110ee452246971195e9280b3
MD5 16c06876b5e14a72bf8057a418bff0e2
BLAKE2b-256 c91f47b10af4a6dfbe6d798bb35270a5037058fa8daae1af2c713ef38e05d1c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 75e083bf595f54f88e62b89cd95854ca110e9bdf0c393f5871c932b8bf57ddf5
MD5 34f1b24e11693caf8cc581c4ed2488d1
BLAKE2b-256 3332f77390e107ad8b5631e6991263cd1ff824f41d5a0735789459b38f8da1e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-win_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 442e1fc6c633ef63b2ee85936481c9bbd60a8fa84d99f1f761959e48079a266e
MD5 266f3b5ee69129b34c174a6089d07b9a
BLAKE2b-256 0b4b996687895d77873b4798e54c5d57020cd126cdc362fb026b25f1e4f4a1b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-win_amd64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6faf1fbe9a83f1ed1d1027c8c58ff1471d6c93c8cb635045667fa1ccba2a0a5a
MD5 0d3884071da34cf415ba306840aca2f7
BLAKE2b-256 19c687969022aa0acc296a53b1e39b72102ba7de3bc0abcb16e893d6b70552fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-win32.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ace690ed09f359b1b6e2ec1115fd61bc8fd1b04a169a7bbb222dc1d2e693a130
MD5 05d32e7e2289f2a0a3f7a091a73ca61c
BLAKE2b-256 6499ba2d20895f078d501a867d8a7e5728ef6209087af0c97725bf1572501c41

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e878408974e41976b4a4092cf9eb4c6f36e358534e4539a59b664b12d1a27984
MD5 d11805656484372f3c23b31ae29e8254
BLAKE2b-256 cd3ad1ebd0967e47788ad77358308cf19893ff1d12cfbf457bbf078acdaea2af

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2d38a1e77e2f7440a01f308c10db18ca8015d81616fb0e3bf34ff6bde1246ab
MD5 de931c3681ce7573e477caabf41626da
BLAKE2b-256 fd31460ec45b4c50e1f8f4d8fb3a0d32893f83c285e606c4f4c2d408ca365447

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4543b1b8bbfc944c3db14a39e0e43ac1d89b9aa8ee0166e548ab4378df7a588d
MD5 45e886773998db15323375176e7d7ebc
BLAKE2b-256 e3458f4852ae72299e1a24e4799f2cd0d8d50f29d8e2bac2c89ae3b1f3ba435f

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 8d63e5014c2bb282decc12b0ce09fb5d01ab7a2946d7ca0e06034fa4b2b56e29
MD5 19d4d29afe50b9924bcbc9843b807f0a
BLAKE2b-256 ce4a9c937c6485b743746178935a176569456e18f62bc9373e7aa633886871ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-macosx_11_0_universal2.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a1a13365dc215f3ee2746b8c2c83a8a7f7d29f67c8350a252421b8bc89aefcb
MD5 ce5c176edd1629f374e5b2d3f5900155
BLAKE2b-256 f712febfc41ebffa050f2f905ce205b66b116ba56e6706ded7cf35e08c111e36

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04edb26b7c422f350e089cd4952581c3d97114e5b881c5a8803126a5c43b332d
MD5 fc225dcc0035b339eaab03634f4fcfe0
BLAKE2b-256 c84148daaa01ef770149e269f8e38082c68dee66ff3dc6d7d62dce559ac91d3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7b05708b94d6fce917a534a459e3b1f13fbe057b7a73c0a1709f254c85aacee7
MD5 c2c0fa1184e41939d43fee9fb279f591
BLAKE2b-256 ca915e1e361255f46c169a7048a5ba70231f2d5676b2bf1f3d03108e7e0ac5ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp38-cp38-win_amd64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: omnipkg-3.3.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for omnipkg-3.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1e98fabe069530c29e5d0ffb1b433b344565a04bf18be7c68801adfd79427758
MD5 3a5d5fb1eddb531aa470366562962eb9
BLAKE2b-256 a845537dfd25302da20f7d69b096ec3e81ad2393a17b0be537d33a140fdaf0ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp38-cp38-win32.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0887acf0d878bb45c54d3051c0634f95e154683ce8f2c1387dd5bb480d32ed4e
MD5 016aa26f95d28f9f3195d476aa0dd850
BLAKE2b-256 72a137c03362954905d95bcb782004333bb189a826ff460f7d97108fe7fc14b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omnipkg-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c2907b61fcc409e760d2c61f9e5b4c30eae7a9629b4904940418a4246239a3e
MD5 10618b2ffa5b612385d3e5f093b95d4f
BLAKE2b-256 9169eb8a5a91cb371e672b02aa557507a887df7af5627144f0d14c962c27370e

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: publish-wheels.yml on 1minds3t/omnipkg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page