Heroku app push rejected, failed to compile python app, push failed [duplicate]

Я пытаюсь сделать сайт на django и столкнулся с этой проблемой, пожалуйста, скажите мне, как это исправить, если вам нужно больше информации, пожалуйста, скажите мне, я также должен упомянуть, что старые версии загружаются, но теперь я не могу продвигать новые версии на сайт

журнал сборки:

-----> Building on the Heroku-20 stack
-----> Using buildpack: heroku/python
-----> Python app detected
-----> Using Python version specified in runtime.txt
 !     Python has released a security update! Please consider upgrading to python-3.8.13
       Learn More: https://devcenter.heroku.com/articles/python-runtimes
-----> No change in requirements detected, installing from cache
-----> Using cached install of python-3.8.12
-----> Installing pip 22.0.4, setuptools 60.10.0 and wheel 0.37.1
-----> Installing SQLite3
-----> Installing requirements with pip
-----> $ python manage.py collectstatic --noinput
       Traceback (most recent call last):
         File "manage.py", line 22, in <module>
           main()
         File "manage.py", line 18, in main
           execute_from_command_line(sys.argv)
         File "/app/.heroku/python/lib/python3.8/site-packages/django/core/management/__init__.py", line 425, in execute_from_command_line
           utility.execute()
         File "/app/.heroku/python/lib/python3.8/site-packages/django/core/management/__init__.py", line 419, in execute
           self.fetch_command(subcommand).run_from_argv(self.argv)
         File "/app/.heroku/python/lib/python3.8/site-packages/django/core/management/base.py", line 373, in run_from_argv
           self.execute(*args, **cmd_options)
         File "/app/.heroku/python/lib/python3.8/site-packages/django/core/management/base.py", line 414, in execute
           self.check(tags=self.requires_system_checks)
         File "/app/.heroku/python/lib/python3.8/site-packages/django/core/management/base.py", line 488, in check
           raise SystemCheckError(msg)
       django.core.management.base.SystemCheckError: SystemCheckError: System check identified some issues:
       ERRORS:
       ?: (staticfiles.E002) The STATICFILES_DIRS setting should not contain the STATIC_ROOT setting.
 !     Error while running '$ python manage.py collectstatic --noinput'.
       See traceback above for details.
       You may need to update application code to resolve this error.
       Or, you can disable collectstatic for this application:
          $ heroku config:set DISABLE_COLLECTSTATIC=1
       https://devcenter.heroku.com/articles/django-assets
 !     Push rejected, failed to compile Python app.
 !     Push failed

Procfile:

web: gunicorn eduzec.wsgi --log-file -

requirements.txt:

asgiref==3.5.0
backports.zoneinfo==0.2.1
dj-database-url==0.5.0
Django==4.0.1
gunicorn==20.1.0
psycopg2-binary==2.9.3
sqlparse==0.4.2
whitenoise==5.3.0
django-crispy-forms==1.13.0
django-vote==2.3.0

недавнее приложение загружается, но я не могу продвигать новые версии сайта

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