Open
Conversation
Owner
Author
|
@Sagetrash can you check it in your Linux machine? |
Contributor
|
@Surajkumar5050 |
Contributor
|
when trying to install the app, i got this error .venv ❯ uv pip install -e .
× No solution found when resolving dependencies:
╰─▶ Because only the following versions of pywin32 are available:
pywin32==222
pywin32==223
pywin32==224
pywin32==225
pywin32==226
pywin32==227
pywin32==228
pywin32==300
pywin32==301
pywin32==302
pywin32==303
pywin32==304
pywin32==305
pywin32==306
pywin32==307
pywin32==308
pywin32==309
pywin32==310
pywin32==311
and pywin32<=306 has no wheels with a matching Python ABI tag (e.g., `cp313`), we can conclude that pywin32<=306 cannot be used.
And because pywin32>=307 has no wheels with a matching platform tag (e.g., `manylinux_2_42_x86_64`) and zyron-assistant==1.5.1 depends on pywin32, we can conclude that
zyron-assistant==1.5.1 cannot be used.
And because only zyron-assistant==1.5.1 is available and you require zyron-assistant, we can conclude that your requirements are unsatisfiable.
hint: You require CPython 3.13 (`cp313`), but we only found wheels for `pywin32` (v306) with the following Python ABI tags: `cp37m`, `cp38`, `cp39`, `cp310`, `cp311`, `cp312`
hint: Wheels are available for `pywin32` (v311) on the following platforms: `win32`, `win_amd64`, `win_arm64`
This is easily fixed by commenting out the forementioned dependency in
|
Owner
Author
|
Okay I'll update this in 2 days , as I've something else to do tomorrow. Thank you :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR introduces full Linux compatibility for the
zyron_linuxmodule. Windows-specific dependencies, file paths, and system commands have been refactored into cross-platform implementations usingplatform.system()for runtime detection. Windows behavior remains fully intact and continues to use optimized Windows APIs where available.The objective of this refactor is to enable native Linux execution without breaking or degrading existing Windows functionality.
Changes Made
Platform-Aware Core
Refactored
system.pyto use Linux-native commands such asxdg-open,pkill, andgio trash, while preserving the original Windows logic.Browser Native Messaging Support
Updated
register_native_host.pyto support Linux Firefox manifest paths (~/.mozilla/native-messaging-hosts/) and generate.shlauncher scripts for host execution.Cross-Platform Activity Tracking
Added Linux-specific default paths for Chrome, Brave, and Edge history databases.
Dependency Isolation
Made
win32guiandwin32processimports conditional intracker.py, allowing the tracker to run on Linux using apsutilfallback where required.Path Normalization
Replaced environment-based temporary paths with
tempfile.gettempdir()and ensured proper handling of Linux and Windows path separators across the project.Import Corrections
Fixed incorrect imports where
zyronwas referenced instead ofzyron_linux, preventingModuleNotFoundErroron Linux systems.Metadata Update
Updated
pyproject.tomlto include Linux OS classifiers and corrected a package naming issue in build targets.Validation Checklist
pyproject.tomlmetadata and corrected packaging configuration.start_zyron.batmaintains compatibility and protected imports prevent module errors.