Skip to main content

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

Project description

omnipkg Logo

omnipkg – Python Runtime Hypervisor

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

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

Python Versions Supported Platforms

Security Safety Pylint Bandit CodeQL Socket

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


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

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


⚖️ Multi-Version Support

omnipkg pip uv

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


💡 Why This Matters

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

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

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

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

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

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


🧠 Revolutionary Core Features

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

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

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

Production Benchmark Results (macOS CI)

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

Platform-Specific Performance:

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

What This Actually Means

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

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

Why This Is Revolutionary:

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

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

Benchmark Methodology

Our production benchmark follows industry-standard practices:

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

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

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

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

Live CI Output from Multiverse Benchmark:

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

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

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

🎉 BENCHMARK COMPLETE!

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

⏱️  Total test duration: 2.14s

🚀 This is IMPOSSIBLE with traditional Python environments!

Real-World Impact

For CI/CD Pipelines:

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

For Development:

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

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


🔄 Reproducible State Sync & Environment Reconstruction

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


8pkg export — Snapshot your environment

8pkg export

Scans all registered interpreters and writes two files:

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

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

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

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


8pkg sync — Rebuild or verify from a lock file

8pkg sync

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

If the environment already matches:

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

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

If the environment has drifted:

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

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


Switching lock files (--pick)

If you have multiple environments or historical snapshots:

8pkg sync --pick

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

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

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

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

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


How the SHA split works

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

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


CI/CD

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

echo "y" | 8pkg sync

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


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

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

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

## Two Modes of Operation

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

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

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

Performance vs UV:

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

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

Automatically heals broken command-line tools:

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

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

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

How It Works

Step 1: Detect the Error

omnipkg run recognizes multiple error patterns:

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

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

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

Step 2: Build a Healing Plan

Analyzes the error and identifies what's needed:

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

For CLI commands, it includes the owning package:

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

Step 3: Find or Create Bubbles

Checks if the needed version exists:

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

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

Step 4: Execute with Bubbles

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

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

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

Step 5: Clean Restoration

After execution, environment is restored to original state:

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

Real-World Examples

Example 1: Version Conflict Resolution

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

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

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

Main environment after execution:

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

Example 2: Broken CLI Tool

Scenario: httpie broken by urllib3 downgrade to 1.25.11

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

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

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

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

Main environment after execution:

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

Performance Benchmarks

Script Healing (Demo 7)

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

CLI Healing (Demo 10)

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

Key Features

1. Zero Main Environment Impact

Traditional approach:

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

omnipkg run approach:

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

2. Intelligent Error Detection

Recognizes and fixes:

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

3. Smart Dependency Resolution

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

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

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

4. Bubble Reuse

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

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

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

Usage

Basic Script Execution

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

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

CLI Command Execution

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

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

With Verbose Output

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

When to Use omnipkg run

✅ Perfect For:

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

⚠️ Not Needed For:

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

Performance Comparison

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

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

Speedup: 230,833x faster

Try It Yourself

# Install omnipkg
uv pip install omnipkg

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

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

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


The Future: Package Manager Interception

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

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

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

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

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




3. Dynamic Package Switching & Process Isolation

💥 Nuclear Test: Multi-Framework Battle Royale Daemon Status

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

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

🛑 The Hard Truth: Why You Need Daemons

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

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

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

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

🟢 The Solution: omnipkg Daemon Workers

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

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

🚀 The Impossible Made Real: Benchmark Results

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

1. Framework Battle Royale (Concurrent Execution)

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

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

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

2. The TensorFlow Resurrection Test

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

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

3. Rapid Circular Switching

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

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

💻 Usage

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

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

from omnipkg.loader import omnipkgLoader

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

Mode B: Daemon Client (TensorFlow, PyTorch)

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

from omnipkg.isolation.worker_daemon import DaemonClient

client = DaemonClient()

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

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

📊 Resource Efficiency

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

Live omnipkg daemon monitor Output:

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

🌀 Try The Chaos

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

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

Available Scenarios:

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

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

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

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

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

# Temporary language override
omnipkg --lang es install requests

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

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


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

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

Example: Conflicting torch versions:

omnipkg install torch==2.0.0 torch==2.7.1

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

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

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

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

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

Example Insight:

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

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

7. Instant Environment Recovery

🛡️ UV Revert Test

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

Key CI Output Excerpt:

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

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

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

UV is saved, along with any deps!


🛠️ Get Started in 30 Seconds

No Prerequisites Required!

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

