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.0.0 | Python: 3.9 (Bullseye), 3.11 (Bookworm), 3.13 (Trixie) | View on piwheels

pip3 install omnipkg==3.0.0

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

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.2.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.2.1-py3-none-any.whl (1.6 MB view details)

Uploaded Python 3

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

omnipkg-3.2.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.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

omnipkg-3.2.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.2.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.2.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.2.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

omnipkg-3.2.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.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

omnipkg-3.2.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.2.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.2.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.2.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

omnipkg-3.2.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.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

omnipkg-3.2.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.2.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.2.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.2.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

omnipkg-3.2.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.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

omnipkg-3.2.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.2.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.2.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.2.1-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

omnipkg-3.2.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.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

omnipkg-3.2.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.2.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.2.1-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8macOS 11.0+ ARM64

omnipkg-3.2.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.2.1.tar.gz.

File metadata

  • Download URL: omnipkg-3.2.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.2.1.tar.gz
Algorithm Hash digest
SHA256 fdfd49ac27ce35d6853de895710f712bbcc9d2e45c3b6559f494455b9012fb59
MD5 6c21c66558029bdd0a3b0a6155189a1c
BLAKE2b-256 a917fb399a49250faf9a5ee2d90dbbdef1fc51130cba7bae01b2bcce96c2acb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-py3-none-any.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d9f1ff2b937d5e11dd7ebb735c4d16c9a9be430e8a1aab028ed3af888596e63c
MD5 45a9db51e0b8c91ce2df195c29c21e98
BLAKE2b-256 ba0c04c72ccce007ed456a8a4ca065b4a30711cde1fbbb868a14108b52308bbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 406ad07b1624c098e49bb0de465828812de1e2ab9263282d6e616d5352f82938
MD5 409b9da29725cd5b65e03fed820c19b3
BLAKE2b-256 eb43ed12a87e9cde0b52772e895018051f9c43235ba552c30a56d3ac17014b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c0fd56f1b77fe6823f2622f599720b0c836fbedde90ec15ab0de2c50080cc88e
MD5 7dcb7f00e7359df1826af778593c743c
BLAKE2b-256 4b9435bfe1d379c844267cdb0b97a30a7d88c1442374aed8e8b19534d0606646

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 69b4b8cb6bf576f23acb06a54ed26dcff8f8ea61e0ce4ae3551389160ddf57a6
MD5 757fda5fcdfe8284364cb098ff377aec
BLAKE2b-256 58c80dfab032a51cba515941f0a8f6d9c3228767740e2e84edfcdfbd63524ad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c4da300e1cf7857d61f15e965a0c117776b26fbc7583ad75c715e5e6e946758
MD5 61af2f627329d8c96e1fbe6d694f5b66
BLAKE2b-256 56845192631ca9b791a0e2b6cfaef43a90945dfbb912fe7286673c65ed7ee68f

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c0a4c1abc37690d29470f3af3e26f9c6acf57be198342973cb922ac8ade52a7
MD5 3967a4c4148faacc314401144d800708
BLAKE2b-256 6adcd9ffc2d4f0100f49a890b3900438d7754b833d488743486111940527bc69

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ca233c6aece8b1eb8df518a764f21e4b19f7a12d6e0d20a798d9b6136cd4e8f
MD5 892b906b795b72c847efba97c18b74d0
BLAKE2b-256 00a150c6239c55ae2eabcbf62194a4e13033dba9c7943e7735443c4b4f3021ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 75330c6c5d2b5b4523813f917776b01be39baea90798b652db250a552a07af8c
MD5 b6c4129ad1260de5c106ce83094ac063
BLAKE2b-256 a48d73b2271cf8d927a5751043d64d2489167d33747070aced6d34750fd0e18b

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b444038d606a460f2a28ec834a22df394aa1ec215d6d0d33421aab9bca038cda
MD5 ec56e74d15403421175b6d2c485152f3
BLAKE2b-256 27cb9c075c9842067854683fc322166a34dae5155321916cef07c97aced8a2c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.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.2.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 26fbd4979141ba659b03ea3cf501285bdea80d9f0e346d4c168ac8472929a8e2
MD5 62d0d0be450ad9ead0a16b6e96797f15
BLAKE2b-256 948191781cfe5bad1185d821c0a24d8d6a8813bb877f7eed2db7fcff748ce44b

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c33ba883cf74f827619ecc012229e2805d7084cbd9b246b25c0b5849f11b946
MD5 9d642b3161a38435d390274c73af0aa0
BLAKE2b-256 bbaa9b7677da8daeb3111af3b0e8f4d3b010c5f9a2e475da409d3739f2bd8c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 81d08438056aeec06079663b8fb23859deebcb5777a2eb6e949e6b42c7385fec
MD5 9301b3a8b94f7be7630fee9cd2356662
BLAKE2b-256 12cfbe65d788c964c262ba3d6cf9d5d44c101d069952651ec3ff0d9ed3d851d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 523f9046b149c882f560d198765de1f464d325a14cf9c9d0e5b7c6cb20540b37
MD5 bf318069468db2fa8db1b0b75a63f091
BLAKE2b-256 f41d9eadf5d1615914ef215dc9c1e866d7da53ce599abb8c4c7d611463eeed1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3c929750c037b6902792eaa4ed00c700c51eb2dc0a56bd25124aca7a74b528ba
MD5 1b928b22c08093680211995f77dbdd7e
BLAKE2b-256 dd318d16d5ef43982dfdedb77433e88e9927cc972a1a6cf39a2edfafb873f6bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c98d5c62429a3a24a85a2593584229d5522a321aa951695d686a2d5e977e005b
MD5 a4d925334d95ab4b94fb790b8ed1e11f
BLAKE2b-256 f34b7cbd1fdd1e649eeaf786dbe6510e97b3c68fb6669cfa46e281042fcaa060

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d0ad0defe75461814b131513215a55ed6e65f44ff8f95cb3869eea4c59ff6ab
MD5 a512771f5f11163de82b188d72da5c45
BLAKE2b-256 e69841f42ec95a1c20885f5ab8221021c025874e8a3a0bed963253c3af6eac0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 322854776e8ea7da58fd359e2c0aec1e63006b5093c12ae87f90269e90b7c866
MD5 96313a4b5618845799104ae1b972d7df
BLAKE2b-256 014608b2c03aba19ec1837c0658efae10374337f9bec004e1b5b1e1fbf44877e

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee0f8b45f92c8dbe34bf24b454b4364a66b5f088d58940d12efcba464e1b296e
MD5 8855aeb468db3e4d4162448a3a0b39f3
BLAKE2b-256 22765c20623b003cf66dc893e77c6385ba5390c2c2ecfbda6f519c98bb8dadc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2b0166d06f6bebe8301acfc3efaff694ba5c4769b0c2460277f183bbc471fc68
MD5 0ae535aeb1ebe0e3ecef4936f7eebb0c
BLAKE2b-256 a1cae72129f4e02c8c0a9b650a1b92d985bf4f79cfb5ca0bd413c2ad51d26e84

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7b51eafedbb38e196d5fca75b2674df5c3d95e4bb4e1236d3a04904f7a9a064
MD5 597c446bde5689ee7d5ce7c5bfd20dd8
BLAKE2b-256 0c18d6f7337a0a269444bdf122aba1897f4c16f776b7e1cb5725e192f67dca78

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.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.2.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9cb0475253df7d41ac5386f7cba588e2106d0f8f4756c9944091def18cdd36ae
MD5 d19fd5ffc07be8c2da101420af9700e7
BLAKE2b-256 1644bca1f72f48e9f96e24f1e03e167e7c0ff0748f7d414498046e1da1f78c3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b73c96f5ca3ee6d85af54707f309dd0417de6ba2efc217e290f94b57f595c55
MD5 03508c8992d1b4d6234f7cbf81200885
BLAKE2b-256 c1bfd9775553c19b46dc26e945c4bb68d103719e5f601b13a373f93a6406558b

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4464f9fc1d4b427e296786971e20b4bde5c80b2e0ceba63b3247a879761e8e6c
MD5 2873d8524b3c3e0d46f49940dff6e610
BLAKE2b-256 547c39ad63175da1fe3fa189bc93ba05d623fe79de9590ec56f27b8b30850642

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5c2c78e3d70cbbd9434efb2a054772f2e89b81d630160e21639eaa68e2eb030f
MD5 2f8e6aaf749f230ea5e16ad0ec592335
BLAKE2b-256 530f2d161b8812b786d3a33d16a9b5ea130e0db5ec368bde3c7b842209c33ce4

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0b30b2f616f62ad98f5050024407abcac094096e28420154c3b00bb3f3e3f8ac
MD5 27b56b288eb9c3ed043ce695f9649154
BLAKE2b-256 841703a8555364906092f981737a7700adea4fdacd8d89427abc3a865b9f85d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fb4516b7c66bc693cd8166f12aca554ac3159f8568ac3c7f5eead14ca62979f8
MD5 b3dbec3dfad3b1ad6091eedc21825aea
BLAKE2b-256 95d8bda94ecee9cab2baaaaefe836a690624da9869484befd9650cf2acf409b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63a5694dcde6a1220adda4fb073ff0b1fef8749c3e7437bce5d6463547f1ac75
MD5 163150861391d52c0fc4238b7cbb8f14
BLAKE2b-256 1c90ea2bd031f43fa8b47ec3994dd148e457794c494468975fb328db92e0771a

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6845e09352dd59a0a8057f5e0a3db47b7b11a007a7a6c5882c4f9cbbc8c26d07
MD5 3d4a17781c0361221a6d8d05f735c7ff
BLAKE2b-256 a2731f78b6c03391a4b804a3e718088be6ce994ae3008e3278b43567be52b66a

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a98df03d0092cc316a64f059694e29b96b078b5333f1902c339d5218cda306c
MD5 9167d23858ea818ea583e9cf379b19b0
BLAKE2b-256 fc0cffa4bffb63386c5a2a22e464991445e7276f623ba5e01a734c230de3caea

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e20a98013d07f68c32e0ae52b10a94e69526a842e095a81bf97bb102a32c1225
MD5 633059912c4aeb23fe48e7b3a057d4ad
BLAKE2b-256 e9b83759ecbe59e0524e9638ac63e089145f2655e19c9f21c5d963d4c75117e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c88d06fc03843366505cd936e036abb54a1c533273ee2e37ba899be72e694766
MD5 4542f7cdc836554d64eabe674fb70990
BLAKE2b-256 54c557186d28c448958128ad72c0085b2ef9ace56496a8d00251be8c2f4f8b45

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.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.2.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2a92b970d8264be7f323dc7f51109c070d1a36ab6648c36f99d27a7a7894684b
MD5 cdad8ad2e9af00a3bb73dfffe9af2394
BLAKE2b-256 2e485a8bf113c4d2f7f40ca53becfee36cd43eccd6fe2bacfb2dfabc6adce772

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65bc83e0dcea1a6f40bf8eb48fb813585bb28b20524e879692cd8aea889f9b18
MD5 b15e9df0089cbb50f88043df12de2f95
BLAKE2b-256 0f77699835cb891a96c8202d75b70d6e24585f555c88e75c4965b2dc5f827c58

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2dece33eb2bfe5ab57a022ee77105432c901b498494f0199af9cdb239782dbf5
MD5 639c61479c06eb2f6c17c836b3190f68
BLAKE2b-256 6f653ccbdef2c3240b611d928970337bdacddc86b6681546d91a9b1bedd04371

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ffea41e3136dd550f5462134d19ae8e41ce3088f964e795b996bb8744bcaaa6a
MD5 649beb0e47ceee02444d7a09963c6866
BLAKE2b-256 2d298c25a7473419a16b2c4fd4767d1aa0cd147ec56b2a161d97d3ea8dc0dbb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a169b0a03b602a21573e870474a51596dcf898a42a1588216b275503b4b39459
MD5 3a2f8b7e9f1b47a51f0a4a2d799d5d27
BLAKE2b-256 113d0fc5607da114285ac4ea04edfb1532e3bb4dd531e8214730de331b36407e

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 201eb375386998f394a1fc3e9e61e36f5062cfcf9d4eb655c60dd23a1ef965b3
MD5 00daa5a59d07b8bb83fbab80e565606a
BLAKE2b-256 997f8ca4a53d9fd805869a0a5d5c34e4cfa81d72bb73e6db10d5f3302d4d380b

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e873492fdac5bc3a7a7f1fdb3e00c8d7c35e17741faba5d9d304b4334de8a2da
MD5 f754719258ae68135f4f73cbe4877f49
BLAKE2b-256 badb308934f75d7717689a0ad902b4125b9e47d0eb1a1213002a2d8f5d52d6dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0880286ff5c50ff470a99cdee881408ffa9e0d2c78f04c7d02326ff12e8a4474
MD5 c48acd7085e79fa967f591273cc14826
BLAKE2b-256 1c5c63bdd3b440548f3a1da3f069ef7f231be16c9ba6c7d5084ea07dc3cfc188

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bad5de1525a6894a0b8e8dc3b4d37466732b51892e71ba0ee1312092732670c
MD5 e1d47388566001a062b47511a5dae549
BLAKE2b-256 fae2f7ee36b4a062ba35d2121c4ee3244484a37b2ece54fda1bfe5d769bc87a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ad721db6e1431e45cff9b9de86ac57c2a6b2dd4018b25c8a09102e9f8c83b143
MD5 1f5e94a59a464a68f1a5e68d5aeb1b3b
BLAKE2b-256 e538fc8528c086086cb879613c87a62806ef3ad43ed6b2de0dce50e3f847edaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ba98d5afffb54a9bf1f5bd4badb3a4fd01d3481dcb2b3d89e2c7a2b88ffec52
MD5 a6f05149f0ad6e73390ded266dcdc2af
BLAKE2b-256 245e23c00177b5c94f2f111386bf9c78f367cc273b6f3ab228decf3eee73facb

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.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.2.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c9a88c54e0680a6cdce8850ce1ec40e696ac729c291db6d0f9431782995035d7
MD5 260e4a13f95009bf5fb348483957b5ca
BLAKE2b-256 21fbe9fe3759c680543068c96ba6262e82f5e69046d9be068550d2cec4691670

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efc9d54d99684e38185dfb88579bab8696574594d03c2c6d899fc09a083581f5
MD5 3952539f9fb4b1f7c89878ea8e7a3d7a
BLAKE2b-256 ca15d8024996657847cf0478f37934fd733bddd77e4bfb5be45248b4a0a342d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25b913ebbf2c019cc60cad189736c9561d8d661a2558d5b1aa46c668655f9ddf
MD5 20b601435b7d9ee9b40b4d06a5c53e15
BLAKE2b-256 1bcbf30a5a1f145013a4ea1e5126207d9e02b4317910669061e0a3fa96528bca

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6a422bebd8cc9d5b6fe49767d2628c2214fa5388d4eaf4d073e07d0cb3c63d47
MD5 8dfd05b4c296436f1c1185e94ebf0c10
BLAKE2b-256 7e6f8c337ebdcabd7fcdc4e2be30b33e36b69151149c00f2697fa777687da3ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 58df5d808dd5c3ddf7b33e5070181e281004ecf1d4970a66490833e054fa7569
MD5 923ee431604e773561dad9cab909ca9b
BLAKE2b-256 6ac654b85069909f45617cc26ddfd4e547a537b7af9a4745f36f63094495a2e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 07b6a8855a10f14eed1b86cb7a6f5aebb29cef79736035f8c3a20b21b0dbbbc5
MD5 699af56eb931f60c6b1081e690eb4d6f
BLAKE2b-256 99e8c1a2078c2df133e8b9c2081fab3982ffe43d354c2dd8b65658229b464a7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61a88a105395ed7cec69c684eb85d9a4f18bd4b0c43d2f604f9ff00fa8f8a019
MD5 7f0e8478b0768384ead83fc18cf4e18d
BLAKE2b-256 23ebea550b1ccedb7d5f9fc5612ba9905f76b0a93b3bc142f5810af38f2fa2f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 008045b44e456846bfe2da16180bbfcc56296f1944526d25fb0f4357a38b3742
MD5 bd06175315f8539d1596a47dc22fbdb1
BLAKE2b-256 c64c392e2e40affe2e9a679f3ef7411b0ad0b3d4111eb21e8fee05dbe73cbffe

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1f3ccd197f6aeecafaa7635a1c0cd3d10db4126fcd67c54f8a6492b4115c132
MD5 4d6d5e219527a680ea2d5a47b0ef24c6
BLAKE2b-256 898ea85abbdc5533ed8e1ff392e734d2bbc67ff993d422c9d70adeda21ed96c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.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.2.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 51cc8e72e00f92a2be156eff0bcf9688c4db2b21ea4ea81b96168642491fb60f
MD5 bfad8476af0d5de18c4a9fb44fd0c1ae
BLAKE2b-256 cac089361a734acca8545e52053f58b47cc600effa652cf4ba771ede7182f892

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 767da1c50be5aa4950ebec707108a30892f9bc0ae2535e28547abb2a29ebfe7d
MD5 f4324035fc3febc954a1e806458007e2
BLAKE2b-256 680e4ab5cf0b208e3a32c4d7d52cb1f6eef5258a370894fc8cc2cfae305ea5b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5811a3e2de4a0cc46b4ffb6c12bc6718f9300caa74266b35f1d2b354a760aaa9
MD5 0781c207badebb191e09e01eebb67a7c
BLAKE2b-256 96f31af57b62801cf750b260458899e31c5dbd40b0e6b5da3ac3c3e0b21555da

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3c551092cfee1c08f8f7f28e7f8e3d23e63d854ac1c09e13c3e7b479622282a1
MD5 7bd655eba2dc109ac0f1be6c52afb400
BLAKE2b-256 99c52f4a423efb482cdd5b739e513ca21730e039284b8f9aae0fa9b597185e8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: omnipkg-3.2.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.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c2fdae5b08a86f2ebee624cb8a09f7c315967a6b923c14198e1fa379f269d62c
MD5 55cd9ec8f576f2104c483ced9c98ead9
BLAKE2b-256 043b58a5e3460f1e1ce11ba145b9910ae3a055ce6e3f30a093195db43353bf7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4753ca163ec80458782ff51937f6386e1b233882ebb111887d0001ea74e0a3c
MD5 a861bff50b72f5a0035784a4df10715d
BLAKE2b-256 f5e4fb9a29db6b2e51e446b8da3f8b31719255e6d25ea3a91dd870983a1b2467

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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.2.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for omnipkg-3.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 317d426128b23b7062f2a6d93df517a3d089146095b36f77e5d45ac0f1257b39
MD5 8e49df6c0a6d44d3c3d8de30fa78e958
BLAKE2b-256 7476087e3b04224d3608734db6cc648f1b923309025aca7a05cf09681e9da77f

See more details on using hashes here.

Provenance

The following attestation bundles were made for omnipkg-3.2.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