0
--> Building on the Heroku-20 stack

-----> Using buildpack: heroku/python

-----> Python app detected

-----> No Python version was specified. Using the buildpack default: python-3.9.10

       To use a different version, see: https://devcenter.heroku.com/articles/python-runtimes

-----> Installing python-3.9.10

-----> Installing pip 21.3.1, setuptools 57.5.0 and wheel 0.37.0

-----> Installing SQLite3

-----> Installing requirements with pip

       ERROR: Could not find a version that satisfies the requirement apturl==0.5.2 (from versions: none)

       ERROR: No matching distribution found for apturl==0.5.2

 !     Push rejected, failed to compile Python app.

 !     Push failed
ChrisGPT was on strike
  • 127,765
  • 105
  • 273
  • 257

1 Answers1

0

This is because apturl is not a pip package that can be installed. A question similar to yours was answered before over here.

Furthermore, you can confirm that a package exists by searching it in pypi. If this is a package that's on a private repository, make sure to include the mirror in your pip configuration.

Lzak
  • 373
  • 1
  • 8