⚡ Native C-dispatcher

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

Force Python dispatch if you need to debug:

OMNIPKG_FORCE_PYTHON_DISPATCH=1 8pkg install numpy

Ready to end dependency hell?

uv pip install omnipkg && omnipkg demo

See the magic in under 30 seconds.


🌐 Verified Platform Support

Platforms Verified

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

📊 Platform Matrix

Linux (Native)

Platform Architecture Status Installation Notes
Linux x86_64 x86_64 Native installation

macOS (Native)

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

Windows (Native)

Platform Architecture Status Installation Notes
Windows Server x86_64 Latest Server

Debian/Ubuntu

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

RHEL/Fedora

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

Other Linux

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

📝 Special Installation Notes

Ubuntu 24.04+ / Debian 12+ (PEP 668)

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

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

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

Rocky/Alma Linux 8 (Python 3.6 → 3.9)

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

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

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

# Now install omnipkg
python3 -m pip install omnipkg

Alpine Linux (Build Dependencies)

Alpine requires build tools for dependencies like psutil:

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

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

Arch Linux

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

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

🐍 Python Version Support

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

Architecture: noarch (pure Python, no compiled extensions)

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

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

✅ ARM64 Support Verified (QEMU)

ARM64 Verified

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

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

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

Current build status

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

Installation Options

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

⚡ UV (Recommended)

uv Install
uv pip install omnipkg

📦 PyPI

PyPI
pip install omnipkg

📦 Pixi (Recommended for Modern Workflows)

Pixi Install
# Add to your project
pixi add omnipkg

# Run globally without installation
pixi global install omnipkg

🏠 Conda & prefix.dev

Platforms / Noarch Conda-forge Minds3t Conda Channel

Official conda-forge (Recommended):

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

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

# Using mamba
mamba install -c conda-forge omnipkg

Personal minds3t channel (Latest features first):

# Using conda
conda install -c minds3t omnipkg

# Using mamba
mamba install -c minds3t omnipkg

🐋 Docker (Multi-Registry)

Docker Pulls Docker Hub Version GitHub Container Registry

Docker Hub (Development + Releases):

# Latest release
docker pull 1minds3t/omnipkg:latest

# Specific version
docker pull 1minds3t/omnipkg:2.0.3

# Development branch
docker pull 1minds3t/omnipkg:main

GitHub Container Registry (Releases Only):

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

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

Multi-Architecture Support:

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

🍺 Homebrew

# Add the tap first
brew tap 1minds3t/omnipkg

# Install omnipkg
brew install omnipkg

🥧 piwheels (for Raspberry Pi)

🥧 ARM32 Support (Raspberry Pi)

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

pip3 install omnipkg==3.2.1

Verified Platforms:

piwheels Install

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

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

🌱 GitHub

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

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

Instant Demo

omnipkg demo

Choose from:

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

Experience Python Hot-Swapping

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

# See available interpreters
omnipkg info python

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

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

Optional: Enhanced Performance with Redis

For maximum performance, install Redis:

Linux (Ubuntu/Debian):

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

macOS (Homebrew):

brew install redis && brew services start redis

Windows: Use WSL2 or Docker:

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

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


🌟 Coming Soon

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

Concurrent 3x Python & Package Versions in Single Environment

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

Flawless CI/CD Python Interpreter Hot-Swapping

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

Bubble Import Validation and Auto-Healing

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

🌟 Coming Soon

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

🚀 C++/Rust Core for Extreme Performance

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

Intelligent Cross-Language Dependency Resolution

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

🔒 Global Atomic Operations

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

🔌 Universal Package Manager Integration

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

📚 Documentation

Learn more about omnipkg's capabilities:


📄 Licensing

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

Commercial inquiries: omnipkg@proton.me


🤝 Contributing

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

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

→ Start Contributing

Dev Humor

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

                ~ omnipkg: The Multiverse Package Manager ~

Project details


Release history Release notifications | RSS feed

This version

3.3.0

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

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

