Skip to content

Commit

Permalink
refactor: remove redundant platform_python_implementation markers in …
Browse files Browse the repository at this point in the history
…poetry.lock
  • Loading branch information
HsiangNianian committed Dec 18, 2024
1 parent e870368 commit 16b25e5
Show file tree
Hide file tree
Showing 4 changed files with 245 additions and 281 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
- name: Setup Python
uses: ./.github/actions/setup-python

- name: Set UTF-8 Encoding
run: |
[Environment]::SetEnvironmentVariable("PYTHONIOENCODING", "utf-8", "Process")
chcp 65001
- name: Run packing
run: |
# cp ./OlivOS/hook.py ./OlivOS/hook_bak.py
Expand Down
81 changes: 38 additions & 43 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,48 +4,47 @@ version = "0.11.48"
description = "OlivOS - Witness Union"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "OlivOS-Team", email = "[email protected]"},
]
license = {text = "AGPL-3.0"}
classifiers=[
authors = [{ name = "OlivOS-Team", email = "[email protected]" }]
license = { text = "AGPL-3.0" }
classifiers = [
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3'
'Programming Language :: Python :: 3',
]
dependencies = [
"aiohttp>=3.10.11",
"brotli>=1.1.0",
"certifi>=2024.8.30",
"filetype>=1.2.0",
"flask>=2.2.5",
"gevent>=24.2.1",
"grpcio>=1.68.1",
"grpcio-tools>=1.68.1",
"httpx>=0.28.1",
"js2py>=0.74",
"lxml>=5.3.0",
"openpyxl>=3.1.5",
"pillow==9.3.0",
"prompt-toolkit>=3.0.48",
"protobuf>=5.29.1",
"psutil>=6.1.0",
"pybase64>=1.4.0",
"pyinstaller>=6.11.1",
"pyjson5>=1.6.7",
"pystray>=0.19.5",
"pywebview>=5.3.2",
"pyinstaller==6.9.0",
"flask",
"Werkzeug",
"gevent",
"psutil",
"requests",
"pybase64",
"websockets",
"websocket-client",
"pillow",
"lxml",
"rsa",
"requests_toolbelt",
"pystray",
"pyyaml",
"openpyxl",
"pypiwin32; sys_platform == 'win32'",
"pyyaml>=6.0.2",
"qrcode>=7.4.2",
"regex>=2024.11.6",
"requests>=2.32.3",
"requests-toolbelt>=1.0.0",
"rich>=13.9.4",
"rsa>=4.9",
"websocket-client>=1.8.0",
"websockets>=13.1",
"werkzeug==2.2.2",
"aiohttp",
"qrcode",
"brotli",
"pyjson5",
"APScheduler",
"js2py",
"certifi",
"httpx",
"prompt_toolkit",
"regex",
"rich",
"pywebview; sys_platform == 'win32'",
"filetype",
"grpcio",
"grpcio-tools",
"protobuf",
]

[project.urls]
Expand All @@ -67,11 +66,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[dependency-groups]
dev = [
"black>=24.8.0",
"nox>=2024.10.9",
"ruff>=0.8.2",
]
dev = ["black>=24.8.0", "nox>=2024.10.9", "ruff>=0.8.2"]

[tool.ruff]
# Exclude a variety of commonly ignored directories.
Expand Down Expand Up @@ -137,4 +132,4 @@ skip-magic-trailing-comma = false
line-ending = "auto"

[tool.black]
target-version = ["py39", "py310", "py311"]
target-version = ["py39", "py310", "py311"]
1 change: 1 addition & 0 deletions scripts.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- encoding: utf-8 -*-
# /// script
# requires-python = ">=3.8"
# dependencies = [
Expand Down
Loading

0 comments on commit 16b25e5

Please sign in to comment.