Django App не удается развернуть на AWS ElasticBeanstalk с pywin32==306

Я застрял здесь на 2 дня. Кто-нибудь, пожалуйста, помогите.

Приложение Django отлично работает локально, но не может развернуться на AWS ElasticBeanstalk с pywin32==306.

Платформа: Python 3.11 работает на 64-разрядном Amazon Linux 2023/4.0.8.

Я использую windows 11.

Версия Python: 3.12.2.

Версия PIP: 23.3.2.

Пожалуйста, найдите ниже требования.txt:

asgiref==3.7.2
awsebcli==3.20.10
beautifulsoup4==4.12.3
botocore==1.31.85
cement==2.8.2
certifi==2024.2.2
charset-normalizer==3.3.2
colorama==0.4.3
distlib==0.3.8
Django==4.2.10
django-bootstrap-v5==1.0.11
filelock==3.13.1
idna==3.6
jmespath==1.0.1
pathspec==0.10.1
platformdirs==4.2.0
psycopg-binary==3.1.17
psycopg2-binary==2.9.9
pypiwin32==223
python-dateutil==2.8.2
pywin32==306
PyYAML==6.0.1
requests==2.31.0
semantic-version==2.8.5
setuptools==69.0.3
six==1.16.0
soupsieve==2.5
sqlparse==0.4.4
termcolor==1.1.0
tzdata==2023.3
urllib3==1.26.18
virtualenv==20.25.0
wcwidth==0.1.9
whitenoise==6.6.0

Получаем следующую ошибку:

2024/02/15 13:12:10.274129 [ERROR] An error occurred during execution of command [self-startup] - [InstallDependency]. Stop running the command. Error: fail to install dependencies with requirements.txt file with error Command /bin/sh -c /var/app/venv/staging-LQM1lest/bin/pip install -r requirements.txt failed with error exit status 1. Stderr:ERROR: Could not find a version that satisfies the requirement pywin32==306 (from versions: none)
ERROR: No matching distribution found for pywin32==306

Полный журнал AWS :

https://drive.google.com/file/d/1ZbS3aVnHS2fg8-e9QDihnhzuHxB_CPDf/view?usp=sharing

Я обновил PIP, а также попробовал pywin32==306;platform_system == "Windows", но тщетно.

Вернуться на верх