Uploaded Python 3

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0.tar.gz
Algorithm Hash digest
SHA256 374d4e0861dd8a98755f48b9394774c587479697a89d4bee0f345fc1c889aa25
MD5 d259b2d9954962da113155468c1c2438
BLAKE2b-256 9de2bf12ff1457f3e9de375252999ed31e1dfd078675d98a951a485456dd5b52

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on 1minds3t/omnipkg

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 367328af7db8e4dc463883f74d008bc510482834fbb66ea53f6fbe6565fe7268
MD5 af9fd23f2cc072e544a8eebf128b2535
BLAKE2b-256 dfca965adb6d9201a5c4d4d3ae89f1a1be85212915cca8d5e463077adac0245c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 14359dda06dfa260c848d8752f66cb0082c9967da8c39957bb975f3e5d4a51c6
MD5 f3ae8c3fb977e4071586a54d8c8da6b5
BLAKE2b-256 35a7d45c30d9cea98b559a5b30c0629b1648b85e22f6cf90456509dcd6ce57a5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 833e568aae41e2ecd959ed4dc40ed4644c3f027947b5280379056cd397de4eed
MD5 d53ca780f3790a5588bb3efab3804c77
BLAKE2b-256 8e76d9250556fae6d69a0463e644092008e40a37152e0ed3b2ea0570c16a09b6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 da69e30fdc47aee125938ec85084871cc5c1d1878a434ef78d767f62dc72a2f9
MD5 ea0ea340a990e82debdb70a3e8a520f5
BLAKE2b-256 33c34f8d7c3df8bc898299c2635e930ca8244cbf153e9a9003543f3ad734f4cd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 babf04f46ede0de55bffef553231b2e3d1a899dc9f7b7a22fef2cfa270fe31bf
MD5 c84e12730417a73e3c3019154690b4d9
BLAKE2b-256 af7965ba7dc7727ae9530484cd24e680219a43cfcc7859c39dd70c661df046c0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d32caf1acb327a12423881790265b964327f69cc20c6e5111456f324ab3d0ed
MD5 5767da994a73e275f6b0d2da944d899e
BLAKE2b-256 6f5ad6bf6fe865e2686aa4c36d2bba1d638cb086f18589071a54b5d776c2f1c3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f84ccb40804ba16f318a15b282ddf17662ad0ef023c932c3ee61c18407aef07
MD5 4e1e43c6520b3b39e08ec5344389863e
BLAKE2b-256 872be726e2ad9c0347fed3a771b2a4a4bf6da4266672f2cb6c5be44ec6409cb3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a7ac4a349fd84d9115e915acb0402420533d05676596c0f038204ad82d2f47e3
MD5 227493beb952c2edb1552bd6fe4e7f12
BLAKE2b-256 366aee12c4af1c9b6c58bc0c78bfe67c71affb7a10ebccf777b3c049f1349486

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 175b0bd50faf5b88bffce232386255ca603b1e937048669cc48accd7e9adb27b
MD5 82e5a7c27cb2022cb5b58af81fa5706e
BLAKE2b-256 55c7aac4b1a029f02218fc30b80aee44fce066bce38700e1e3e7f5aefefdee7c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 38b0af7287ee141f8fbd46e358136d76cc4459bfaff2882f7cf91af2e96be751
MD5 af4ec9e4097572cdb1378eba4f1fa8bc
BLAKE2b-256 7c63d804cf12d9d32d6d911a0d1d7844cda7025bd1d62260fbbdee18c523e457

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe71dedc2fab8cb08a1e56f0d74cb7a1d970ddd43bfbc13d157b270b5fb1f7a5
MD5 78a6ed3b62a55d0b4113047c111018db
BLAKE2b-256 a67601c565b8bdf8e1fcb3215ef2ba9219639cd42836e611dafac7addf3716d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0b4e7d7eb9081d68130d301aa140372c82ce6a5e6d68ffba13059b973eb5e62d
MD5 4fbc057f47bef8cfcb589e2898abd538
BLAKE2b-256 0cd26186a2c01e41eefab5918c677a641699585c121ab5a0c44e5b7c8ce33b8b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 34fa2bb1aaa75e6007c97667f59528a74b2b1c02f63cc6f4bcb62763211684c9
MD5 147e57a881705c176f318ccdb6839827
BLAKE2b-256 09a6087d07e810a73a8d803603ffe0d05370285af0044de38d43f3593e537050

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61732d1a61c285a0ac1728d230c600bab7c744babe46951b8bf4ffd0fc35ce56
MD5 31befc3950890782c33abe75e31098a4
BLAKE2b-256 cb4e7967c4685f786ee2f564bc82a0802cf6110460f2c27fd4b06d67b955da93

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 37473c76ccd3237b6b7bb76ba1ed1042ffca6bd0bbd0c3d0082191a712804f09
MD5 b6566182cc0b4356ff27c3a734f30df5
BLAKE2b-256 f733c3a750ada547d22538e63cda72b04b20ffe5b65aad051bcb797474716e80

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ffb3900584d4132350acf4a26be519b2552404ed721928d9d6eac55214e8e29
MD5 76860206fd46f9dc0813a35e0b8fa9a5
BLAKE2b-256 05ac34812d45e856c465ad96783d5fae2ec9a4cfb05e36e7e5d893daa4b6e475

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42cc5caa00997582d04e51b5cc0086d5995718ffcf1da0b891b0d2ed1d74fbe1
MD5 7010015cd3cc9c2403b0c4d920a5fc00
BLAKE2b-256 628da267247991605c395318c873204061e092a4f48152806044c74ebdfbc088

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54ca4a4fe9cab2012d37c0a9f3d5819e59b5bf566443bcd513f743731848f0e6
MD5 f21a6a912b96eb8ba23778c1488ef5c1
BLAKE2b-256 649e220a7ee30c4ea2c4b714d2900714e6bee62bd0b9c0b3e067c183a002b33b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 eb1534777f7f23d06b4c239a702c3507f1d761a2377b05c6eec0fada7cf4a0af
MD5 789ba579c363e396b7853e7a820ebc18
BLAKE2b-256 49d2f5e67ea202ff1c3e043cba79bd64cac93b885c61cf5a87a6080af7966cb7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c83ff1466fd721e7806f7ca25608965ea330be6db30034397b13068522ef1a2
MD5 726de3dbb7f20f00f1314d7734bcf37f
BLAKE2b-256 e96e800a2951d893c85b275195bf3fd5686db841904b86491db5d2b2457e31ba

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2d84918d660a9093951384ee383f3f1364a1ef46548ca9783f8abf632fcfa65d
MD5 61761071d7d85a1d612f3e7f923b9fa1
BLAKE2b-256 01a5b153b5c5d6f9d07bace11e18d8e811eaa93b342b7565c749c742640ebdbe

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4b4d8bcd853d7590e28e0dcf5192d6797d9ac36d909f8ce15b040983031bcba
MD5 587444d6e2ee3ba327cd217f97c6f359
BLAKE2b-256 46e52c8a2c4901d89477ef9208b0d479d43b25c13a4c410665fbcf36fd44c629

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cc5da28c9c5197100eb4e4ff3beaab2d937e318b22b16447a3b3834462a8a8f2
MD5 e31fa8fe278df52abc8c223dc3634280
BLAKE2b-256 1cf4d53ecf6320739fc9b3f83a2bd07918be976de0145205dd07155b4ff22e79

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c7831595945042b54e7b7898a2434e50eab544f0d7f8fd1231354da3814d1f01
MD5 ce26adaa14b45b6b7e7ea61b440ddc44
BLAKE2b-256 1d599b728d2ccb8f778a8020f9862c6c36254ab123a6987dfe3c4718ce5ae4eb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ffc66131d0312c358f9612ec02af013fe0410b2bac3d6cc1209ccd2b89845f7f
MD5 0bf78e48499de226ec4c9b5b56a31625
BLAKE2b-256 1e0f7b154fed49b024f44402bc6e310c3208c422e870d193ac7596d39c5e0acb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eef001e66879b2204a8bc4010daa1c27d09406ad6517140dfb7bff0aef41b92e
MD5 1ec4d9d2904169e955041a66582c201c
BLAKE2b-256 ec9d13802d335706e0be351999622e0a6f593dcbdc35128d0cad8eb1bde46072

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 255ac1ca6a65548562885d1debc358d46c4fb78d6d035aa1d2ea1554f2e7790b
MD5 8b5f3c0b146c81c74cbcc578210861ff
BLAKE2b-256 875df1e19850879b1d5785d264578c1fee7ab164b49bcc9cc06e766c47eea4c9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e30c35ab3c14cb6288b939767ae55a74d7913bc11d5f82efaed07d7da866d86f
MD5 642725e9e3037cfee9497b90c1583731
BLAKE2b-256 83e023a1cbcc9f1c703bab8fec9fdfe41c542f6f55a9abf5b1ad37a45cbc422c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 845f5b35d2da0038db9439bcb7a2dec10c394d77ae6092165acb0c1d41d2d63e
MD5 4606e2070f2244935573aef89a0cc26b
BLAKE2b-256 7f14419345019ff56d26755e28eefb02f5492e35175dd9b6b9ae3c8778d95df5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e6aab1359da839f0afa3339e889580e8dae68a4d3c54dadea6e1930146cbb3cc
MD5 ff9d12c432c851617ad30d078b0405fa
BLAKE2b-256 e73b1190197a4c4c676318b78c38ddef088dc76dba0492e0d975386a046b2028

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 261794cb6e012876eb79d458e9afb710d588d077cbca0f5fa01be392d5028d08
MD5 8e11139af559533c0335b37380560f2b
BLAKE2b-256 c6c939d51effeda783ce3fad1525b3fa890c7dc5fca3435491e00510c56c7178

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5d96797f6fdbec97cde930ca36f898317fbdd0d2e6e26fd4ca6669e536166605
MD5 27df602863570c868d7180f41b2cbccd
BLAKE2b-256 a4f2322cf3d8571ef72105f0f2d35bbb31f705b3a7eec100f927ae8bcf41fc91

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8ed48ba3a7feb2dd0af34d7b0ade58204b7876cd85bb53fd54db9d1b9512161
MD5 f5e1344f065c3392a460de6c3a7fddf3
BLAKE2b-256 2e6a912fe655f0418100740be694f118d90f20db72979ba6d24e1b70cdbec73a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afc0c49203b1418d0eae5932ea134f2ff041d4e41df0b498591a0b8cb86cedb5
MD5 da422c528f4580b363638abd5de5137c
BLAKE2b-256 302b54ce8dc2fd51157a80f71dedf1af5019f7b476d3abf9c3b14926a4711aff

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 bb755c56c688424a1935c4c5d62141c2ed47881eb05c8ef94b60902e974356b8
MD5 466c07c55ef20dc5c43ad8f4c0c5bad3
BLAKE2b-256 3b8f9e5ef2c9f832f43a88faa9f91e3e64de13a8e01338ee79a47aa1c3bfd9d2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8923f7158b4236c06aa763e7b136e0eae62e2239681fda66b6eb33054c3ef716
MD5 82d4f64df25a91850c5f6f34cb404267
BLAKE2b-256 ed2ed1dcd8445db5b1a4d87aaeffbc3f73d993bd076bbe32044fafa936aa4913

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f74e82f4ab28e8b5c61171f4fc3cca218332d39767282da17fb1dcbd623b416b
MD5 d68d5ae5b6a9432a61e02f328ea3625b
BLAKE2b-256 e91a95add88427b74282db8bd4f05f9210677660e71a606fc9b9794469d5ace6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eb4cc637ea272fb14ff27ac542c3a9df0fd2f404c01f1501e6e9b0d52f84cd5
MD5 ef4ab8ec1f7538304c29f9350e79db19
BLAKE2b-256 90be61b12d19e3c4754243e4c429fe8d2002c1a4ffaf3820d6f59c40c4a75da5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5237feeaf8dc82a22b1f92e5b01cd0a39164421f2c5790fe7b3e04a21c436b1
MD5 8772c5ed5bf9b6a5bdbc7123dbabaeb9
BLAKE2b-256 af1e0768a059e5e247e1556f9c35da43147b705441988d48a8a49ac45ef761ae

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 094311c18d140bd51bc9c8e44a26ede6de38ce8c99b7b6d800daf6cf0e87733a
MD5 a39e57af21465b78bc659b65a89ffc29
BLAKE2b-256 6e6d5f91d874d7d4f3eeda607d2edbb47840da3af4713f0b447313692b880b74

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4d72b42c73850d21c33aea505b69dc365ebc53c9c2393efb0d310bc2534ed065
MD5 f6088e3c921fc5ce580b852eec0300d5
BLAKE2b-256 c06adc050f4035d6a6dba101062e98909f432f5d29f5540a728fc350db860425

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c6a96efa044604dee0957cfa216d96d22094dcb72ba3168176555ce30c77b7f
MD5 014ab6e2009f6cde0c5382d3af728049
BLAKE2b-256 45751b47d24cb0af637aff89aafce60351912af5d264883a4db3cfc27d14cdb7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7eaffae1e1e3fedf239796d9b5143a7f5b7f4ef1309b8b703f8f83c1f23121b4
MD5 93f7920f4e5edc215f2951fd6dcbec62
BLAKE2b-256 1e3ba2a44acb503bddaf207e3a620b0d3a924bc8e18e6067fa1078ac2c47a92d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b6941e8363cd449fae7e9076df39a2ce943d9c668e738e0b2b1d1a7b96a7e53
MD5 1b3c606fe803e63c63c6adb2eb17d1aa
BLAKE2b-256 2bbc7eac5799d377658f09b45c066f5caae0e830f469b272f6820b4ac0449266

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 765beffb2adaa0c7ccb294a5da188c243aa2737949b184b48f9f60ec8ea8ff97
MD5 9f04bd6c8853a3c9d315ea4db0f645f3
BLAKE2b-256 df7317922505d3cd241bf80b36d4e2929731caa0da55d0439038b90a24b201e8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a1b1441a13a2a9ace2908c411177bcf2c4f3838fc7397abad94fdef833ab0087
MD5 a471b0b5a3d6d1329f21596c8a2ad5f9
BLAKE2b-256 83e7480ee956c706adb7f0f75962cca3aa7d6e507cafcf7ce6c5fc76bb2a5a70

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 75aa0ffd09e44129863b42434c995df447656109a731ba35cc8c98371dced443
MD5 40bdb93194b17dcbe8194af64c863b27
BLAKE2b-256 348a038882b137831f18b5a7f5b9dc0e1be8b9a7a5398ecc6af9eef712cd74cb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 52da56110f585491f1afb0f5eb4cc2a0106689560b86a9884cb1747d6532f3a9
MD5 220f173a048acf531b85ea8cadff8546
BLAKE2b-256 4a108e9f45e05f1667a9e4c01d8557ef3072856fef2c91188f2424abeabd3689

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc9c22f7f818a963937c455ec4c8b0f1d659e93e8aaa4f13281a7062eb24e953
MD5 c4bb43765adaa0b96152435c386e7285
BLAKE2b-256 96908f13953a712425b72e16ed56743f744fc13799b984b91c41b1975c95cea6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea522bbd5e9d5bdb9513e254618ee24ae93e7cb6792904e4def9752deda943aa
MD5 d339ab85b0d7eaf00b0625d2509e31b2
BLAKE2b-256 4d2da8d60b52112f2001566b0260b26639b3b253bc7c6ca78b0d4cc05d582586

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e7161c25896e590dcbf631b2d468da8e4e32494513c3478eb57335beb3006e1
MD5 675ba19e18fff5596b8ff93b9cf4286c
BLAKE2b-256 0923362d46d1b7d7d88c0c9b641b9200e143b47f6ab3b0bf70e0c71eaee4ab2f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 111f6132c6486ffa18720c9255ffb6a762ad36225a16e1de74a73e4cc1a727bc
MD5 b31cb9774c29cea1b174f9c7d210e827
BLAKE2b-256 b2b3942d751d83fcb57e526398e3b6b7de1baa8f8ded849bfb1329a5109a71b3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 498c9419ad2ba124e16b3450840e5a865fdff021303fcc75a5557708e47ea151
MD5 7a2b807f9d2115e4ef467981974c0611
BLAKE2b-256 8a6bb9509b17cb411533987d18694e49d2928229036a50f57cd746bfaa29917a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83f28a552d16652d32d1bfe5bd122b8ef93d0a47d995d942ac5d686037e3ca7d
MD5 f0d8e36e2e5b07fc868d3ddf1f00ea10
BLAKE2b-256 b69469a1c15a0d28690d532e58ab006ee51fc44d34c771f212e63075d24d7eca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3c09427a6bfb28c157fb2a5184c6b3a16da3dd2726139968d07da687c7be9288
MD5 388d5f99146ceb47d8c7641ed62a31a3
BLAKE2b-256 d4b297e0de6e28ae57f62d58933edb87cf1a5afb081b36f7e5809a1f13f438e0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for omnipkg-3.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a961550549df8fb62d5bd1f00f943e6357c9a3476c54d48fe72fa7d94a657510
MD5 c823f7417ec63d820d4cae79c0db1840
BLAKE2b-256 c72c7158c7e89712adcb630be4015ee4c213514ae8879a530deb65aa8a913526

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db5554086b11cbe7a00a727307d5584f81faf138e80613b40d93dbc83474ece6
MD5 da2dd2a930ba7483e925852b9b9496f6
BLAKE2b-256 1c84ec8114673626e435c629cbe6f3f5891d6ab9f2277bb6e2376cf23b39f10a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for omnipkg-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b322c8657ea8a705a84357ebbad652cf57c21a2144ef2e1e92fc8ec0471e0a44
MD5 e27914279a46b554668184d8183f2c1b
BLAKE2b-256 d6dc4db8d0bc1b3a3d935c0f6dc11d07a7a2eafe28780c82b7718d8a8d91567e

See more details on using hashes here.

Provenance

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