mirror of
https://github.com/Balshgit/python-poetry.git
synced 2025-09-11 21:50:40 +03:00
Compare commits
5 Commits
17e6e28129
...
c06c1a453c
Author | SHA1 | Date | |
---|---|---|---|
c06c1a453c | |||
8bc9a22054 | |||
e9fea9bc58 | |||
8f7c1f43b4 | |||
a26499ad5b |
6
.github/workflows/poetry-test.yml
vendored
6
.github/workflows/poetry-test.yml
vendored
@ -24,13 +24,13 @@ jobs:
|
|||||||
id: setup-python
|
id: setup-python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.11.3'
|
python-version: '3.11.4'
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
# ----- install & configure poetry -----
|
# ----- install & configure poetry -----
|
||||||
#----------------------------------------------
|
#----------------------------------------------
|
||||||
- name: Install poetry
|
- name: Install poetry
|
||||||
env: # Keep in sync with `POETRY_VERSION` in `Dockerfile`
|
env: # Keep in sync with `POETRY_VERSION` in `Dockerfile`
|
||||||
POETRY_VERSION: "1.4.2"
|
POETRY_VERSION: "1.6.1"
|
||||||
run: |
|
run: |
|
||||||
curl -sSL "https://install.python-poetry.org" | python -
|
curl -sSL "https://install.python-poetry.org" | python -
|
||||||
# Adding `poetry` to `$PATH`:
|
# Adding `poetry` to `$PATH`:
|
||||||
@ -67,5 +67,5 @@ jobs:
|
|||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Check docker-compose
|
- name: Check docker-compose
|
||||||
run: |
|
run: |
|
||||||
docker-compose up --build
|
docker compose up --build
|
||||||
bash build-check.sh
|
bash build-check.sh
|
13
Dockerfile
13
Dockerfile
@ -1,6 +1,6 @@
|
|||||||
FROM python:3.11.3
|
FROM python:3.11.5
|
||||||
|
|
||||||
ARG POETRY_VERSION=1.4.2
|
ARG POETRY_VERSION=1.6.1
|
||||||
ARG USER
|
ARG USER
|
||||||
|
|
||||||
# python:
|
# python:
|
||||||
@ -30,11 +30,8 @@ RUN apt update \
|
|||||||
libpq-dev \
|
libpq-dev \
|
||||||
nano \
|
nano \
|
||||||
&& export TERM=xterm \
|
&& export TERM=xterm \
|
||||||
# Installing `poetry` package manager:
|
|
||||||
# # https://github.com/python-poetry/poetry
|
|
||||||
# && curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
|
|
||||||
&& pip install --upgrade pip \
|
&& pip install --upgrade pip \
|
||||||
&& pip install poetry
|
&& pip install "poetry==$POETRY_VERSION"
|
||||||
|
|
||||||
|
|
||||||
RUN groupadd ${USER} && useradd -g ${USER} ${USER}
|
RUN groupadd ${USER} && useradd -g ${USER} ${USER}
|
||||||
@ -42,11 +39,11 @@ RUN groupadd ${USER} && useradd -g ${USER} ${USER}
|
|||||||
RUN mkdir /code /poetry
|
RUN mkdir /code /poetry
|
||||||
RUN chown -R ${USER}:${USER} /code /poetry
|
RUN chown -R ${USER}:${USER} /code /poetry
|
||||||
|
|
||||||
COPY --chown=${USER}:${USER} ./poetry/pyproject.toml /code/
|
COPY --chown=${USER}:${USER} ./pyproject.toml /code/
|
||||||
|
|
||||||
WORKDIR /code
|
WORKDIR /code
|
||||||
|
|
||||||
RUN export PATH="/root/.local/bin:$PATH" \
|
RUN export PATH="${PATH}:/root/.local/bin" \
|
||||||
&& poetry --version \
|
&& poetry --version \
|
||||||
&& poetry lock \
|
&& poetry lock \
|
||||||
&& poetry export -f requirements.txt --with dev --without-hashes --output requirements.txt
|
&& poetry export -f requirements.txt --with dev --without-hashes --output requirements.txt
|
||||||
|
1443
poetry.lock
generated
1443
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
0
poetry/.gitkeep
Normal file
0
poetry/.gitkeep
Normal file
@ -1,95 +0,0 @@
|
|||||||
[tool.poetry]
|
|
||||||
name = "main packages"
|
|
||||||
version = "1.0.2"
|
|
||||||
description = "poetry requiremts creation"
|
|
||||||
authors = ["Dmitry Afanasyev <Balshbox@gmail.com>"]
|
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
|
||||||
Python="^3.11"
|
|
||||||
aiohttp = "^3.8"
|
|
||||||
aiosignal = "^1.3"
|
|
||||||
alembic = "^1.11"
|
|
||||||
bcrypt = "^4.0"
|
|
||||||
celery = "^5.3"
|
|
||||||
click = "^8.1"
|
|
||||||
cookiecutter = "^2.3"
|
|
||||||
decorator = "^5.1"
|
|
||||||
Django = "^4.2"
|
|
||||||
factory-boy = "^3.3"
|
|
||||||
Faker = "^19.0"
|
|
||||||
fastapi = "^0.101"
|
|
||||||
gunicorn = "^21.2"
|
|
||||||
httpx = "^0.24"
|
|
||||||
Jinja2 = "^3.1"
|
|
||||||
loguru = "^0.7"
|
|
||||||
MouseInfo = "0.1"
|
|
||||||
numpy = "^1.25"
|
|
||||||
orjson = "^3.9"
|
|
||||||
Pillow = "^10.0"
|
|
||||||
pre-commit = "^3.3"
|
|
||||||
prompt-toolkit = "^3.0"
|
|
||||||
psycopg2-binary = "^3.1"
|
|
||||||
PyAutoGUI = "^0.9"
|
|
||||||
pydantic = "^2.3"
|
|
||||||
Pygments = "^2.16"
|
|
||||||
pyinstaller = "^5.13"
|
|
||||||
PyQt6 = "^6.5"
|
|
||||||
python-decouple = "^3.8"
|
|
||||||
pytz = "^2023.3"
|
|
||||||
redis = {version = "^5.0", extras = ["asyncio"]}
|
|
||||||
requests = "^2.31"
|
|
||||||
selenium = "^4.11"
|
|
||||||
simple-term-menu = "^1.6"
|
|
||||||
six = "^1.16"
|
|
||||||
SQLAlchemy = "^2.0"
|
|
||||||
SQLAlchemy-Utils = "^0.41"
|
|
||||||
termcolor = "^2.3"
|
|
||||||
uvicorn = "^0.23"
|
|
||||||
validators = "^0.21"
|
|
||||||
virtualenv = "^20.24"
|
|
||||||
wget = "^3.2"
|
|
||||||
zipp = "^3.16"
|
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
|
||||||
ipython = "^8.14"
|
|
||||||
|
|
||||||
black = "^23.7"
|
|
||||||
mypy = "^1.5"
|
|
||||||
flake8 = "^6.1"
|
|
||||||
flake8-aaa = "^0.16"
|
|
||||||
flake8-variables-names = "^0.0.6"
|
|
||||||
flake8-deprecated = "^2.0"
|
|
||||||
flake8-noqa = "^1.3"
|
|
||||||
flakeheaven = "^3.3"
|
|
||||||
flake8-annotations-complexity = "^0.0.8"
|
|
||||||
autoflake = "2.2"
|
|
||||||
flake8-useless-assert = "^0.4"
|
|
||||||
flake8-warnings = "^0.4"
|
|
||||||
flake8-newspaper-style = "^0.4"
|
|
||||||
flake8-comments = "^0.1"
|
|
||||||
flake8-jira-todo-checker = "^0.6"
|
|
||||||
flake8-mock = "^0.4"
|
|
||||||
|
|
||||||
pytest = "^7.4"
|
|
||||||
pytest-cov = "^4.1"
|
|
||||||
pytest-repeat = "^0.9"
|
|
||||||
pytest-asyncio = "^0.21"
|
|
||||||
pytest-deadfixtures = "^2.2"
|
|
||||||
pytest-mock = "^3.11"
|
|
||||||
pytest-cov = "^4.1"
|
|
||||||
pytest-sugar = "^0.9"
|
|
||||||
pytest-clarity = "^1.0"
|
|
||||||
pytest-html = "^3.2"
|
|
||||||
pytest-timeouts = "^1.2"
|
|
||||||
pytest-randomly = "^3.15"
|
|
||||||
pytest-split = "^0.8"
|
|
||||||
pytest-freezegun = "^0.4"
|
|
||||||
pytest-socket = "^0.6"
|
|
||||||
assertpy = "^1.1"
|
|
||||||
coverage = "^7.3"
|
|
||||||
|
|
||||||
safety = "^2.3"
|
|
||||||
|
|
||||||
[build-system]
|
|
||||||
requires = ["poetry-core>=1.0.0"]
|
|
||||||
build-backend = "poetry.core.masonry.api"
|
|
107
pyproject.toml
107
pyproject.toml
@ -5,61 +5,88 @@ description = "poetry requiremts creation"
|
|||||||
authors = ["Dmitry Afanasyev <Balshbox@gmail.com>"]
|
authors = ["Dmitry Afanasyev <Balshbox@gmail.com>"]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
Python="3.11.3"
|
Python=">=3.11,<3.12"
|
||||||
aiohttp = "^3.8"
|
aiohttp = "^3.8"
|
||||||
aiosignal = "^1.3"
|
aiosignal = "^1.3"
|
||||||
alembic = "^1.9"
|
alembic = "^1.11"
|
||||||
bcrypt = "^4.0"
|
bcrypt = "^4.0"
|
||||||
celery = "^5.2.6"
|
celery = "^5.3"
|
||||||
click = "^8.1"
|
click = "^8.1"
|
||||||
cookiecutter = "^2.1"
|
cookiecutter = "^2.3"
|
||||||
decorator = "^5.1"
|
decorator = "^5.1"
|
||||||
Django = "^4.1"
|
Django = "^4.2"
|
||||||
factory-boy = "^3.2"
|
factory-boy = "^3.3"
|
||||||
Faker = "^16.0"
|
Faker = "^19.0"
|
||||||
fastapi = "^0.89"
|
fastapi = "^0.101"
|
||||||
gunicorn = "^20.1.0"
|
gunicorn = "^21.2"
|
||||||
httpx = "^0.23"
|
httpx = "^0.24"
|
||||||
Jinja2 = "^3.1"
|
Jinja2 = "^3.1"
|
||||||
loguru = "^0.6"
|
loguru = "^0.7"
|
||||||
MouseInfo = "0.1"
|
MouseInfo = "0.1"
|
||||||
numpy = "^1.24"
|
numpy = "^1.25"
|
||||||
orjson = "^3.8"
|
orjson = "^3.9"
|
||||||
Pillow = "^9.4"
|
Pillow = "^10.0"
|
||||||
pre-commit = "^2.21"
|
pre-commit = "^3.3"
|
||||||
prompt-toolkit = "^3.0"
|
prompt-toolkit = "^3.0"
|
||||||
psycopg2-binary = "^2.9"
|
psycopg2-binary = "^2.9.7"
|
||||||
PyAutoGUI = "^0.9"
|
PyAutoGUI = "^0.9"
|
||||||
pydantic = "^1.10"
|
pydantic = "^2.3"
|
||||||
Pygments = "^2.14"
|
Pygments = "^2.16"
|
||||||
pyinstaller = "^5.7"
|
pyinstaller = "^5.13"
|
||||||
PyQt6 = "^6.4"
|
PyQt6 = "^6.5"
|
||||||
python-decouple = "^3.7"
|
python-decouple = "^3.8"
|
||||||
pytz = "^2022.7.1"
|
pytz = "^2023.3"
|
||||||
redis = {version = "^4.4.1", extras = ["asyncio"]}
|
redis = {version = "^5.0", extras = ["asyncio"]}
|
||||||
requests = "^2.28"
|
requests = "^2.31"
|
||||||
selenium = "^4.7"
|
selenium = "^4.11"
|
||||||
simple-term-menu = "^1.6"
|
simple-term-menu = "^1.6"
|
||||||
six = "^1.16"
|
six = "^1.16"
|
||||||
SQLAlchemy = "^1.4"
|
SQLAlchemy = "^2.0"
|
||||||
SQLAlchemy-Utils = "^0.38.2"
|
SQLAlchemy-Utils = "^0.41"
|
||||||
termcolor = "^2.2"
|
termcolor = "^2.3"
|
||||||
uvicorn = "^0.20"
|
uvicorn = "^0.23"
|
||||||
validators = "^0.20"
|
validators = "^0.21"
|
||||||
virtualenv = "^20.17"
|
virtualenv = "^20.24"
|
||||||
wget = "^3.2"
|
wget = "^3.2"
|
||||||
zipp = "^3.11"
|
zipp = "^3.16"
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
black = "^22.12"
|
ipython = "^8.14"
|
||||||
coverage = "^7.0"
|
|
||||||
flake8 = "^6.0"
|
|
||||||
ipython = "^8.8"
|
|
||||||
mypy = "^0.991"
|
|
||||||
pytest = "^7.2"
|
|
||||||
pytest-cov = "^4.0"
|
|
||||||
safety = "^2.1"
|
|
||||||
|
|
||||||
|
black = "^23.7"
|
||||||
|
mypy = "^1.5"
|
||||||
|
flake8 = "^6.1"
|
||||||
|
flake8-aaa = "^0.16"
|
||||||
|
flake8-variables-names = "^0.0.6"
|
||||||
|
flake8-deprecated = "^2.0"
|
||||||
|
flake8-noqa = "^1.3"
|
||||||
|
flake8-annotations-complexity = "^0.0.8"
|
||||||
|
autoflake = "2.2"
|
||||||
|
flake8-useless-assert = "^0.4"
|
||||||
|
flake8-warnings = "^0.4"
|
||||||
|
flake8-newspaper-style = "^0.4"
|
||||||
|
flake8-comments = "^0.1"
|
||||||
|
flake8-jira-todo-checker = "^0.6"
|
||||||
|
flake8-mock = "^0.4"
|
||||||
|
|
||||||
|
pytest = "^7.4"
|
||||||
|
pytest-cov = "^4.1"
|
||||||
|
pytest-repeat = "^0.9"
|
||||||
|
pytest-asyncio = "^0.21"
|
||||||
|
pytest-deadfixtures = "^2.2"
|
||||||
|
pytest-mock = "^3.11"
|
||||||
|
pytest-sugar = "^0.9"
|
||||||
|
pytest-clarity = "^1.0"
|
||||||
|
pytest-html = "^3.2"
|
||||||
|
pytest-timeouts = "^1.2"
|
||||||
|
pytest-randomly = "^3.15"
|
||||||
|
pytest-split = "^0.8"
|
||||||
|
pytest-freezegun = "^0.4"
|
||||||
|
pytest-socket = "^0.6"
|
||||||
|
assertpy = "^1.1"
|
||||||
|
coverage = "^7.3"
|
||||||
|
|
||||||
|
safety = "^2.3"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
requires = ["poetry-core>=1.0.0"]
|
||||||
|
655
requirements.txt
655
requirements.txt
@ -1,307 +1,348 @@
|
|||||||
aiohttp==3.8.5 ; python_full_version == "3.11.3"
|
aiohttp==3.8.5 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
aiosignal==1.3.1 ; python_full_version == "3.11.3"
|
aiosignal==1.3.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
alembic==1.11.3 ; python_full_version == "3.11.3"
|
alembic==1.11.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
altgraph==0.17.3 ; python_full_version == "3.11.3"
|
altgraph==0.17.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
amqp==5.1.1 ; python_full_version == "3.11.3"
|
amqp==5.1.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
anyio==3.7.1 ; python_full_version == "3.11.3"
|
annotated-types==0.5.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
appnope==0.1.3 ; sys_platform == "darwin" and python_full_version == "3.11.3"
|
anyio==3.7.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
arrow==1.2.3 ; python_full_version == "3.11.3"
|
appnope==0.1.3 ; python_version >= "3.11" and python_version < "3.12" and sys_platform == "darwin"
|
||||||
asgiref==3.7.2 ; python_full_version == "3.11.3"
|
arrow==1.2.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
asttokens==2.2.1 ; python_full_version == "3.11.3"
|
asgiref==3.7.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
async-timeout==4.0.3 ; python_full_version == "3.11.3"
|
assertpy==1.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
attrs==23.1.0 ; python_full_version == "3.11.3"
|
astroid==2.15.6 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
backcall==0.2.0 ; python_full_version == "3.11.3"
|
asttokens==2.2.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
bcrypt==4.0.1 ; python_full_version == "3.11.3"
|
async-timeout==4.0.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
billiard==4.1.0 ; python_full_version == "3.11.3"
|
attrs==23.1.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
binaryornot==0.4.4 ; python_full_version == "3.11.3"
|
autoflake==2.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
black==22.12.0 ; python_full_version == "3.11.3"
|
backcall==0.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
celery==5.3.1 ; python_full_version == "3.11.3"
|
bcrypt==4.0.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
certifi==2023.7.22 ; python_full_version == "3.11.3"
|
billiard==4.1.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
cffi==1.15.1 ; os_name == "nt" and implementation_name != "pypy" and python_full_version == "3.11.3"
|
binaryornot==0.4.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
cfgv==3.4.0 ; python_full_version == "3.11.3"
|
black==23.7.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
chardet==5.2.0 ; python_full_version == "3.11.3"
|
celery==5.3.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
charset-normalizer==3.2.0 ; python_full_version == "3.11.3"
|
certifi==2023.7.22 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
click-didyoumean==0.3.0 ; python_full_version == "3.11.3"
|
cffi==1.15.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
click-plugins==1.1.1 ; python_full_version == "3.11.3"
|
cfgv==3.4.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
click-repl==0.3.0 ; python_full_version == "3.11.3"
|
chardet==5.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
click==8.1.7 ; python_full_version == "3.11.3"
|
charset-normalizer==3.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
colorama==0.4.6 ; python_full_version == "3.11.3" and (platform_system == "Windows" or sys_platform == "win32")
|
click-didyoumean==0.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
cookiecutter==2.3.0 ; python_full_version == "3.11.3"
|
click-plugins==1.1.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
coverage==7.3.0 ; python_full_version == "3.11.3"
|
click-repl==0.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
coverage[toml]==7.3.0 ; python_full_version == "3.11.3"
|
click==8.1.7 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
decorator==5.1.1 ; python_full_version == "3.11.3"
|
colorama==0.4.6 ; python_version >= "3.11" and python_version < "3.12" and (platform_system == "Windows" or sys_platform == "win32")
|
||||||
distlib==0.3.7 ; python_full_version == "3.11.3"
|
cookiecutter==2.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
django==4.2.4 ; python_full_version == "3.11.3"
|
coverage==7.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
dparse==0.6.3 ; python_full_version == "3.11.3"
|
coverage[toml]==7.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
easyprocess==1.1 ; python_full_version == "3.11.3"
|
cryptography==41.0.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
entrypoint2==1.1 ; python_full_version == "3.11.3"
|
decorator==5.1.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
exceptiongroup==1.1.3 ; python_full_version == "3.11.3"
|
defusedxml==0.7.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
executing==1.2.0 ; python_full_version == "3.11.3"
|
distlib==0.3.7 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
factory-boy==3.3.0 ; python_full_version == "3.11.3"
|
django==4.2.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
faker==16.9.0 ; python_full_version == "3.11.3"
|
dparse==0.6.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
fastapi==0.89.1 ; python_full_version == "3.11.3"
|
easyprocess==1.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
filelock==3.12.2 ; python_full_version == "3.11.3"
|
entrypoint2==1.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
flake8==6.1.0 ; python_full_version == "3.11.3"
|
exceptiongroup==1.1.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
frozenlist==1.4.0 ; python_full_version == "3.11.3"
|
executing==1.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
greenlet==2.0.2 ; python_full_version == "3.11.3" and (platform_machine == "win32" or platform_machine == "WIN32" or platform_machine == "AMD64" or platform_machine == "amd64" or platform_machine == "x86_64" or platform_machine == "ppc64le" or platform_machine == "aarch64")
|
factory-boy==3.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
gunicorn==20.1.0 ; python_full_version == "3.11.3"
|
faker==19.3.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
h11==0.14.0 ; python_full_version == "3.11.3"
|
fastapi==0.101.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
httpcore==0.16.3 ; python_full_version == "3.11.3"
|
filelock==3.12.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
httpx==0.23.3 ; python_full_version == "3.11.3"
|
flake8-aaa==0.16.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
identify==2.5.27 ; python_full_version == "3.11.3"
|
flake8-annotations-complexity==0.0.8 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
idna==3.4 ; python_full_version == "3.11.3"
|
flake8-comments==0.1.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
iniconfig==2.0.0 ; python_full_version == "3.11.3"
|
flake8-deprecated==2.0.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
ipython==8.14.0 ; python_full_version == "3.11.3"
|
flake8-jira-todo-checker==0.6.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
jedi==0.19.0 ; python_full_version == "3.11.3"
|
flake8-mock==0.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
jeepney==0.8.0 ; python_full_version == "3.11.3" and platform_system == "Linux"
|
flake8-newspaper-style==0.4.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
jinja2==3.1.2 ; python_full_version == "3.11.3"
|
flake8-noqa==1.3.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
kombu==5.3.1 ; python_full_version == "3.11.3"
|
flake8-useless-assert==0.4.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
loguru==0.6.0 ; python_full_version == "3.11.3"
|
flake8-variables-names==0.0.6 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
macholib==1.16.2 ; sys_platform == "darwin" and python_full_version == "3.11.3"
|
flake8-warnings==0.4.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
mako==1.2.4 ; python_full_version == "3.11.3"
|
flake8==6.1.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
markdown-it-py==3.0.0 ; python_full_version == "3.11.3"
|
freezegun==1.2.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
markupsafe==2.1.3 ; python_full_version == "3.11.3"
|
frozenlist==1.4.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
matplotlib-inline==0.1.6 ; python_full_version == "3.11.3"
|
greenlet==2.0.2 ; python_version >= "3.11" and python_version < "3.12" and (platform_machine == "aarch64" or platform_machine == "ppc64le" or platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "AMD64" or platform_machine == "win32" or platform_machine == "WIN32")
|
||||||
mccabe==0.7.0 ; python_full_version == "3.11.3"
|
gunicorn==21.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
mdurl==0.1.2 ; python_full_version == "3.11.3"
|
h11==0.14.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
mouseinfo==0.1.0 ; python_full_version == "3.11.3"
|
httpcore==0.17.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
mss==9.0.1 ; python_full_version == "3.11.3"
|
httpx==0.24.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
multidict==6.0.4 ; python_full_version == "3.11.3"
|
identify==2.5.27 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
mypy-extensions==1.0.0 ; python_full_version == "3.11.3"
|
idna==3.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
mypy==0.991 ; python_full_version == "3.11.3"
|
iniconfig==2.0.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
nodeenv==1.8.0 ; python_full_version == "3.11.3"
|
ipython==8.14.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
numpy==1.25.2 ; python_full_version == "3.11.3"
|
jedi==0.19.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
orjson==3.9.5 ; python_full_version == "3.11.3"
|
jeepney==0.8.0 ; python_version >= "3.11" and platform_system == "Linux" and python_version < "3.12"
|
||||||
outcome==1.2.0 ; python_full_version == "3.11.3"
|
jinja2==3.1.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
packaging==21.3 ; python_full_version == "3.11.3"
|
jira==2.0.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
parso==0.8.3 ; python_full_version == "3.11.3"
|
kombu==5.3.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pathspec==0.11.2 ; python_full_version == "3.11.3"
|
lazy-object-proxy==1.9.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pefile==2023.2.7 ; sys_platform == "win32" and python_full_version == "3.11.3"
|
loguru==0.7.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pexpect==4.8.0 ; sys_platform != "win32" and python_full_version == "3.11.3"
|
macholib==1.16.2 ; python_version >= "3.11" and python_version < "3.12" and sys_platform == "darwin"
|
||||||
pickleshare==0.7.5 ; python_full_version == "3.11.3"
|
mako==1.2.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pillow==9.5.0 ; python_full_version == "3.11.3"
|
markdown-it-py==3.0.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
platformdirs==3.10.0 ; python_full_version == "3.11.3"
|
markupsafe==2.1.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pluggy==1.2.0 ; python_full_version == "3.11.3"
|
matplotlib-inline==0.1.6 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pre-commit==2.21.0 ; python_full_version == "3.11.3"
|
mccabe==0.7.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
prompt-toolkit==3.0.39 ; python_full_version == "3.11.3"
|
mdurl==0.1.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
psycopg2-binary==2.9.7 ; python_full_version == "3.11.3"
|
mouseinfo==0.1.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
ptyprocess==0.7.0 ; sys_platform != "win32" and python_full_version == "3.11.3"
|
mss==9.0.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pure-eval==0.2.2 ; python_full_version == "3.11.3"
|
multidict==6.0.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyautogui==0.9.54 ; python_full_version == "3.11.3"
|
mypy-extensions==1.0.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pycodestyle==2.11.0 ; python_full_version == "3.11.3"
|
mypy==1.5.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pycparser==2.21 ; python_full_version == "3.11.3" and os_name == "nt" and implementation_name != "pypy"
|
nodeenv==1.8.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pydantic==1.10.12 ; python_full_version == "3.11.3"
|
numpy==1.25.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyflakes==3.1.0 ; python_full_version == "3.11.3"
|
oauthlib==3.2.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pygetwindow==0.0.9 ; python_full_version == "3.11.3"
|
oauthlib[signedtoken]==3.2.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pygments==2.16.1 ; python_full_version == "3.11.3"
|
orjson==3.9.5 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyinstaller-hooks-contrib==2023.7 ; python_full_version == "3.11.3"
|
outcome==1.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyinstaller==5.13.0 ; python_full_version == "3.11.3"
|
packaging==23.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pymsgbox==1.0.9 ; python_full_version == "3.11.3"
|
parso==0.8.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-core==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pathspec==0.11.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-accessibility==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pbr==5.11.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-accounts==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "12.0"
|
pefile==2023.2.7 ; python_version >= "3.11" and python_version < "3.12" and sys_platform == "win32"
|
||||||
pyobjc-framework-addressbook==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pexpect==4.8.0 ; python_version >= "3.11" and python_version < "3.12" and sys_platform != "win32"
|
||||||
pyobjc-framework-adservices==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pickleshare==0.7.5 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-adsupport==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "18.0"
|
pillow==10.0.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-applescriptkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
platformdirs==3.10.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-applescriptobjc==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "10.0"
|
pluggy==1.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-applicationservices==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pprintpp==0.4.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-apptrackingtransparency==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pre-commit==3.3.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-audiovideobridging==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "12.0"
|
prompt-toolkit==3.0.39 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-authenticationservices==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
psycopg2-binary==2.9.7 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-automaticassessmentconfiguration==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
ptyprocess==0.7.0 ; python_version >= "3.11" and python_version < "3.12" and sys_platform != "win32"
|
||||||
pyobjc-framework-automator==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pure-eval==0.2.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-avfoundation==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "11.0"
|
py==1.11.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-avkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "13.0"
|
pyautogui==0.9.54 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-avrouting==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "22.0"
|
pycodestyle==2.11.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-backgroundassets==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "22.0"
|
pycparser==2.21 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-businesschat==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "18.0"
|
pydantic-core==2.6.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-calendarstore==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "9.0"
|
pydantic==2.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-callkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyflakes==3.1.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-cfnetwork==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pygetwindow==0.0.9 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-classkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pygments==2.16.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-cloudkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "14.0"
|
pyinstaller-hooks-contrib==2023.7 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-cocoa==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyinstaller==5.13.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-collaboration==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "9.0"
|
pyjwt==2.8.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-colorsync==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "17.0"
|
pymsgbox==1.0.9 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
pyobjc-framework-contacts==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "15.0"
|
pyobjc-core==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-contactsui==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "15.0"
|
pyobjc-framework-accessibility==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-coreaudio==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-accounts==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "12.0"
|
||||||
pyobjc-framework-coreaudiokit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-addressbook==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-corebluetooth==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "14.0"
|
pyobjc-framework-adservices==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-coredata==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-adsupport==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "18.0"
|
||||||
pyobjc-framework-corehaptics==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-applescriptkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-corelocation==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "10.0"
|
pyobjc-framework-applescriptobjc==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "10.0"
|
||||||
pyobjc-framework-coremedia==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "11.0"
|
pyobjc-framework-applicationservices==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-coremediaio==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "11.0"
|
pyobjc-framework-apptrackingtransparency==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-coremidi==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-audiovideobridging==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "12.0"
|
||||||
pyobjc-framework-coreml==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "17.0"
|
pyobjc-framework-authenticationservices==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-coremotion==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-automaticassessmentconfiguration==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-coreservices==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-automator==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-corespotlight==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "17.0"
|
pyobjc-framework-avfoundation==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "11.0"
|
||||||
pyobjc-framework-coretext==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-avkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "13.0"
|
||||||
pyobjc-framework-corewlan==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "10.0"
|
pyobjc-framework-avrouting==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "22.0"
|
||||||
pyobjc-framework-cryptotokenkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "14.0"
|
pyobjc-framework-backgroundassets==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "22.0"
|
||||||
pyobjc-framework-datadetection==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "21.0"
|
pyobjc-framework-businesschat==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "18.0"
|
||||||
pyobjc-framework-devicecheck==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-calendarstore==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "9.0"
|
||||||
pyobjc-framework-dictionaryservices==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "9.0"
|
pyobjc-framework-callkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-discrecording==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-cfnetwork==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-discrecordingui==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-classkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-diskarbitration==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-cloudkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "14.0"
|
||||||
pyobjc-framework-dvdplayback==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-cocoa==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-eventkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "12.0"
|
pyobjc-framework-collaboration==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "9.0"
|
||||||
pyobjc-framework-exceptionhandling==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-colorsync==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "17.0"
|
||||||
pyobjc-framework-executionpolicy==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-contacts==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "15.0"
|
||||||
pyobjc-framework-extensionkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "22.0"
|
pyobjc-framework-contactsui==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "15.0"
|
||||||
pyobjc-framework-externalaccessory==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "17.0"
|
pyobjc-framework-coreaudio==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-fileprovider==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-coreaudiokit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-fileproviderui==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-corebluetooth==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "14.0"
|
||||||
pyobjc-framework-findersync==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "14.0"
|
pyobjc-framework-coredata==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-fsevents==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-corehaptics==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-gamecenter==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "12.0"
|
pyobjc-framework-corelocation==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "10.0"
|
||||||
pyobjc-framework-gamecontroller==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "13.0"
|
pyobjc-framework-coremedia==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "11.0"
|
||||||
pyobjc-framework-gamekit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "12.0"
|
pyobjc-framework-coremediaio==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "11.0"
|
||||||
pyobjc-framework-gameplaykit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "15.0"
|
pyobjc-framework-coremidi==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-healthkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "22.0"
|
pyobjc-framework-coreml==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "17.0"
|
||||||
pyobjc-framework-imagecapturecore==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "10.0"
|
pyobjc-framework-coremotion==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-imserviceplugin==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "11.0"
|
pyobjc-framework-coreservices==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-inputmethodkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "9.0"
|
pyobjc-framework-corespotlight==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "17.0"
|
||||||
pyobjc-framework-installerplugins==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-coretext==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-instantmessage==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "9.0"
|
pyobjc-framework-corewlan==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "10.0"
|
||||||
pyobjc-framework-intents==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "16.0"
|
pyobjc-framework-cryptotokenkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "14.0"
|
||||||
pyobjc-framework-intentsui==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "21.0"
|
pyobjc-framework-datadetection==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "21.0"
|
||||||
pyobjc-framework-iobluetooth==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-devicecheck==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-iobluetoothui==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-dictionaryservices==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "9.0"
|
||||||
pyobjc-framework-iosurface==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "10.0"
|
pyobjc-framework-discrecording==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-ituneslibrary==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "10.0"
|
pyobjc-framework-discrecordingui==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-kernelmanagement==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyobjc-framework-diskarbitration==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-latentsemanticmapping==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-dvdplayback==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-launchservices==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-eventkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "12.0"
|
||||||
pyobjc-framework-libdispatch==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "12.0"
|
pyobjc-framework-exceptionhandling==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-libxpc==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "12.0"
|
pyobjc-framework-executionpolicy==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-linkpresentation==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-extensionkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "22.0"
|
||||||
pyobjc-framework-localauthentication==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "14.0"
|
pyobjc-framework-externalaccessory==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "17.0"
|
||||||
pyobjc-framework-localauthenticationembeddedui==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "21.0"
|
pyobjc-framework-fileprovider==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-mailkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "21.0"
|
pyobjc-framework-fileproviderui==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-mapkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "13.0"
|
pyobjc-framework-findersync==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "14.0"
|
||||||
pyobjc-framework-mediaaccessibility==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "13.0"
|
pyobjc-framework-fsevents==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-medialibrary==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "13.0"
|
pyobjc-framework-gamecenter==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "12.0"
|
||||||
pyobjc-framework-mediaplayer==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "16.0"
|
pyobjc-framework-gamecontroller==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "13.0"
|
||||||
pyobjc-framework-mediatoolbox==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "13.0"
|
pyobjc-framework-gamekit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "12.0"
|
||||||
pyobjc-framework-metal==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "15.0"
|
pyobjc-framework-gameplaykit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "15.0"
|
||||||
pyobjc-framework-metalfx==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "22.0"
|
pyobjc-framework-healthkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "22.0"
|
||||||
pyobjc-framework-metalkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "15.0"
|
pyobjc-framework-imagecapturecore==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "10.0"
|
||||||
pyobjc-framework-metalperformanceshaders==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "17.0"
|
pyobjc-framework-imserviceplugin==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "11.0"
|
||||||
pyobjc-framework-metalperformanceshadersgraph==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyobjc-framework-inputmethodkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "9.0"
|
||||||
pyobjc-framework-metrickit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "21.0"
|
pyobjc-framework-installerplugins==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-mlcompute==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyobjc-framework-instantmessage==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "9.0"
|
||||||
pyobjc-framework-modelio==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "15.0"
|
pyobjc-framework-intents==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "16.0"
|
||||||
pyobjc-framework-multipeerconnectivity==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "14.0"
|
pyobjc-framework-intentsui==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "21.0"
|
||||||
pyobjc-framework-naturallanguage==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "18.0"
|
pyobjc-framework-iobluetooth==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-netfs==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "10.0"
|
pyobjc-framework-iobluetoothui==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-network==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "18.0"
|
pyobjc-framework-iosurface==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "10.0"
|
||||||
pyobjc-framework-networkextension==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "15.0"
|
pyobjc-framework-ituneslibrary==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "10.0"
|
||||||
pyobjc-framework-notificationcenter==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "14.0"
|
pyobjc-framework-kernelmanagement==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-opendirectory==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "10.0"
|
pyobjc-framework-latentsemanticmapping==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-osakit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-launchservices==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-oslog==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-libdispatch==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "12.0"
|
||||||
pyobjc-framework-passkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyobjc-framework-libxpc==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "12.0"
|
||||||
pyobjc-framework-pencilkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-linkpresentation==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-phase==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "21.0"
|
pyobjc-framework-localauthentication==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "14.0"
|
||||||
pyobjc-framework-photos==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "15.0"
|
pyobjc-framework-localauthenticationembeddedui==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "21.0"
|
||||||
pyobjc-framework-photosui==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "15.0"
|
pyobjc-framework-mailkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "21.0"
|
||||||
pyobjc-framework-preferencepanes==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-mapkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "13.0"
|
||||||
pyobjc-framework-pubsub==9.2 ; platform_release >= "9.0" and platform_release < "18.0" and platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-mediaaccessibility==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "13.0"
|
||||||
pyobjc-framework-pushkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-medialibrary==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "13.0"
|
||||||
pyobjc-framework-quartz==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-mediaplayer==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "16.0"
|
||||||
pyobjc-framework-quicklookthumbnailing==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-mediatoolbox==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "13.0"
|
||||||
pyobjc-framework-replaykit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyobjc-framework-metal==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "15.0"
|
||||||
pyobjc-framework-safariservices==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "16.0"
|
pyobjc-framework-metalfx==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "22.0"
|
||||||
pyobjc-framework-safetykit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "22.0"
|
pyobjc-framework-metalkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "15.0"
|
||||||
pyobjc-framework-scenekit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "11.0"
|
pyobjc-framework-metalperformanceshaders==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "17.0"
|
||||||
pyobjc-framework-screencapturekit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "21.4"
|
pyobjc-framework-metalperformanceshadersgraph==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-screensaver==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-metrickit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "21.0"
|
||||||
pyobjc-framework-screentime==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyobjc-framework-mlcompute==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-scriptingbridge==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "9.0"
|
pyobjc-framework-modelio==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "15.0"
|
||||||
pyobjc-framework-searchkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-multipeerconnectivity==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "14.0"
|
||||||
pyobjc-framework-security==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-naturallanguage==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "18.0"
|
||||||
pyobjc-framework-securityfoundation==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-netfs==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "10.0"
|
||||||
pyobjc-framework-securityinterface==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-network==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "18.0"
|
||||||
pyobjc-framework-servicemanagement==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "10.0"
|
pyobjc-framework-networkextension==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "15.0"
|
||||||
pyobjc-framework-sharedwithyou==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "22.0"
|
pyobjc-framework-notificationcenter==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "14.0"
|
||||||
pyobjc-framework-sharedwithyoucore==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "22.0"
|
pyobjc-framework-opendirectory==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "10.0"
|
||||||
pyobjc-framework-shazamkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "21.0"
|
pyobjc-framework-osakit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-social==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "12.0"
|
pyobjc-framework-oslog==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-soundanalysis==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-passkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-speech==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-pencilkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-spritekit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "13.0"
|
pyobjc-framework-phase==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "21.0"
|
||||||
pyobjc-framework-storekit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "11.0"
|
pyobjc-framework-photos==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "15.0"
|
||||||
pyobjc-framework-syncservices==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-photosui==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "15.0"
|
||||||
pyobjc-framework-systemconfiguration==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-preferencepanes==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-systemextensions==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "19.0"
|
pyobjc-framework-pubsub==9.2 ; platform_release >= "9.0" and platform_release < "18.0" and python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-threadnetwork==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "22.0"
|
pyobjc-framework-pushkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-uniformtypeidentifiers==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyobjc-framework-quartz==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc-framework-usernotifications==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "18.0"
|
pyobjc-framework-quicklookthumbnailing==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pyobjc-framework-usernotificationsui==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyobjc-framework-replaykit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyobjc-framework-videosubscriberaccount==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "18.0"
|
pyobjc-framework-safariservices==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "16.0"
|
||||||
pyobjc-framework-videotoolbox==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "12.0"
|
pyobjc-framework-safetykit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "22.0"
|
||||||
pyobjc-framework-virtualization==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "20.0"
|
pyobjc-framework-scenekit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "11.0"
|
||||||
pyobjc-framework-vision==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3" and platform_release >= "17.0"
|
pyobjc-framework-screencapturekit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "21.4"
|
||||||
pyobjc-framework-webkit==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-screensaver==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyobjc==9.2 ; platform_system == "Darwin" and python_full_version == "3.11.3"
|
pyobjc-framework-screentime==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
pyparsing==3.1.1 ; python_full_version == "3.11.3"
|
pyobjc-framework-scriptingbridge==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "9.0"
|
||||||
pyperclip==1.8.2 ; python_full_version == "3.11.3"
|
pyobjc-framework-searchkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyqt6-qt6==6.5.2 ; python_full_version == "3.11.3"
|
pyobjc-framework-security==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyqt6-sip==13.5.2 ; python_full_version == "3.11.3"
|
pyobjc-framework-securityfoundation==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyqt6==6.5.2 ; python_full_version == "3.11.3"
|
pyobjc-framework-securityinterface==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pyrect==0.2.0 ; python_full_version == "3.11.3"
|
pyobjc-framework-servicemanagement==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "10.0"
|
||||||
pyscreenshot==3.1 ; python_full_version == "3.11.3"
|
pyobjc-framework-sharedwithyou==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "22.0"
|
||||||
pyscreeze==0.1.29 ; python_full_version == "3.11.3"
|
pyobjc-framework-sharedwithyoucore==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "22.0"
|
||||||
pysocks==1.7.1 ; python_full_version == "3.11.3"
|
pyobjc-framework-shazamkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "21.0"
|
||||||
pytest-cov==4.1.0 ; python_full_version == "3.11.3"
|
pyobjc-framework-social==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "12.0"
|
||||||
pytest==7.4.0 ; python_full_version == "3.11.3"
|
pyobjc-framework-soundanalysis==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
python-dateutil==2.8.2 ; python_full_version == "3.11.3"
|
pyobjc-framework-speech==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
python-decouple==3.8 ; python_full_version == "3.11.3"
|
pyobjc-framework-spritekit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "13.0"
|
||||||
python-slugify==8.0.1 ; python_full_version == "3.11.3"
|
pyobjc-framework-storekit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "11.0"
|
||||||
python3-xlib==0.15 ; platform_system == "Linux" and python_full_version == "3.11.3"
|
pyobjc-framework-syncservices==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pytweening==1.0.7 ; python_full_version == "3.11.3"
|
pyobjc-framework-systemconfiguration==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
pytz==2022.7.1 ; python_full_version == "3.11.3"
|
pyobjc-framework-systemextensions==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "19.0"
|
||||||
pywin32-ctypes==0.2.2 ; sys_platform == "win32" and python_full_version == "3.11.3"
|
pyobjc-framework-threadnetwork==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "22.0"
|
||||||
pyyaml==6.0.1 ; python_full_version == "3.11.3"
|
pyobjc-framework-uniformtypeidentifiers==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
redis[asyncio]==4.6.0 ; python_full_version == "3.11.3"
|
pyobjc-framework-usernotifications==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "18.0"
|
||||||
requests==2.31.0 ; python_full_version == "3.11.3"
|
pyobjc-framework-usernotificationsui==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
rfc3986[idna2008]==1.5.0 ; python_full_version == "3.11.3"
|
pyobjc-framework-videosubscriberaccount==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "18.0"
|
||||||
rich==13.5.2 ; python_full_version == "3.11.3"
|
pyobjc-framework-videotoolbox==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "12.0"
|
||||||
ruamel-yaml-clib==0.2.7 ; platform_python_implementation == "CPython" and python_full_version == "3.11.3"
|
pyobjc-framework-virtualization==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "20.0"
|
||||||
ruamel-yaml==0.17.32 ; python_full_version == "3.11.3"
|
pyobjc-framework-vision==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin" and platform_release >= "17.0"
|
||||||
safety==2.3.5 ; python_full_version == "3.11.3"
|
pyobjc-framework-webkit==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
selenium==4.11.2 ; python_full_version == "3.11.3"
|
pyobjc==9.2 ; python_version >= "3.11" and python_version < "3.12" and platform_system == "Darwin"
|
||||||
setuptools==68.1.2 ; python_full_version == "3.11.3"
|
pyperclip==1.8.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
simple-term-menu==1.6.1 ; python_full_version == "3.11.3"
|
pyqt6-qt6==6.5.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
six==1.16.0 ; python_full_version == "3.11.3"
|
pyqt6-sip==13.5.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
sniffio==1.3.0 ; python_full_version == "3.11.3"
|
pyqt6==6.5.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
sortedcontainers==2.4.0 ; python_full_version == "3.11.3"
|
pyrect==0.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
sqlalchemy-utils==0.38.3 ; python_full_version == "3.11.3"
|
pyscreenshot==3.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
sqlalchemy==1.4.49 ; python_full_version == "3.11.3"
|
pyscreeze==0.1.29 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
sqlparse==0.4.4 ; python_full_version == "3.11.3"
|
pysocks==1.7.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
stack-data==0.6.2 ; python_full_version == "3.11.3"
|
pytest-asyncio==0.21.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
starlette==0.22.0 ; python_full_version == "3.11.3"
|
pytest-clarity==1.0.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
termcolor==2.3.0 ; python_full_version == "3.11.3"
|
pytest-cov==4.1.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
text-unidecode==1.3 ; python_full_version == "3.11.3"
|
pytest-deadfixtures==2.2.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
traitlets==5.9.0 ; python_full_version == "3.11.3"
|
pytest-freezegun==0.4.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
trio-websocket==0.10.3 ; python_full_version == "3.11.3"
|
pytest-html==3.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
trio==0.22.2 ; python_full_version == "3.11.3"
|
pytest-metadata==3.0.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
typing-extensions==4.7.1 ; python_full_version == "3.11.3"
|
pytest-mock==3.11.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
tzdata==2023.3 ; python_full_version == "3.11.3"
|
pytest-randomly==3.15.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
urllib3==2.0.4 ; python_full_version == "3.11.3"
|
pytest-repeat==0.9.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
urllib3[socks]==2.0.4 ; python_full_version == "3.11.3"
|
pytest-socket==0.6.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
uvicorn==0.20.0 ; python_full_version == "3.11.3"
|
pytest-split==0.8.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
validators==0.20.0 ; python_full_version == "3.11.3"
|
pytest-sugar==0.9.7 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
vine==5.0.0 ; python_full_version == "3.11.3"
|
pytest-timeouts==1.2.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
virtualenv==20.24.3 ; python_full_version == "3.11.3"
|
pytest==7.4.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
wcwidth==0.2.6 ; python_full_version == "3.11.3"
|
python-dateutil==2.8.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
wget==3.2 ; python_full_version == "3.11.3"
|
python-decouple==3.8 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
win32-setctime==1.1.0 ; sys_platform == "win32" and python_full_version == "3.11.3"
|
python-slugify==8.0.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
wsproto==1.2.0 ; python_full_version == "3.11.3"
|
python3-xlib==0.15 ; platform_system == "Linux" and python_version >= "3.11" and python_version < "3.12"
|
||||||
yarl==1.9.2 ; python_full_version == "3.11.3"
|
pytweening==1.0.7 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
zipp==3.16.2 ; python_full_version == "3.11.3"
|
pytz==2023.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
pywin32-ctypes==0.2.2 ; python_version >= "3.11" and python_version < "3.12" and sys_platform == "win32"
|
||||||
|
pyyaml==6.0.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
redis[asyncio]==5.0.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
requests-oauthlib==1.3.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
requests-toolbelt==1.0.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
requests==2.31.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
rich==13.5.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
ruamel-yaml-clib==0.2.7 ; platform_python_implementation == "CPython" and python_version < "3.12" and python_version >= "3.11"
|
||||||
|
ruamel-yaml==0.17.32 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
safety==2.3.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
selenium==4.11.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
setuptools==68.1.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
simple-term-menu==1.6.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
six==1.16.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
sniffio==1.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
sortedcontainers==2.4.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
sqlalchemy-utils==0.41.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
sqlalchemy==2.0.20 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
sqlparse==0.4.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
stack-data==0.6.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
starlette==0.27.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
termcolor==2.3.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
text-unidecode==1.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
traitlets==5.9.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
trio-websocket==0.10.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
trio==0.22.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
typing-extensions==4.7.1 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
tzdata==2023.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
urllib3==2.0.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
urllib3[socks]==2.0.4 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
uvicorn==0.23.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
validators==0.21.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
vine==5.0.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
virtualenv==20.24.3 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
wcwidth==0.2.6 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
wget==3.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
win32-setctime==1.1.0 ; python_version >= "3.11" and python_version < "3.12" and sys_platform == "win32"
|
||||||
|
wrapt==1.15.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
wsproto==1.2.0 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
yarl==1.9.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
zipp==3.16.2 ; python_version >= "3.11" and python_version < "3.12"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user