kivy / buildozer

Generic Python packager for Android and iOS
https://buildozer.readthedocs.io
MIT License
1.65k stars 484 forks source link

python==3.9.5 #1325

Closed purushottam858 closed 1 year ago

purushottam858 commented 3 years ago

Versions

Description

why is this error occuring ..?

buildozer.spec

Command:


 buildozer android debug deploy run logcat

Spec file:


[app]

# (str) Title of your application
title = kApplication

# (str) Package name
package.name = myapp

# (str) Package domain (needed for android/ios packaging)
package.domain = org.test

# (str) Source code where the main.py live
source.dir = .

# (list) Source files to include (let empty to include all the files)
source.include_exts = 

# (list) List of inclusions using pattern matching
source.include_patterns = *

# (list) Source files to exclude (let empty to not exclude anything)
#source.exclude_exts = spec

# (list) List of directory to exclude (let empty to not exclude anything)
#source.exclude_dirs = tests, bin

# (list) List of exclusions using pattern matching
#source.exclude_patterns = license,images/*/*.jpg

# (str) Application versioning (method 1)
version = 0.1

# (str) Application versioning (method 2)
# version.regex = __version__ = ['"](.*)['"]
# version.filename = %(source.dir)s/main.py

# (list) Application requirements
# comma separated e.g. requirements = sqlite3,kivy
requirements = python==3.9.5 ,Kivy==2.0.0, kivymd==0.104.1, sdl2_ttf==2.0.15 ,  plyer, android ,pil,jnius  

# (str) Custom source folders for requirements
# Sets custom source for any requirements with recipes
# requirements.source.kivy = ../../kivy

# (list) Garden requirements
#garden_requirements = xcamera

# (str) Presplash of the application
#presplash.filename = %(source.dir)s/data/presplash.png

# (str) Icon of the application
#icon.filename = %(source.dir)s/data/icon.png

# (str) Supported orientation (one of landscape, sensorLandscape, portrait or all)
orientation =  all

# (list) List of service to declare
#services = NAME:ENTRYPOINT_TO_PY,NAME2:ENTRYPOINT2_TO_PY

#
# OSX Specific
#

#
# author = © Copyright Info

# change the major version of python used by the app
osx.python_version = 3

# Kivy version to use
osx.kivy_version = 1.9.1

#
# Android specific
#

# (bool) Indicate if the application should be fullscreen or not
fullscreen = 0

# (string) Presplash background color (for new android toolchain)
# Supported formats are: #RRGGBB #AARRGGBB or one of the following names:
# red, blue, green, black, white, gray, cyan, magenta, yellow, lightgray,
# darkgray, grey, lightgrey, darkgrey, aqua, fuchsia, lime, maroon, navy,
# olive, purple, silver, teal.
#android.presplash_color = #FFFFFF

# (list) Permissions
android.permissions = INTERNET, WRITE_EXTERNAL_STORAGE ,READ_EXTERNAL_STORAGE ,  ACCESS_NETWORK_STATE

# (int) Target Android API, should be as high as possible.
#android.api = 27
android.api = 27
# (int) Minimum API your APK will support.
#android.minapi = 21
android.minapi = 21
# (int) Android SDK version to use
#android.sdk = 20
android.sdk = 24
# (str) Android NDK version to use
#android.ndk = 19b
android.ndk = 19b
# (int) Android NDK API to use. This is the minimum API your app will support, it should usually match android.minapi.
#android.ndk_api = 21

# (bool) Use --private data storage (True) or --dir public storage (False)
#android.private_storage = True

# (str) Android NDK directory (if empty, it will be automatically downloaded.)
#android.ndk_path =

# (str) Android SDK directory (if empty, it will be automatically downloaded.)
#android.sdk_path =

# (str) ANT directory (if empty, it will be automatically downloaded.)
#android.ant_path =

# (bool) If True, then skip trying to update the Android sdk
# This can be useful to avoid excess Internet downloads or save time
# when an update is due and you just want to test/build your package
# android.skip_update = False

# (bool) If True, then automatically accept SDK license
# agreements. This is intended for automation only. If set to False,
# the default, you will be shown the license when first running
# buildozer.
# android.accept_sdk_license = False

# (str) Android entry point, default is ok for Kivy-based app
#android.entrypoint = org.renpy.android.PythonActivity

# (str) Android app theme, default is ok for Kivy-based app
# android.apptheme = "@android:style/Theme.NoTitleBar"

# (list) Pattern to whitelist for the whole project
#android.whitelist =

# (str) Path to a custom whitelist file
#android.whitelist_src =

# (str) Path to a custom blacklist file
#android.blacklist_src =

# (list) List of Java .jar files to add to the libs so that pyjnius can access
# their classes. Don't add jars that you do not need, since extra jars can slow
# down the build process. Allows wildcards matching, for example:
# OUYA-ODK/libs/*.jar
#android.add_jars = foo.jar,bar.jar,path/to/more/*.jar

# (list) List of Java files to add to the android project (can be java or a
# directory containing the files)
#android.add_src =

# (list) Android AAR archives to add (currently works only with sdl2_gradle
# bootstrap)
#android.add_aars = support-compat-28.0.0.aar

# (list) Gradle dependencies to add (currently works only with sdl2_gradle
# bootstrap)
#android.gradle_dependencies =
android.gradle_dependencies = 'com.google.firebase:firebase-ads:10.2.0'

# (list) add java compile options
# this can for example be necessary when importing certain java libraries using the 'android.gradle_dependencies' option
# see https://developer.android.com/studio/write/java8-support for further information
# android.add_compile_options = "sourceCompatibility = 1.8", "targetCompatibility = 1.8"

# (list) Gradle repositories to add {can be necessary for some android.gradle_dependencies}
# please enclose in double quotes 
# e.g. android.gradle_repositories = "maven { url 'https://kotlin.bintray.com/ktor' }"
#android.add_gradle_repositories =

# (list) packaging options to add 
# see https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.PackagingOptions.html
# can be necessary to solve conflicts in gradle_dependencies
# please enclose in double quotes 
# e.g. android.add_packaging_options = "exclude 'META-INF/common.kotlin_module'", "exclude 'META-INF/*.kotlin_module'"
#android.add_gradle_repositories =

# (list) Java classes to add as activities to the manifest.
#android.add_activities = com.example.ExampleActivity

# (str) OUYA Console category. Should be one of GAME or APP
# If you leave this blank, OUYA support will not be enabled
#android.ouya.category = GAME

# (str) Filename of OUYA Console icon. It must be a 732x412 png image.
#android.ouya.icon.filename = %(source.dir)s/data/ouya_icon.png

# (str) XML file to include as an intent filters in <activity> tag
#android.manifest.intent_filters =

# (str) launchMode to set for the main activity
#android.manifest.launch_mode = standard

# (list) Android additional libraries to copy into libs/armeabi
#android.add_libs_armeabi = libs/android/*.so
#android.add_libs_armeabi_v7a = libs/android-v7/*.so
#android.add_libs_arm64_v8a = libs/android-v8/*.so
#android.add_libs_x86 = libs/android-x86/*.so
#android.add_libs_mips = libs/android-mips/*.so

# (bool) Indicate whether the screen should stay on
# Don't forget to add the WAKE_LOCK permission if you set this to True
#android.wakelock = False

# (list) Android application meta-data to set (key=value format)
#android.meta_data =
android.meta_data = com.google.android.gms.ads.APPLICATION_ID=ca-app-pub-3940256099942544~3347511713

# (list) Android library project to add (will be added in the
# project.properties automatically.)
#android.library_references =

# (list) Android shared libraries which will be added to AndroidManifest.xml using <uses-library> tag
#android.uses_library =

# (str) Android logcat filters to use
#android.logcat_filters = *:S python:D

# (bool) Copy library instead of making a libpymodules.so
#android.copy_libs = 1

# (str) The Android arch to build for, choices: armeabi-v7a, arm64-v8a, x86, x86_64
android.arch = armeabi-v7a

# (int) overrides automatic versionCode computation (used in build.gradle)
# this is not the same as app version and should only be edited if you know what you're doing
# android.numeric_version = 1

#
# Python for android (p4a) specific
#

# (str) python-for-android fork to use, defaults to upstream (kivy)
#p4a.fork = <your username>

# (str) python-for-android branch to use, defaults to master
#p4a.branch = develop
p4a.branch = master

# (str) python-for-android git clone directory (if empty, it will be automatically cloned from github)
#p4a.source_dir =

# (str) The directory in which python-for-android should look for your own build recipes (if any)
#p4a.local_recipes =

# (str) Filename to the hook for p4a
#p4a.hook =

# (str) Bootstrap to use for android builds
# p4a.bootstrap = sdl2

# (int) port number to specify an explicit --port= p4a argument (eg for bootstrap flask)
#p4a.port =

#
# iOS specific
#

# (str) Path to a custom kivy-ios folder
#ios.kivy_ios_dir = ../kivy-ios
# Alternately, specify the URL and branch of a git checkout:
ios.kivy_ios_url = https://github.com/kivy/kivy-ios
ios.kivy_ios_branch = master

# Another platform dependency: ios-deploy
# Uncomment to use a custom checkout
#ios.ios_deploy_dir = ../ios_deploy
# Or specify URL and branch
ios.ios_deploy_url = https://github.com/phonegap/ios-deploy
ios.ios_deploy_branch = 1.7.0

# (str) Name of the certificate to use for signing the debug version
# Get a list of available identities: buildozer ios list_identities
#ios.codesign.debug = "iPhone Developer: <lastname> <firstname> (<hexstring>)"

# (str) Name of the certificate to use for signing the release version
#ios.codesign.release = %(ios.codesign.debug)s

[buildozer]

# (int) Log level (0 = error only, 1 = info, 2 = debug (with command output))
log_level = 2

# (int) Display warning if buildozer is run as root (0 = False, 1 = True)
warn_on_root = 1

# (str) Path to build artifact storage, absolute or relative to spec file
# build_dir = ./.buildozer

# (str) Path to build output (i.e. .apk, .ipa) storage
# bin_dir = ./bin

#    -----------------------------------------------------------------------------
#    List as sections
#
#    You can define all the "list" as [section:key].
#    Each line will be considered as a option to the list.
#    Let's take [app] / source.exclude_patterns.
#    Instead of doing:
#
#[app]
#source.exclude_patterns = license,data/audio/*.wav,data/images/original/*
#
#    This can be translated into:
#
#[app:source.exclude_patterns]
#license
#data/audio/*.wav
#data/images/original/*
#

#    -----------------------------------------------------------------------------
#    Profiles
#
#    You can extend section / key with a profile
#    For example, you want to deploy a demo version of your application without
#    HD content. You could first change the title to add "(demo)" in the name
#    and extend the excluded directories to remove the HD content.
#
#[app@demo]
#title = My Application (demo)
#
#[app:source.exclude_patterns@demo]
#images/hd/*
#
#    Then, invoke the command line with the "demo" profile:
#
#buildozer --profile demo android debug

Logs

I am getting this error on deploy .

ROR: No matching distribution found for python==3.9.5
Exception information:
Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 341, in resolve
    name, crit = self._merge_into_criterion(r, parent=None)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 173, in _merge_into_criterion
    raise RequirementsConflicted(criterion)
pip._vendor.resolvelib.resolvers.RequirementsConflicted: Requirements conflict: SpecifierRequirement('python==3.9.5')

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 127, in resolve
    result = self._result = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 473, in resolve
    state = resolution.resolve(requirements, max_rounds=max_rounds)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 343, in resolve
    raise ResolutionImpossible(e.criterion.information)
pip._vendor.resolvelib.resolvers.ResolutionImpossible: [RequirementInformation(requirement=SpecifierRequirement('python==3.9.5'), parent=None)]

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py", line 180, in _main
    status = self.run(options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py", line 204, in wrapper
    return func(self, options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py", line 318, in run
    requirement_set = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 136, in resolve
    raise error from e
pip._internal.exceptions.DistributionNotFound: No matching distribution found for python==3.9.5
Removed build tracker: '/tmp/pip-req-tracker-nz48dusi'

  STDERR:

Traceback (most recent call last):                                                                                                                                                   
  File "/usr/lib/python3.9/runpy.py", line 197, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "/usr/lib/python3.9/runpy.py", line 87, in _run_code
    exec(code, run_globals)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 1260, in <module>
    main()
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/entrypoints.py", line 18, in main
    ToolchainCL()
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 709, in __init__
    getattr(self, command)(args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 154, in wrapper_func
    build_dist_from_args(ctx, dist, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 213, in build_dist_from_args
    build_recipes(build_order, python_modules, ctx,
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/build.py", line 600, in build_recipes
    run_pymodules_install(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/build.py", line 820, in run_pymodules_install
    shprint(sh.bash, '-c', (
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/logger.py", line 167, in shprint
    for line in output:
  File "/home/purushottam2/Desktop/myupdateproject/lib/python3.9/site-packages/sh.py", line 953, in next
    self.wait()
  File "/home/purushottam2/Desktop/myupdateproject/lib/python3.9/site-packages/sh.py", line 879, in wait
    self.handle_command_exit_code(exit_code)
  File "/home/purushottam2/Desktop/myupdateproject/lib/python3.9/site-packages/sh.py", line 905, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /usr/bin/bash -c 'venv/bin/pip install -v --target '"'"'/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp'"'"' --no-deps -r requirements.txt'

  STDOUT:
Ignoring "sys._home = value" override
Using pip 21.1.1 from /home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip (python 3.8)
Non-user install due to --prefix or --target option
Created temporary directory: /tmp/pip-target-bbmtnx1c
Created temporary directory: /tmp/pip-ephem-wheel-cache-xej1gqxd
Created temporary directory: /tmp/pip-req-tracker-nz48dusi
Initialized build tracking at /tmp/pip-req-tracker-nz48dusi
Created build tracker: /tmp/pip-req-tracker-nz48dusi
Entered build tracker: /tmp/pip-req-tracker-nz48dusi
Created temporary directory: /tmp/pip-install-pmre20uf
1 location(s) to search for versions of certifi:
* https://pypi.org/simple/certifi/
Fetching project page and analyzing links: https://pypi.org/simple/certifi/
Getting page https://pypi.org/simple/certifi/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/certifi/" in the cache
Request header has "max_age" as 0, cache bypassed
Starting new HTTPS connection (1): pypi.org:443
https://pypi.org:443 "GET /simple/certifi/ HTTP/1.1" 304 0
  Found link https://files.pythonhosted.org/packages/55/bf/e1094f052b5932a452b12ac5a6c229f3d7dbf41a66cfc8d5832fe3fb6463/certifi-0.0.1.tar.gz#sha256=a6f0d79b2b63a43c71bc128929be3a17bdf5d0a5f74208d7ad9563b3bf8210e9 (from https://pypi.org/simple/certifi/), version: 0.0.1
  Found link https://files.pythonhosted.org/packages/0c/4d/6e036d6158e533499272f7b82d0ffa115ecc7c930994475b7bf8f4047489/certifi-0.0.2.tar.gz#sha256=678b7a44338228d55bc4569a575b4734bbbcb9da109328f3b10e3435ec6abdee (from https://pypi.org/simple/certifi/), version: 0.0.2
  Found link https://files.pythonhosted.org/packages/17/3d/7d037b5aadde37d95c067e5b26f064ae53f791201a89b5b38ee315409264/certifi-0.0.3.tar.gz#sha256=1418bce4a32cd409b9766a7c92556be4d23f287da581945be4076eea299fbeac (from https://pypi.org/simple/certifi/), version: 0.0.3
  Found link https://files.pythonhosted.org/packages/cd/b9/ad866737dfde6b459fa3188b13d249e50101fa06bab408e6d9e5029b6838/certifi-0.0.4.tar.gz#sha256=8aed314d0d133c70fd9c56ee13cabe0910c0f6ff423da266841512af0e3d68c4 (from https://pypi.org/simple/certifi/), version: 0.0.4
  Found link https://files.pythonhosted.org/packages/84/b9/a5aac1c71b154f18dad87b39e42a118a538ce4f95fe10f3f651b0c3d0ac2/certifi-0.0.5.tar.gz#sha256=c1c47a7545e39e19357d51c2e5291de158508024658d6860815359566ac65c02 (from https://pypi.org/simple/certifi/), version: 0.0.5
  Found link https://files.pythonhosted.org/packages/76/4a/92995898df84d15c42d49e38b814caa94502cbf28be9b9732703303f2107/certifi-0.0.6.tar.gz#sha256=e839718ce80daa9853b1f47a333757d4a22cdf422e2fd8de5e579d5634a89585 (from https://pypi.org/simple/certifi/), version: 0.0.6
  Found link https://files.pythonhosted.org/packages/43/10/aafebf9677ccec8b227f15eef20a4aac65fbff7f14fc9462f06855fecdd2/certifi-0.0.7.tar.gz#sha256=6dec7d3c6f3d4ed0a50fb15f8fd41c0bb1b17998eb8c103d0f34d61c19061e36 (from https://pypi.org/simple/certifi/), version: 0.0.7
  Found link https://files.pythonhosted.org/packages/38/70/d777da670969367780cb0cb66f43799e17e050dcdeb0fa4e26189519f9f2/certifi-0.0.8.tar.gz#sha256=46ecf5f7526a08cc1f8bc8232adf0cffce046f46ceff95539daec42ebc4849ef (from https://pypi.org/simple/certifi/), version: 0.0.8
  Found link https://files.pythonhosted.org/packages/eb/fe/3ba38b686003664a75c01c42c6f1be02f9837d007c0f15727e6f8f2040a3/certifi-1.0.0.tar.gz#sha256=d4f8e89c9e709f67221bf21231d0fa66a00d3712bcb69d4b5aef3705339c8dcd (from https://pypi.org/simple/certifi/), version: 1.0.0
  Found link https://files.pythonhosted.org/packages/4e/58/86422944e1f228a4e90c291388bf69675826c995f163b2894541365f1f0e/certifi-1.0.1-py2.py3-none-any.whl#sha256=44964ac783fca598e723da5fa2ef3631b5b2f94f445749bfc6043d4afb20de75 (from https://pypi.org/simple/certifi/), version: 1.0.1
  Found link https://files.pythonhosted.org/packages/ff/3a/ec07518540a090d463aa20c615a170d52a3633057fde480bd462883a0de2/certifi-1.0.1.tar.gz#sha256=f2c18c7edd349ec10378ef43ff16f81ae1d0af61d5d2858a8b383e8f6814a9cc (from https://pypi.org/simple/certifi/), version: 1.0.1
  Found link https://files.pythonhosted.org/packages/c1/ed/4a424a55f77679700452972e583393b64160583c80ffa893b4be9391f3ae/certifi-14.05.14.tar.gz#sha256=1e1bcbacd6357c151ae37cf0290dcc809721d32ce21fd6b7339568f3ddef1b69 (from https://pypi.org/simple/certifi/), version: 14.05.14
  Found link https://files.pythonhosted.org/packages/86/35/9758a67004a266047c779ae40a3d937869bfc6fc3422f6c606b8afbc9d23/certifi-2015.04.28-py2.py3-none-any.whl#sha256=268fa00c27de756d71663dd61f73a4a8d8727569bb1b474b2ce6020553826872 (from https://pypi.org/simple/certifi/), version: 2015.04.28
  Found link https://files.pythonhosted.org/packages/4a/41/52617061e93551d5c8041b70d35db395ad647cc356beb764cd9b278e3114/certifi-2015.04.28.tar.gz#sha256=99785e6cf715cdcde59dee05a676e99f04835a71e7ced201ca317401c322ba96 (from https://pypi.org/simple/certifi/), version: 2015.04.28
  Found link https://files.pythonhosted.org/packages/c6/aa/85432217f85f1553dc0926a3e00b48e00819b80097dd056e482c19766f11/certifi-2015.9.6-py2.py3-none-any.whl#sha256=499d154e26c642108248be45b4e09d3b978d2e7c6a72e0a147a2e81448a61a7d (from https://pypi.org/simple/certifi/), version: 2015.9.6
  Found link https://files.pythonhosted.org/packages/e2/ec/ab8442e4d6cf92ea4df67ed81e078bd6a9e092c96ffcd03dbd910e1eb389/certifi-2015.9.6.tar.gz#sha256=7e5646f75d2779719b3400c009e3461f921823e4592657f8e00fb2b6e14b8b92 (from https://pypi.org/simple/certifi/), version: 2015.9.6
  Found link https://files.pythonhosted.org/packages/cc/7f/fb45b6c47ff3a1e119b8fa0aec4a9d1812f0c9f774d877eca582065ef21e/certifi-2015.9.6.1-py2.py3-none-any.whl#sha256=4cbb1f8b30948895f36bb94402598506808833747e0a2e1ca5b1f152ff341da4 (from https://pypi.org/simple/certifi/), version: 2015.9.6.1
  Found link https://files.pythonhosted.org/packages/d6/8d/700b62e1cbcd0264450b8bb476757808ef2c3f6060ee552c3717d010b616/certifi-2015.9.6.1.tar.gz#sha256=f924457bd89178e565fe1b90359d90639f524e7da1a99988292474f52defbf34 (from https://pypi.org/simple/certifi/), version: 2015.9.6.1
  Found link https://files.pythonhosted.org/packages/58/41/b16d4787c30bfb27d608fd2383ab2a7823afa0491fa16df04336d7b7519b/certifi-2015.9.6.2-py2.py3-none-any.whl#sha256=7486e08ffd0a9bea8c66e76fd1f0f0150294c572e78cb16b14d8589beafd3564 (from https://pypi.org/simple/certifi/), version: 2015.9.6.2
  Found link https://files.pythonhosted.org/packages/63/71/422814652028afbff99347da9f3d102f53113a1d2389e255a2dde15c5d8d/certifi-2015.9.6.2.tar.gz#sha256=dc3a2b2d9d1033dbf27586366ae61b9d7c44d8c3a6f29694ffcbb0618ea7aea6 (from https://pypi.org/simple/certifi/), version: 2015.9.6.2
  Found link https://files.pythonhosted.org/packages/a5/2b/83904abc08c3d95808d098163b049e923cbf9fa04f6fa5c0f3750959da8e/certifi-2015.11.20-py2.py3-none-any.whl#sha256=12e141bb3e0f1b3ea4d5a8af804fc59ff94d5ece040cf8d22232ddf87eec096b (from https://pypi.org/simple/certifi/), version: 2015.11.20
  Found link https://files.pythonhosted.org/packages/c5/8a/d007319d95bd2424adb3f2a41ffb29de76f2c07b3dd5fd98f3651f9a14f5/certifi-2015.11.20.tar.gz#sha256=7168668372f07219439e82878b484d6216ff63224fd4e7ff4f39c56ad0b487de (from https://pypi.org/simple/certifi/), version: 2015.11.20
  Found link https://files.pythonhosted.org/packages/df/21/86903664789d010c7693523aa44cd6f96f9d60c7bc813761ff3db5fa8aad/certifi-2015.11.20.1-py2.py3-none-any.whl#sha256=ad86683448f7483d4147a64d96856e551734e594c4563747e9fbe2368df13d3f (from https://pypi.org/simple/certifi/), version: 2015.11.20.1
  Found link https://files.pythonhosted.org/packages/08/59/d39d98454a4fd2c9e0955590398bcfc4047f8e6dde00d7731cefdb32b403/certifi-2015.11.20.1.tar.gz#sha256=30b0a7354a1b32caa8b4705d3f5fb2dadefac7ba4bf8af8a2176869f93e38f16 (from https://pypi.org/simple/certifi/), version: 2015.11.20.1
  Found link https://files.pythonhosted.org/packages/db/60/1ed0106bde7b14b363b15b17cc308aad93ba57d3582570f3ad7180ae0fae/certifi-2016.2.28-py2.py3-none-any.whl#sha256=75c33d546e0a732a4606749cbadcd81929f30d8b814061ca93cde49933dbb860 (from https://pypi.org/simple/certifi/), version: 2016.2.28
  Found link https://files.pythonhosted.org/packages/5c/f8/f6c54727c74579c6bbe5926f5deb9677c5810a33e11da58d1a4e2d09d041/certifi-2016.2.28.tar.gz#sha256=5e8eccf95924658c97b990b50552addb64f55e1e3dfe4880456ac1f287dc79d0 (from https://pypi.org/simple/certifi/), version: 2016.2.28
  Found link https://files.pythonhosted.org/packages/65/da/116b7b175ecdb089406ec24238d1fe668b52d3f25e4e7ba88983807eac6a/certifi-2016.8.2-py2.py3-none-any.whl#sha256=c6290b32cfccf569a621d0449fcaf9283a3e0c77108bc808545b41c779d42e0a (from https://pypi.org/simple/certifi/), version: 2016.8.2
  Found link https://files.pythonhosted.org/packages/60/d8/e4dbd7239f1dd3854135949cc2cc8344602b1545a7929b7bf652ac69fbb6/certifi-2016.8.2.tar.gz#sha256=65ddc34fd9c8509851031d7075b8325393b87e6dbe5875a723959a20266d7a41 (from https://pypi.org/simple/certifi/), version: 2016.8.2
  Found link https://files.pythonhosted.org/packages/dd/ed/e9bf6a9dc79e23c68385c4ea692f0e9e1a7880518872564f88be013b552f/certifi-2016.8.8-py2.py3-none-any.whl#sha256=04f0e6677e6a5a64ba83ade859bcdda254c1ccf58545eb72bc2067f51a01873c (from https://pypi.org/simple/certifi/), version: 2016.8.8
  Found link https://files.pythonhosted.org/packages/41/bf/88a3269c7c95fc94a2c581c4b1b3d3ec21af7a268d6a3a4e54578adccfd6/certifi-2016.8.8.tar.gz#sha256=99864ed602d8a9d212e339b15ffa438895002eda7b7db20dca5309dac9605ae9 (from https://pypi.org/simple/certifi/), version: 2016.8.8
  Found link https://files.pythonhosted.org/packages/34/21/ebb383f944dfc3a14461ee021089da90477be919a5554117c184ae3d44be/certifi-2016.8.31-py2.py3-none-any.whl#sha256=172844a3e2896c924e6aa2657b2e56586a724f27edd0e9592be9353f3a3f6c73 (from https://pypi.org/simple/certifi/), version: 2016.8.31
  Found link https://files.pythonhosted.org/packages/1c/d1/0133a5084f0d17db0270c6061e824a11b0e417d743f5ff4c594f4090ed89/certifi-2016.8.31.tar.gz#sha256=f7708a42d86f29ccc7c8c4ff9d34a8d854d8d78eb2973d1f28406bb43d6b8919 (from https://pypi.org/simple/certifi/), version: 2016.8.31
  Found link https://files.pythonhosted.org/packages/a2/35/b7b457c95fdd661d4c179201e9e58a2181934695943b08ccfcba09284b4e/certifi-2016.9.26-py2.py3-none-any.whl#sha256=a60073d7bb5cb01671877efda875e8dab755b98baedfbb9b8b3d9be2d52ad022 (from https://pypi.org/simple/certifi/), version: 2016.9.26
  Found link https://files.pythonhosted.org/packages/4f/75/e1bc6e363a2c76f8d7e754c27c437dbe4086414e1d6d2f6b2a3e7846f22b/certifi-2016.9.26.tar.gz#sha256=8275aef1bbeaf05c53715bfc5d8569bd1e04ca1e8e69608cc52bcaac2604eb19 (from https://pypi.org/simple/certifi/), version: 2016.9.26
  Found link https://files.pythonhosted.org/packages/21/f7/7bb6b1c5ba1db21515950bc16b22cd7ef7d27024100f326a19921efd2ce0/certifi-2017.1.23-py2.py3-none-any.whl#sha256=f74a224a9860fd5a2e9757230a7ea3eba82d6d46914780abc18e70c8b58d4bf8 (from https://pypi.org/simple/certifi/), version: 2017.1.23
  Found link https://files.pythonhosted.org/packages/b6/fa/ca682d5ace0700008d246664e50db8d095d23750bb212c0086305450c276/certifi-2017.1.23.tar.gz#sha256=81877fb7ac126e9215dfb15bfef7115fdc30e798e0013065158eed0707fd99ce (from https://pypi.org/simple/certifi/), version: 2017.1.23
  Found link https://files.pythonhosted.org/packages/eb/01/c1f58987b777d6c4ec535b4e004a4a07bfc9db06f0c7533367ca6da8f2a6/certifi-2017.4.17-py2.py3-none-any.whl#sha256=f4318671072f030a33c7ca6acaef720ddd50ff124d1388e50c1bda4cbd6d7010 (from https://pypi.org/simple/certifi/), version: 2017.4.17
  Found link https://files.pythonhosted.org/packages/dd/0e/1e3b58c861d40a9ca2d7ea4ccf47271d4456ae4294c5998ad817bd1b4396/certifi-2017.4.17.tar.gz#sha256=f7527ebf7461582ce95f7a9e03dd141ce810d40590834f4ec20cddd54234c10a (from https://pypi.org/simple/certifi/), version: 2017.4.17
  Found link https://files.pythonhosted.org/packages/dc/ec/38df4e406cfca294fd6e242ea38bd943f47885d95e4dbf1783146f80e391/certifi-2017.7.27-py2.py3-none-any.whl#sha256=f0c0494d4a43fc862826a8ac731538ac68120524d4438e864a1ce2a2916e495d (from https://pypi.org/simple/certifi/), version: 2017.7.27
  Found link https://files.pythonhosted.org/packages/fa/70/bf24052d94f00bfdb70ac70840bfa1ba61e6d56ee7da5f62ecbca743c87e/certifi-2017.7.27.tar.gz#sha256=a7e03cbaf96baad108e34602848d0e4f04e59185325a61e63c96fcf67cee5fcd (from https://pypi.org/simple/certifi/), version: 2017.7.27
  Found link https://files.pythonhosted.org/packages/40/66/06130724e8205fc8c105db7edb92871c7fff7d31324d7f4405c762624a43/certifi-2017.7.27.1-py2.py3-none-any.whl#sha256=54a07c09c586b0e4c619f02a5e94e36619da8e2b053e20f594348c0611803704 (from https://pypi.org/simple/certifi/), version: 2017.7.27.1
  Found link https://files.pythonhosted.org/packages/20/d0/3f7a84b0c5b89e94abbd073a5f00c7176089f526edb056686751d5064cbd/certifi-2017.7.27.1.tar.gz#sha256=40523d2efb60523e113b44602298f0960e900388cf3bb6043f645cf57ea9e3f5 (from https://pypi.org/simple/certifi/), version: 2017.7.27.1
  Found link https://files.pythonhosted.org/packages/29/9b/25ef61e948321296f029f53c9f67cc2b54e224db509eb67ce17e0df6044a/certifi-2017.11.5-py2.py3-none-any.whl#sha256=244be0d93b71e93fc0a0a479862051414d0e00e16435707e5bf5000f92e04694 (from https://pypi.org/simple/certifi/), version: 2017.11.5
  Found link https://files.pythonhosted.org/packages/23/3f/8be01c50ed24a4bd6b8da799839066ce0288f66f5e11f0367323467f0cbc/certifi-2017.11.5.tar.gz#sha256=5ec74291ca1136b40f0379e1128ff80e866597e4e2c1e755739a913bbc3613c0 (from https://pypi.org/simple/certifi/), version: 2017.11.5
  Found link https://files.pythonhosted.org/packages/fa/53/0a5562e2b96749e99a3d55d8c7df91c9e4d8c39a9da1f1a49ac9e4f4b39f/certifi-2018.1.18-py2.py3-none-any.whl#sha256=14131608ad2fd56836d33a71ee60fa1c82bc9d2c8d98b7bdbc631fe1b3cd1296 (from https://pypi.org/simple/certifi/), version: 2018.1.18
  Found link https://files.pythonhosted.org/packages/15/d4/2f888fc463d516ff7bf2379a4e9a552fef7f22a94147655d9b1097108248/certifi-2018.1.18.tar.gz#sha256=edbc3f203427eef571f79a7692bb160a2b0f7ccaa31953e99bd17e307cf63f7d (from https://pypi.org/simple/certifi/), version: 2018.1.18
  Found link https://files.pythonhosted.org/packages/7c/e6/92ad559b7192d846975fc916b65f667c7b8c3a32bea7372340bfe9a15fa5/certifi-2018.4.16-py2.py3-none-any.whl#sha256=9fa520c1bacfb634fa7af20a76bcbd3d5fb390481724c597da32c719a7dca4b0 (from https://pypi.org/simple/certifi/), version: 2018.4.16
  Found link https://files.pythonhosted.org/packages/4d/9c/46e950a6f4d6b4be571ddcae21e7bc846fcbb88f1de3eff0f6dd0a6be55d/certifi-2018.4.16.tar.gz#sha256=13e698f54293db9f89122b0581843a782ad0934a4fe0172d2a980ba77fc61bb7 (from https://pypi.org/simple/certifi/), version: 2018.4.16
  Found link https://files.pythonhosted.org/packages/16/1f/50d729c104b21c1042aa51560da6141d1cab476ba7015d92b2111c8db841/certifi-2018.8.13-py2.py3-none-any.whl#sha256=b6e8b28b2b7e771a41ecdd12d4d43262ecab52adebbafa42c77d6b57fb6ad3a4 (from https://pypi.org/simple/certifi/), version: 2018.8.13
  Found link https://files.pythonhosted.org/packages/53/0d/d1d13a63563cc50a27b310f5612645bef06d29a5022a7e79ac659dd0fc50/certifi-2018.8.13.tar.gz#sha256=4c1d68a1408dd090d2f3a869aa94c3947cc1d967821d1ed303208c9f41f0f2f4 (from https://pypi.org/simple/certifi/), version: 2018.8.13
  Found link https://files.pythonhosted.org/packages/df/f7/04fee6ac349e915b82171f8e23cee63644d83663b34c539f7a09aed18f9e/certifi-2018.8.24-py2.py3-none-any.whl#sha256=456048c7e371c089d0a77a5212fb37a2c2dce1e24146e3b7e0261736aaeaa22a (from https://pypi.org/simple/certifi/), version: 2018.8.24
  Found link https://files.pythonhosted.org/packages/e1/0f/f8d5e939184547b3bdc6128551b831a62832713aa98c2ccdf8c47ecc7f17/certifi-2018.8.24.tar.gz#sha256=376690d6f16d32f9d1fe8932551d80b23e9d393a8578c5633a2ed39a64861638 (from https://pypi.org/simple/certifi/), version: 2018.8.24
  Found link https://files.pythonhosted.org/packages/56/9d/1d02dd80bc4cd955f98980f28c5ee2200e1209292d5f9e9cc8d030d18655/certifi-2018.10.15-py2.py3-none-any.whl#sha256=339dc09518b07e2fa7eda5450740925974815557727d6bd35d319c1524a04a4c (from https://pypi.org/simple/certifi/), version: 2018.10.15
  Found link https://files.pythonhosted.org/packages/41/b6/4f0cefba47656583217acd6cd797bc2db1fede0d53090fdc28ad2c8e0716/certifi-2018.10.15.tar.gz#sha256=6d58c986d22b038c8c0df30d639f23a3e6d172a05c3583e766f4c0b785c0986a (from https://pypi.org/simple/certifi/), version: 2018.10.15
  Found link https://files.pythonhosted.org/packages/9f/e0/accfc1b56b57e9750eba272e24c4dddeac86852c2bebd1236674d7887e8a/certifi-2018.11.29-py2.py3-none-any.whl#sha256=993f830721089fef441cdfeb4b2c8c9df86f0c63239f06bd025a76a7daddb033 (from https://pypi.org/simple/certifi/), version: 2018.11.29
  Found link https://files.pythonhosted.org/packages/55/54/3ce77783acba5979ce16674fc98b1920d00b01d337cfaaf5db22543505ed/certifi-2018.11.29.tar.gz#sha256=47f9c83ef4c0c621eaef743f133f09fa8a74a9b75f037e8624f83bd1b6626cb7 (from https://pypi.org/simple/certifi/), version: 2018.11.29
  Found link https://files.pythonhosted.org/packages/60/75/f692a584e85b7eaba0e03827b3d51f45f571c2e793dd731e598828d380aa/certifi-2019.3.9-py2.py3-none-any.whl#sha256=59b7658e26ca9c7339e00f8f4636cdfe59d34fa37b9b04f6f9e9926b3cece1a5 (from https://pypi.org/simple/certifi/), version: 2019.3.9
  Found link https://files.pythonhosted.org/packages/06/b8/d1ea38513c22e8c906275d135818fee16ad8495985956a9b7e2bb21942a1/certifi-2019.3.9.tar.gz#sha256=b26104d6835d1f5e49452a26eb2ff87fe7090b89dfcaee5ea2212697e1e1d7ae (from https://pypi.org/simple/certifi/), version: 2019.3.9
  Found link https://files.pythonhosted.org/packages/69/1b/b853c7a9d4f6a6d00749e94eb6f3a041e342a885b87340b79c1ef73e3a78/certifi-2019.6.16-py2.py3-none-any.whl#sha256=046832c04d4e752f37383b628bc601a7ea7211496b4638f6514d0e5b9acc4939 (from https://pypi.org/simple/certifi/), version: 2019.6.16
  Found link https://files.pythonhosted.org/packages/c5/67/5d0548226bcc34468e23a0333978f0e23d28d0b3f0c71a151aef9c3f7680/certifi-2019.6.16.tar.gz#sha256=945e3ba63a0b9f577b1395204e13c3a231f9bc0223888be653286534e5873695 (from https://pypi.org/simple/certifi/), version: 2019.6.16
  Found link https://files.pythonhosted.org/packages/18/b0/8146a4f8dd402f60744fa380bc73ca47303cccf8b9190fd16a827281eac2/certifi-2019.9.11-py2.py3-none-any.whl#sha256=fd7c7c74727ddcf00e9acd26bba8da604ffec95bf1c2144e67aff7a8b50e6cef (from https://pypi.org/simple/certifi/), version: 2019.9.11
  Found link https://files.pythonhosted.org/packages/62/85/7585750fd65599e88df0fed59c74f5075d4ea2fe611deceb95dd1c2fb25b/certifi-2019.9.11.tar.gz#sha256=e4f3620cfea4f83eedc95b24abd9cd56f3c4b146dd0177e83a21b4eb49e21e50 (from https://pypi.org/simple/certifi/), version: 2019.9.11
  Found link https://files.pythonhosted.org/packages/b9/63/df50cac98ea0d5b006c55a399c3bf1db9da7b5a24de7890bc9cfd5dd9e99/certifi-2019.11.28-py2.py3-none-any.whl#sha256=017c25db2a153ce562900032d5bc68e9f191e44e9a0f762f373977de9df1fbb3 (from https://pypi.org/simple/certifi/), version: 2019.11.28
  Found link https://files.pythonhosted.org/packages/41/bf/9d214a5af07debc6acf7f3f257265618f1db242a3f8e49a9b516f24523a6/certifi-2019.11.28.tar.gz#sha256=25b64c7da4cd7479594d035c08c2d809eb4aab3a26e5a990ea98cc450c320f1f (from https://pypi.org/simple/certifi/), version: 2019.11.28
  Found link https://files.pythonhosted.org/packages/31/2a/a3058b6203b5e26bba5b5f28bf719d05ce87aff38677f1be95bf0c264ce2/certifi-2020.4.5-py2.py3-none-any.whl#sha256=e68768546aa055623812ada64aec5e1f02ca20a9e7f3d3432dd8b0f35a6e7951 (from https://pypi.org/simple/certifi/), version: 2020.4.5
  Found link https://files.pythonhosted.org/packages/12/6c/122f5c6c44ecbfd27b913a99b5db8cc5df9c3aed144a5da889e5fbc4411f/certifi-2020.4.5.tar.gz#sha256=b0e07438175de96ab74de9ab5dc40985ef8b44a41e9636a2000099dc3b670ddd (from https://pypi.org/simple/certifi/), version: 2020.4.5
  Found link https://files.pythonhosted.org/packages/57/2b/26e37a4b034800c960a00c4e1b3d9ca5d7014e983e6e729e33ea2f36426c/certifi-2020.4.5.1-py2.py3-none-any.whl#sha256=1d987a998c75633c40847cc966fcf5904906c920a7f17ef374f5aa4282abd304 (from https://pypi.org/simple/certifi/), version: 2020.4.5.1
  Found link https://files.pythonhosted.org/packages/b8/e2/a3a86a67c3fc8249ed305fc7b7d290ebe5e4d46ad45573884761ef4dea7b/certifi-2020.4.5.1.tar.gz#sha256=51fcb31174be6e6664c5f69e3e1691a2d72a1a12e90f872cbdb1567eb47b6519 (from https://pypi.org/simple/certifi/), version: 2020.4.5.1
  Found link https://files.pythonhosted.org/packages/98/99/def511020aa8f663d4a2cfaa38467539e864799289ff354569e339e375b1/certifi-2020.4.5.2-py2.py3-none-any.whl#sha256=9cd41137dc19af6a5e03b630eefe7d1f458d964d406342dd3edf625839b944cc (from https://pypi.org/simple/certifi/), version: 2020.4.5.2
  Found link https://files.pythonhosted.org/packages/b4/19/53433f37a31543364c8676f30b291d128cdf4cd5b31b755b7890f8e89ac8/certifi-2020.4.5.2.tar.gz#sha256=5ad7e9a056d25ffa5082862e36f119f7f7cec6457fa07ee2f8c339814b80c9b1 (from https://pypi.org/simple/certifi/), version: 2020.4.5.2
  Found link https://files.pythonhosted.org/packages/5e/c4/6c4fe722df5343c33226f0b4e0bb042e4dc13483228b4718baf286f86d87/certifi-2020.6.20-py2.py3-none-any.whl#sha256=8fc0819f1f30ba15bdb34cceffb9ef04d99f420f68eb75d901e9560b8749fc41 (from https://pypi.org/simple/certifi/), version: 2020.6.20
  Found link https://files.pythonhosted.org/packages/40/a7/ded59fa294b85ca206082306bba75469a38ea1c7d44ea7e1d64f5443d67a/certifi-2020.6.20.tar.gz#sha256=5930595817496dd21bb8dc35dad090f1c2cd0adfaf21204bf6732ca5d8ee34d3 (from https://pypi.org/simple/certifi/), version: 2020.6.20
  Found link https://files.pythonhosted.org/packages/c1/6f/3d85f0850962279a7e4c622695d7b3171e95ac65308a57d3b29738b27149/certifi-2020.11.8-py2.py3-none-any.whl#sha256=1f422849db327d534e3d0c5f02a263458c3955ec0aae4ff09b95f195c59f4edd (from https://pypi.org/simple/certifi/), version: 2020.11.8
  Found link https://files.pythonhosted.org/packages/e6/de/879cf857ae6f890dfa23c3d6239814c5471936b618c8fb0c8732ad5da885/certifi-2020.11.8.tar.gz#sha256=f05def092c44fbf25834a51509ef6e631dc19765ab8a57b4e7ab85531f0a9cf4 (from https://pypi.org/simple/certifi/), version: 2020.11.8
  Found link https://files.pythonhosted.org/packages/5e/a0/5f06e1e1d463903cf0c0eebeb751791119ed7a4b3737fdc9a77f1cdfb51f/certifi-2020.12.5-py2.py3-none-any.whl#sha256=719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830 (from https://pypi.org/simple/certifi/), version: 2020.12.5
  Found link https://files.pythonhosted.org/packages/06/a9/cd1fd8ee13f73a4d4f491ee219deeeae20afefa914dfb4c130cfc9dc397a/certifi-2020.12.5.tar.gz#sha256=1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c (from https://pypi.org/simple/certifi/), version: 2020.12.5
Skipping link: not a file: https://pypi.org/simple/certifi/
Given no hashes to check 76 links for project 'certifi': discarding no candidates
Collecting certifi
  Created temporary directory: /tmp/pip-unpack-ywmx_elm
  Looking up "https://files.pythonhosted.org/packages/5e/a0/5f06e1e1d463903cf0c0eebeb751791119ed7a4b3737fdc9a77f1cdfb51f/certifi-2020.12.5-py2.py3-none-any.whl" in the cache
  Current age based on date: 14028957
  Ignoring unknown cache-control directive: immutable
  Freshness lifetime from max-age: 365000000
  The response is "fresh", returning cached response
  365000000 > 14028957
  Using cached certifi-2020.12.5-py2.py3-none-any.whl (147 kB)
  Added certifi from https://files.pythonhosted.org/packages/5e/a0/5f06e1e1d463903cf0c0eebeb751791119ed7a4b3737fdc9a77f1cdfb51f/certifi-2020.12.5-py2.py3-none-any.whl#sha256=719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830 (from -r requirements.txt (line 1)) to build tracker '/tmp/pip-req-tracker-nz48dusi'
  Removed certifi from https://files.pythonhosted.org/packages/5e/a0/5f06e1e1d463903cf0c0eebeb751791119ed7a4b3737fdc9a77f1cdfb51f/certifi-2020.12.5-py2.py3-none-any.whl#sha256=719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830 (from -r requirements.txt (line 1)) from build tracker '/tmp/pip-req-tracker-nz48dusi'
1 location(s) to search for versions of kivymd:
* https://pypi.org/simple/kivymd/
Fetching project page and analyzing links: https://pypi.org/simple/kivymd/
Getting page https://pypi.org/simple/kivymd/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/kivymd/" in the cache
Request header has "max_age" as 0, cache bypassed
https://pypi.org:443 "GET /simple/kivymd/ HTTP/1.1" 304 0
  Found link https://files.pythonhosted.org/packages/8f/ba/4995157d2b930e3c0dd66842b6af77ace7117ca2115792b760b1c122e1eb/kivymd-0.1.0.tar.gz#sha256=acde26dce142889938c96d4654c3230a66c059fbe7b8bea4669901c4b84dc44d (from https://pypi.org/simple/kivymd/), version: 0.1.0
  Found link https://files.pythonhosted.org/packages/04/34/8838c03a799f2412c8a07af7783df6292c7a140962a36176b081454ef8c9/kivymd-0.1.1.tar.gz#sha256=19c5de573b3460bf99277397f6a0711641b2cd4e3574e16c46caaccafc5d79ba (from https://pypi.org/simple/kivymd/), version: 0.1.1
  Found link https://files.pythonhosted.org/packages/f1/2e/4bec1d1f1d004f54cd00b4013702de9815922df89bc05b562499a9bc1b9d/kivymd-0.1.2.tar.gz#sha256=d4fd1c6a80ce432bf47996650608fb935fac500bbcf5a78ce27f137ea0bb879b (from https://pypi.org/simple/kivymd/), version: 0.1.2
  Found link https://files.pythonhosted.org/packages/28/eb/e22b1eeedf880c0eb84dd0b7395431c06ad134d8dd621cf0e87c586d9afc/kivymd-0.100.2.tar.gz#sha256=61013381a1cb84788b646cffb35c30fe04197b771f29c07a793971602d9d791b (from https://pypi.org/simple/kivymd/), version: 0.100.2
  Found link https://files.pythonhosted.org/packages/fd/49/ecf0870d6dda485318a3b7df896d9c5826a954f3ad4e5530e03af791ee65/kivymd-0.102.0-py3-none-any.whl#sha256=a32c430769736eba4d8fa75526828854bd09d71ddf3f539fb16bd854b1c52cfb (from https://pypi.org/simple/kivymd/) (requires-python:>=3.5), version: 0.102.0
  Found link https://files.pythonhosted.org/packages/1a/54/3cee79e82648f98082c77d8e41a265fd6a04dc41e420b21e91529fbd3be4/kivymd-0.102.0.tar.gz#sha256=0b9fa3f5b67c08f607981e49b41f367f35e2c2bca0beffdd0e809246a5d110b7 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.5), version: 0.102.0
  Found link https://files.pythonhosted.org/packages/e6/9a/46b9bce27989abcb8905b0eededf18974e329cebb07335b690dbc26ee58c/kivymd-0.102.1-py3-none-any.whl#sha256=574adeb3935cc189f854294c754158e91641ed1657e4f7811879071a9afc0d8f (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.102.1
  Found link https://files.pythonhosted.org/packages/c2/6a/b38fb717692f8bb8d80ca6531c1345f44d2fe6e211c602443c82c9747d6d/kivymd-0.102.1.tar.gz#sha256=a49e58ea231d42b2cba8be747979cf5f9751dbf3528bc650874b0b880f439bac (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.102.1
  Found link https://files.pythonhosted.org/packages/d0/f9/a785c8c7fcee4c3a4923cd275a10cddfd1ce907fe3b0852d83d97ad072bb/kivymd-0.103.0-py3-none-any.whl#sha256=3b154b3b5bbc8fa8cdb872ea25e4ada6fc47696861659ca7414ae318aad63220 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.103.0
  Found link https://files.pythonhosted.org/packages/74/59/1be724906c6d5388510d73b9eb55faee045837071132eda34713b12f6675/kivymd-0.103.0.tar.gz#sha256=21e6f88dcf2af10d180e0603fd8b00c89223dd2b935d854c25416150939085bf (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.103.0
  Found link https://files.pythonhosted.org/packages/83/e3/7bc23e19653417f0f841082e3c238a0af8282e25fb2caa4ba7b1c0954125/kivymd-0.104.0-py3-none-any.whl#sha256=74a219731502eda3d35713176f2d7b5ac502a54974de11b133c30985db1d8ac2 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.104.0
  Found link https://files.pythonhosted.org/packages/7b/63/2c8e86bca31ddc9a9d5378a37222d5e69e6c952ce10317aff905532c4f96/kivymd-0.104.0.tar.gz#sha256=59eb59ff0041ba5d914c7032ef4f0eb8145ac229612da0f85e56ca2aa889ab9e (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.104.0
  Found link https://files.pythonhosted.org/packages/c4/4e/f33085dab6420009fefc214cb3f8fc88ecd9d9e766976aa14f93b033a53a/kivymd-0.104.1-py3-none-any.whl#sha256=a9d3e14950ae616bf13f0a9ebccc761ec84e2ba36e671d0102045eaa63dbc2b0 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.104.1
  Found link https://files.pythonhosted.org/packages/37/a1/460313db291c9cd4a128d4f58f08faf2bf3e4c9dc5ca935b489e06efd7f4/kivymd-0.104.1.tar.gz#sha256=9dcbc2cb8affde9c82572198fddb32c814cdd57254a0e4b00c53882db2c8d6a6 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.104.1
Skipping link: not a file: https://pypi.org/simple/kivymd/
Given no hashes to check 2 links for project 'kivymd': discarding no candidates
Collecting kivymd==0.104.1
  Created temporary directory: /tmp/pip-unpack-ev6biz_w
  Looking up "https://files.pythonhosted.org/packages/c4/4e/f33085dab6420009fefc214cb3f8fc88ecd9d9e766976aa14f93b033a53a/kivymd-0.104.1-py3-none-any.whl" in the cache
  Current age based on date: 17363135
  Ignoring unknown cache-control directive: immutable
  Freshness lifetime from max-age: 365000000
  The response is "fresh", returning cached response
  365000000 > 17363135
  Using cached kivymd-0.104.1-py3-none-any.whl (2.4 MB)
  Added kivymd==0.104.1 from https://files.pythonhosted.org/packages/c4/4e/f33085dab6420009fefc214cb3f8fc88ecd9d9e766976aa14f93b033a53a/kivymd-0.104.1-py3-none-any.whl#sha256=a9d3e14950ae616bf13f0a9ebccc761ec84e2ba36e671d0102045eaa63dbc2b0 (from -r requirements.txt (line 2)) to build tracker '/tmp/pip-req-tracker-nz48dusi'
  Removed kivymd==0.104.1 from https://files.pythonhosted.org/packages/c4/4e/f33085dab6420009fefc214cb3f8fc88ecd9d9e766976aa14f93b033a53a/kivymd-0.104.1-py3-none-any.whl#sha256=a9d3e14950ae616bf13f0a9ebccc761ec84e2ba36e671d0102045eaa63dbc2b0 (from -r requirements.txt (line 2)) from build tracker '/tmp/pip-req-tracker-nz48dusi'
1 location(s) to search for versions of plyer:
* https://pypi.org/simple/plyer/
Fetching project page and analyzing links: https://pypi.org/simple/plyer/
Getting page https://pypi.org/simple/plyer/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/plyer/" in the cache
Request header has "max_age" as 0, cache bypassed
https://pypi.org:443 "GET /simple/plyer/ HTTP/1.1" 304 0
  Found link https://files.pythonhosted.org/packages/4e/28/4ea35dea74751b682409105dfb53f02caf439d48ac573587cc624be5d4d4/plyer-1.1.tar.gz#sha256=3dce7ba67b384cdafc6a59e0174ed6ab6477cec3504c875c8ca25110ac8cb946 (from https://pypi.org/simple/plyer/), version: 1.1
  Found link https://files.pythonhosted.org/packages/96/99/c881225975b2e75f392a96c70d453f3b46617b732a4d1389581895084345/plyer-1.1.1.tar.gz#sha256=256cb9f47e83a103a959743ee0d4fd01911f06d5ca7068eb70dacaa4357457ee (from https://pypi.org/simple/plyer/), version: 1.1.1
  Found link https://files.pythonhosted.org/packages/69/d7/d74de4b216a5df1cfd34610e7a9f1e06a1fcdfc4bc20979e7ef1e8730316/plyer-1.1.2.tar.gz#sha256=829a82d67cdb2720f87a9ccaa0cd08abbb9bce9c62994ac8fbac0560253e06e0 (from https://pypi.org/simple/plyer/), version: 1.1.2
  Found link https://files.pythonhosted.org/packages/7e/1c/9080182020b1eb957a54137a2799bda7df28e57ab501d4f5a555dc2e5a3b/plyer-1.2.0.tar.gz#sha256=6f718169c1a29c12ac48029e048f068963151d7cda2c5cf9decbf09a3dee5b5c (from https://pypi.org/simple/plyer/), version: 1.2.0
  Found link https://files.pythonhosted.org/packages/7c/41/4fa7863ddd44cf27a9de57e20fb8bcafc48113d0f70ffbf2fe1a1be64215/plyer-1.2.1.tar.gz#sha256=cb0f865ab95f15875f80248fb72077d95db3dfef10f9ef605d533d2b3cc5f613 (from https://pypi.org/simple/plyer/), version: 1.2.1
  Found link https://files.pythonhosted.org/packages/68/83/9aef71c1b8f9376f0995e8454d9b6973147efb1ab3efe16a81008a7e4aa7/plyer-1.2.2.tar.gz#sha256=bbf3fe6c43dd8800cbddec122095e457a681c31a5146818f32dda6586dd4e360 (from https://pypi.org/simple/plyer/), version: 1.2.2
  Found link https://files.pythonhosted.org/packages/35/6d/bc63f086e7b4b1d023d3e99c48b21614351d679df765573e9b4e92ca91c2/plyer-1.2.3.tar.gz#sha256=eae44890099d798be53d96bc88c1ed2d66248e23aa9ed740f38b40e397e153df (from https://pypi.org/simple/plyer/), version: 1.2.3
  Found link https://files.pythonhosted.org/packages/30/e7/9ea036caf06be3f7a10474885a9f017554879c2f55b229e9a4ec2c0a90ff/plyer-1.2.4.tar.gz#sha256=3e3267d1414242c35e5d381d5bfc4f2651e181d11bc374ecc90d00658d05aaaf (from https://pypi.org/simple/plyer/), version: 1.2.4
  Found link https://files.pythonhosted.org/packages/c4/19/f7cf7658e0f671294d8675a0bcc5d76883e8e738cc1e78dd097e2ea5fa72/plyer-1.3.0.tar.gz#sha256=bdc4d09d5c1c236025a32e4fb48a83a0caa5c48667b35de93db25c8f916ec750 (from https://pypi.org/simple/plyer/), version: 1.3.0
  Found link https://files.pythonhosted.org/packages/85/9f/1f02d5f1c9935e8ec4705eb22ad466b3f709de57c4acb08a3207afd26e95/plyer-1.3.1-py3-none-any.whl#sha256=ad6f1bd2e6043b7f763ce46643f6119063449a457c1db96b1bad2134ebe38750 (from https://pypi.org/simple/plyer/), version: 1.3.1
  Found link https://files.pythonhosted.org/packages/98/9f/4ac0c915e93db2c8bb492e5178b1a89a5139991a72ae44d78dcc1f4184be/plyer-1.3.1.tar.gz#sha256=00691887474793582cc9df84b32f82c68e14bd23d2734b69401c98ce50729602 (from https://pypi.org/simple/plyer/), version: 1.3.1
  Found link https://files.pythonhosted.org/packages/fe/87/15d6377b2d46370d5f7645dab8bdf93cd16df12d939852794a510c7300a7/plyer-1.3.2-py3-none-any.whl#sha256=bd5045289a16930cc605397ed493f7bdffe429606f60c9f75d7188715cad7385 (from https://pypi.org/simple/plyer/), version: 1.3.2
  Found link https://files.pythonhosted.org/packages/d3/ed/d083c758d7d8d8de2265db3d7c7610e14097fe00fcb9fbc48bc458b4ab52/plyer-1.3.2.tar.gz#sha256=c666c5234715925ea92e549604c9f7762dfd7ce3b2dc17921598f4af5fea56e8 (from https://pypi.org/simple/plyer/), version: 1.3.2
  Found link https://files.pythonhosted.org/packages/64/02/fa5c7054a879cfda9c937fedf8abfda6706c088da2f97c16655cf3c88626/plyer-1.4.0-py3-none-any.whl#sha256=00a6611e17e514f13bb1b2cea5265f852adcf9f47035aac40b660aa1010eba97 (from https://pypi.org/simple/plyer/), version: 1.4.0
  Found link https://files.pythonhosted.org/packages/22/8c/3bdd25b9e489fa62b06937b51dc2611844e58108f458c8e12ea6de7c5db3/plyer-1.4.0.tar.gz#sha256=6935eb731e6e7448800e91c700524a5d771c3154fac3366e49a069af0355305d (from https://pypi.org/simple/plyer/), version: 1.4.0
  Found link https://files.pythonhosted.org/packages/76/84/debb5465ffcf58b5c1c9a381c3d30992164547e405619133a4318fc02044/plyer-1.4.2-py2.py3-none-any.whl#sha256=d194cdce3fd941b524dd036d945ded6e84420a3f703b73512fbedf45c7a02807 (from https://pypi.org/simple/plyer/), version: 1.4.2
  Found link https://files.pythonhosted.org/packages/99/29/4ffab64d538df5586558ba2783a9c7ab0f1459fe309f41bd9146aa2e6c97/plyer-1.4.2.tar.gz#sha256=4d5a5b1ef03eb3bdd9f6f949adaa0576043dee4b1845ca7d02b8bf0645c6b5ed (from https://pypi.org/simple/plyer/), version: 1.4.2
  Found link https://files.pythonhosted.org/packages/89/3f/9153265abcaa93418abee8b49284941330426d5afb2f72d75d067462af84/plyer-1.4.3-py2.py3-none-any.whl#sha256=6192a5c15f2cc8fe42de5a7ab898ed2d2cd47315a88dd7e0f6fd90ec972b87a9 (from https://pypi.org/simple/plyer/), version: 1.4.3
  Found link https://files.pythonhosted.org/packages/56/c3/8679adaea271e92de6f69eaf6d1afa7d1c90dc3c13f5763d68b6398f62b8/plyer-1.4.3.tar.gz#sha256=bf8de0cf76811201c475c1763703c1dbcc40c1a0a5520e9bfeee92271ba7e600 (from https://pypi.org/simple/plyer/), version: 1.4.3
  Found link https://files.pythonhosted.org/packages/26/b1/23800271e74bf5ce54e124df0c495506bb9857d05f63cf6bc3ce4d89f5c9/plyer-2.0.0-py2.py3-none-any.whl#sha256=d62a1e68622042e6b9367ba429844e989ea7b13035fd1befe66f385aaaba6de1 (from https://pypi.org/simple/plyer/), version: 2.0.0
  Found link https://files.pythonhosted.org/packages/ef/f6/7061dc660e04f5aa4c2bf13bdd7320812f89c02699f67d9e77445a50ec8e/plyer-2.0.0.tar.gz#sha256=8de38b17bc438df36eedeacd546cf05303ab871855af0669fc4e8df51f2adf94 (from https://pypi.org/simple/plyer/), version: 2.0.0
Skipping link: not a file: https://pypi.org/simple/plyer/
Given no hashes to check 21 links for project 'plyer': discarding no candidates
Collecting plyer
  Created temporary directory: /tmp/pip-unpack-k1kq1z7p
  Looking up "https://files.pythonhosted.org/packages/26/b1/23800271e74bf5ce54e124df0c495506bb9857d05f63cf6bc3ce4d89f5c9/plyer-2.0.0-py2.py3-none-any.whl" in the cache
  Current age based on date: 15247458
  Ignoring unknown cache-control directive: immutable
  Freshness lifetime from max-age: 365000000
  The response is "fresh", returning cached response
  365000000 > 15247458
  Using cached plyer-2.0.0-py2.py3-none-any.whl (131 kB)
  Added plyer from https://files.pythonhosted.org/packages/26/b1/23800271e74bf5ce54e124df0c495506bb9857d05f63cf6bc3ce4d89f5c9/plyer-2.0.0-py2.py3-none-any.whl#sha256=d62a1e68622042e6b9367ba429844e989ea7b13035fd1befe66f385aaaba6de1 (from -r requirements.txt (line 3)) to build tracker '/tmp/pip-req-tracker-nz48dusi'
  Removed plyer from https://files.pythonhosted.org/packages/26/b1/23800271e74bf5ce54e124df0c495506bb9857d05f63cf6bc3ce4d89f5c9/plyer-2.0.0-py2.py3-none-any.whl#sha256=d62a1e68622042e6b9367ba429844e989ea7b13035fd1befe66f385aaaba6de1 (from -r requirements.txt (line 3)) from build tracker '/tmp/pip-req-tracker-nz48dusi'
1 location(s) to search for versions of python:
* https://pypi.org/simple/python/
Fetching project page and analyzing links: https://pypi.org/simple/python/
Getting page https://pypi.org/simple/python/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/python/" in the cache
Request header has "max_age" as 0, cache bypassed
https://pypi.org:443 "GET /simple/python/ HTTP/1.1" 404 13
Status code 404 not in (200, 203, 300, 301)
Could not fetch URL https://pypi.org/simple/python/: 404 Client Error: Not Found for url: https://pypi.org/simple/python/ - skipping
Skipping link: not a file: https://pypi.org/simple/python/
Given no hashes to check 0 links for project 'python': discarding no candidates
ERROR: Could not find a version that satisfies the requirement python==3.9.5 (from versions: none)
ERROR: No matching distribution found for python==3.9.5
Exception information:
Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 341, in resolve
    name, crit = self._merge_into_criterion(r, parent=None)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 173, in _merge_into_criterion
    raise RequirementsConflicted(criterion)
pip._vendor.resolvelib.resolvers.RequirementsConflicted: Requirements conflict: SpecifierRequirement('python==3.9.5')

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 127, in resolve
    result = self._result = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 473, in resolve
    state = resolution.resolve(requirements, max_rounds=max_rounds)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 343, in resolve
    raise ResolutionImpossible(e.criterion.information)
pip._vendor.resolvelib.resolvers.ResolutionImpossible: [RequirementInformation(requirement=SpecifierRequirement('python==3.9.5'), parent=None)]

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py", line 180, in _main
    status = self.run(options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py", line 204, in wrapper
    return func(self, options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py", line 318, in run
    requirement_set = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 136, in resolve
    raise error from e
pip._internal.exceptions.DistributionNotFound: No matching distribution found for python==3.9.5
Removed build tracker: '/tmp/pip-req-tracker-nz48dusi'

  STDERR:

# Command failed: /home/purushottam2/Desktop/myupdateproject/bin/python3.9 -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=python==3.9.5,Kivy==2.0.0,kivymd==0.104.1,sdl2_ttf==2.0.15,plyer,android,pil,jnius --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a" --ndk-api=21
# ENVIRONMENT:
#     SHELL = '/bin/bash'
#     SESSION_MANAGER = 'local/purushottam2-HP-Laptop-15-bs1xx:@/tmp/.ICE-unix/1768,unix/purushottam2-HP-Laptop-15-bs1xx:/tmp/.ICE-unix/1768'
#     QT_ACCESSIBILITY = '1'
#     COLORTERM = 'truecolor'
#     XDG_CONFIG_DIRS = '/etc/xdg/xdg-ubuntu:/etc/xdg'
#     XDG_MENU_PREFIX = 'gnome-'
#     GNOME_DESKTOP_SESSION_ID = 'this-is-deprecated'
#     LANGUAGE = 'en_IN:en'
#     MANDATORY_PATH = '/usr/share/gconf/ubuntu.mandatory.path'
#     GNOME_SHELL_SESSION_MODE = 'ubuntu'
#     SSH_AUTH_SOCK = '/run/user/1000/keyring/ssh'
#     XMODIFIERS = '@im=ibus'
#     DESKTOP_SESSION = 'ubuntu'
#     SSH_AGENT_PID = '1684'
#     GTK_MODULES = 'gail:atk-bridge'
#     DBUS_STARTER_BUS_TYPE = 'session'
#     PWD = '/home/purushottam2/Desktop/myupdateproject/yyy'
#     XDG_SESSION_DESKTOP = 'ubuntu'
#     LOGNAME = 'purushottam2'
#     XDG_SESSION_TYPE = 'x11'
#     GPG_AGENT_INFO = '/run/user/1000/gnupg/S.gpg-agent:0:1'
#     XAUTHORITY = '/run/user/1000/gdm/Xauthority'
#     WINDOWPATH = '2'
#     HOME = '/home/purushottam2'
#     USERNAME = 'purushottam2'
#     IM_CONFIG_PHASE = '1'
#     LANG = 'en_IN'
#     LS_COLORS = 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'
#     XDG_CURRENT_DESKTOP = 'ubuntu:GNOME'
#     VIRTUAL_ENV = '/home/purushottam2/Desktop/myupdateproject'
#     VTE_VERSION = '6003'
#     GNOME_TERMINAL_SCREEN = '/org/gnome/Terminal/screen/17c328da_8d09_4a03_b8c2_9d37c7a4d522'
#     INVOCATION_ID = 'ade6b7eebfed4247b0116ab676b69f0f'
#     MANAGERPID = '1490'
#     LESSCLOSE = '/usr/bin/lesspipe %s %s'
#     XDG_SESSION_CLASS = 'user'
#     TERM = 'xterm-256color'
#     DEFAULTS_PATH = '/usr/share/gconf/ubuntu.default.path'
#     LESSOPEN = '| /usr/bin/lesspipe %s'
#     USER = 'purushottam2'
#     GNOME_TERMINAL_SERVICE = ':1.87'
#     DISPLAY = ':1'
#     SHLVL = '1'
#     QT_IM_MODULE = 'ibus'
#     DBUS_STARTER_ADDRESS = 'unix:path=/run/user/1000/bus,guid=a0cf6738d2b45efb75b86fea60a3ea94'
#     XDG_RUNTIME_DIR = '/run/user/1000'
#     PS1 = ('(myupdateproject) \\[\\e]0;\\u@\\h: '
 '\\w\\a\\]${debian_chroot:+($debian_chroot)}\\[\\033[01;32m\\]\\u@\\h\\[\\033[00m\\]:\\[\\033[01;34m\\]\\w\\[\\033[00m\\]\\$ ')
#     JOURNAL_STREAM = '8:38732'
#     XDG_DATA_DIRS = '/usr/share/ubuntu:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'
#     PATH = '/home/purushottam2/.buildozer/android/platform/apache-ant-1.9.4/bin:/home/purushottam2/Desktop/myupdateproject/bin:/home/purushottam2/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin'
#     GDMSESSION = 'ubuntu'
#     DBUS_SESSION_BUS_ADDRESS = 'unix:path=/run/user/1000/bus,guid=a0cf6738d2b45efb75b86fea60a3ea94'
#     _ = '/home/purushottam2/Desktop/myupdateproject/bin/buildozer'
#     OLDPWD = '/home/purushottam2/Desktop/myupdateproject'
#     PACKAGES_PATH = '/home/purushottam2/.buildozer/android/packages'
#     ANDROIDSDK = '/home/purushottam2/.buildozer/android/platform/android-sdk'
#     ANDROIDNDK = '/home/purushottam2/.buildozer/android/platform/android-ndk-r19b'
#     ANDROIDAPI = '27'
#     ANDROIDMINAPI = '21'
# 
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2
(myupdateproject) purushottam2@purushottam2-HP-Laptop-15-bs1xx:~/Desktop/myupdateproject/yyy$ 
ROR: No matching distribution found for python==3.9.5
Exception information:
Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 341, in resolve
    name, crit = self._merge_into_criterion(r, parent=None)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 173, in _merge_into_criterion
    raise RequirementsConflicted(criterion)
pip._vendor.resolvelib.resolvers.RequirementsConflicted: Requirements conflict: SpecifierRequirement('python==3.9.5')

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 127, in resolve
    result = self._result = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 473, in resolve
    state = resolution.resolve(requirements, max_rounds=max_rounds)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 343, in resolve
    raise ResolutionImpossible(e.criterion.information)
pip._vendor.resolvelib.resolvers.ResolutionImpossible: [RequirementInformation(requirement=SpecifierRequirement('python==3.9.5'), parent=None)]

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py", line 180, in _main
    status = self.run(options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py", line 204, in wrapper
    return func(self, options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py", line 318, in run
    requirement_set = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 136, in resolve
    raise error from e
pip._internal.exceptions.DistributionNotFound: No matching distribution found for python==3.9.5
Removed build tracker: '/tmp/pip-req-tracker-nz48dusi'

  STDERR:

Traceback (most recent call last):                                                                                                                                                   
  File "/usr/lib/python3.9/runpy.py", line 197, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "/usr/lib/python3.9/runpy.py", line 87, in _run_code
    exec(code, run_globals)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 1260, in <module>
    main()
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/entrypoints.py", line 18, in main
    ToolchainCL()
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 709, in __init__
    getattr(self, command)(args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 154, in wrapper_func
    build_dist_from_args(ctx, dist, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/toolchain.py", line 213, in build_dist_from_args
    build_recipes(build_order, python_modules, ctx,
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/build.py", line 600, in build_recipes
    run_pymodules_install(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/build.py", line 820, in run_pymodules_install
    shprint(sh.bash, '-c', (
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/python-for-android/pythonforandroid/logger.py", line 167, in shprint
    for line in output:
  File "/home/purushottam2/Desktop/myupdateproject/lib/python3.9/site-packages/sh.py", line 953, in next
    self.wait()
  File "/home/purushottam2/Desktop/myupdateproject/lib/python3.9/site-packages/sh.py", line 879, in wait
    self.handle_command_exit_code(exit_code)
  File "/home/purushottam2/Desktop/myupdateproject/lib/python3.9/site-packages/sh.py", line 905, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /usr/bin/bash -c 'venv/bin/pip install -v --target '"'"'/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp'"'"' --no-deps -r requirements.txt'

  STDOUT:
Ignoring "sys._home = value" override
Using pip 21.1.1 from /home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip (python 3.8)
Non-user install due to --prefix or --target option
Created temporary directory: /tmp/pip-target-bbmtnx1c
Created temporary directory: /tmp/pip-ephem-wheel-cache-xej1gqxd
Created temporary directory: /tmp/pip-req-tracker-nz48dusi
Initialized build tracking at /tmp/pip-req-tracker-nz48dusi
Created build tracker: /tmp/pip-req-tracker-nz48dusi
Entered build tracker: /tmp/pip-req-tracker-nz48dusi
Created temporary directory: /tmp/pip-install-pmre20uf
1 location(s) to search for versions of certifi:
* https://pypi.org/simple/certifi/
Fetching project page and analyzing links: https://pypi.org/simple/certifi/
Getting page https://pypi.org/simple/certifi/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/certifi/" in the cache
Request header has "max_age" as 0, cache bypassed
Starting new HTTPS connection (1): pypi.org:443
https://pypi.org:443 "GET /simple/certifi/ HTTP/1.1" 304 0
  Found link https://files.pythonhosted.org/packages/55/bf/e1094f052b5932a452b12ac5a6c229f3d7dbf41a66cfc8d5832fe3fb6463/certifi-0.0.1.tar.gz#sha256=a6f0d79b2b63a43c71bc128929be3a17bdf5d0a5f74208d7ad9563b3bf8210e9 (from https://pypi.org/simple/certifi/), version: 0.0.1
  Found link https://files.pythonhosted.org/packages/0c/4d/6e036d6158e533499272f7b82d0ffa115ecc7c930994475b7bf8f4047489/certifi-0.0.2.tar.gz#sha256=678b7a44338228d55bc4569a575b4734bbbcb9da109328f3b10e3435ec6abdee (from https://pypi.org/simple/certifi/), version: 0.0.2
  Found link https://files.pythonhosted.org/packages/17/3d/7d037b5aadde37d95c067e5b26f064ae53f791201a89b5b38ee315409264/certifi-0.0.3.tar.gz#sha256=1418bce4a32cd409b9766a7c92556be4d23f287da581945be4076eea299fbeac (from https://pypi.org/simple/certifi/), version: 0.0.3
  Found link https://files.pythonhosted.org/packages/cd/b9/ad866737dfde6b459fa3188b13d249e50101fa06bab408e6d9e5029b6838/certifi-0.0.4.tar.gz#sha256=8aed314d0d133c70fd9c56ee13cabe0910c0f6ff423da266841512af0e3d68c4 (from https://pypi.org/simple/certifi/), version: 0.0.4
  Found link https://files.pythonhosted.org/packages/84/b9/a5aac1c71b154f18dad87b39e42a118a538ce4f95fe10f3f651b0c3d0ac2/certifi-0.0.5.tar.gz#sha256=c1c47a7545e39e19357d51c2e5291de158508024658d6860815359566ac65c02 (from https://pypi.org/simple/certifi/), version: 0.0.5
  Found link https://files.pythonhosted.org/packages/76/4a/92995898df84d15c42d49e38b814caa94502cbf28be9b9732703303f2107/certifi-0.0.6.tar.gz#sha256=e839718ce80daa9853b1f47a333757d4a22cdf422e2fd8de5e579d5634a89585 (from https://pypi.org/simple/certifi/), version: 0.0.6
  Found link https://files.pythonhosted.org/packages/43/10/aafebf9677ccec8b227f15eef20a4aac65fbff7f14fc9462f06855fecdd2/certifi-0.0.7.tar.gz#sha256=6dec7d3c6f3d4ed0a50fb15f8fd41c0bb1b17998eb8c103d0f34d61c19061e36 (from https://pypi.org/simple/certifi/), version: 0.0.7
  Found link https://files.pythonhosted.org/packages/38/70/d777da670969367780cb0cb66f43799e17e050dcdeb0fa4e26189519f9f2/certifi-0.0.8.tar.gz#sha256=46ecf5f7526a08cc1f8bc8232adf0cffce046f46ceff95539daec42ebc4849ef (from https://pypi.org/simple/certifi/), version: 0.0.8
  Found link https://files.pythonhosted.org/packages/eb/fe/3ba38b686003664a75c01c42c6f1be02f9837d007c0f15727e6f8f2040a3/certifi-1.0.0.tar.gz#sha256=d4f8e89c9e709f67221bf21231d0fa66a00d3712bcb69d4b5aef3705339c8dcd (from https://pypi.org/simple/certifi/), version: 1.0.0
  Found link https://files.pythonhosted.org/packages/4e/58/86422944e1f228a4e90c291388bf69675826c995f163b2894541365f1f0e/certifi-1.0.1-py2.py3-none-any.whl#sha256=44964ac783fca598e723da5fa2ef3631b5b2f94f445749bfc6043d4afb20de75 (from https://pypi.org/simple/certifi/), version: 1.0.1
  Found link https://files.pythonhosted.org/packages/ff/3a/ec07518540a090d463aa20c615a170d52a3633057fde480bd462883a0de2/certifi-1.0.1.tar.gz#sha256=f2c18c7edd349ec10378ef43ff16f81ae1d0af61d5d2858a8b383e8f6814a9cc (from https://pypi.org/simple/certifi/), version: 1.0.1
  Found link https://files.pythonhosted.org/packages/c1/ed/4a424a55f77679700452972e583393b64160583c80ffa893b4be9391f3ae/certifi-14.05.14.tar.gz#sha256=1e1bcbacd6357c151ae37cf0290dcc809721d32ce21fd6b7339568f3ddef1b69 (from https://pypi.org/simple/certifi/), version: 14.05.14
  Found link https://files.pythonhosted.org/packages/86/35/9758a67004a266047c779ae40a3d937869bfc6fc3422f6c606b8afbc9d23/certifi-2015.04.28-py2.py3-none-any.whl#sha256=268fa00c27de756d71663dd61f73a4a8d8727569bb1b474b2ce6020553826872 (from https://pypi.org/simple/certifi/), version: 2015.04.28
  Found link https://files.pythonhosted.org/packages/4a/41/52617061e93551d5c8041b70d35db395ad647cc356beb764cd9b278e3114/certifi-2015.04.28.tar.gz#sha256=99785e6cf715cdcde59dee05a676e99f04835a71e7ced201ca317401c322ba96 (from https://pypi.org/simple/certifi/), version: 2015.04.28
  Found link https://files.pythonhosted.org/packages/c6/aa/85432217f85f1553dc0926a3e00b48e00819b80097dd056e482c19766f11/certifi-2015.9.6-py2.py3-none-any.whl#sha256=499d154e26c642108248be45b4e09d3b978d2e7c6a72e0a147a2e81448a61a7d (from https://pypi.org/simple/certifi/), version: 2015.9.6
  Found link https://files.pythonhosted.org/packages/e2/ec/ab8442e4d6cf92ea4df67ed81e078bd6a9e092c96ffcd03dbd910e1eb389/certifi-2015.9.6.tar.gz#sha256=7e5646f75d2779719b3400c009e3461f921823e4592657f8e00fb2b6e14b8b92 (from https://pypi.org/simple/certifi/), version: 2015.9.6
  Found link https://files.pythonhosted.org/packages/cc/7f/fb45b6c47ff3a1e119b8fa0aec4a9d1812f0c9f774d877eca582065ef21e/certifi-2015.9.6.1-py2.py3-none-any.whl#sha256=4cbb1f8b30948895f36bb94402598506808833747e0a2e1ca5b1f152ff341da4 (from https://pypi.org/simple/certifi/), version: 2015.9.6.1
  Found link https://files.pythonhosted.org/packages/d6/8d/700b62e1cbcd0264450b8bb476757808ef2c3f6060ee552c3717d010b616/certifi-2015.9.6.1.tar.gz#sha256=f924457bd89178e565fe1b90359d90639f524e7da1a99988292474f52defbf34 (from https://pypi.org/simple/certifi/), version: 2015.9.6.1
  Found link https://files.pythonhosted.org/packages/58/41/b16d4787c30bfb27d608fd2383ab2a7823afa0491fa16df04336d7b7519b/certifi-2015.9.6.2-py2.py3-none-any.whl#sha256=7486e08ffd0a9bea8c66e76fd1f0f0150294c572e78cb16b14d8589beafd3564 (from https://pypi.org/simple/certifi/), version: 2015.9.6.2
  Found link https://files.pythonhosted.org/packages/63/71/422814652028afbff99347da9f3d102f53113a1d2389e255a2dde15c5d8d/certifi-2015.9.6.2.tar.gz#sha256=dc3a2b2d9d1033dbf27586366ae61b9d7c44d8c3a6f29694ffcbb0618ea7aea6 (from https://pypi.org/simple/certifi/), version: 2015.9.6.2
  Found link https://files.pythonhosted.org/packages/a5/2b/83904abc08c3d95808d098163b049e923cbf9fa04f6fa5c0f3750959da8e/certifi-2015.11.20-py2.py3-none-any.whl#sha256=12e141bb3e0f1b3ea4d5a8af804fc59ff94d5ece040cf8d22232ddf87eec096b (from https://pypi.org/simple/certifi/), version: 2015.11.20
  Found link https://files.pythonhosted.org/packages/c5/8a/d007319d95bd2424adb3f2a41ffb29de76f2c07b3dd5fd98f3651f9a14f5/certifi-2015.11.20.tar.gz#sha256=7168668372f07219439e82878b484d6216ff63224fd4e7ff4f39c56ad0b487de (from https://pypi.org/simple/certifi/), version: 2015.11.20
  Found link https://files.pythonhosted.org/packages/df/21/86903664789d010c7693523aa44cd6f96f9d60c7bc813761ff3db5fa8aad/certifi-2015.11.20.1-py2.py3-none-any.whl#sha256=ad86683448f7483d4147a64d96856e551734e594c4563747e9fbe2368df13d3f (from https://pypi.org/simple/certifi/), version: 2015.11.20.1
  Found link https://files.pythonhosted.org/packages/08/59/d39d98454a4fd2c9e0955590398bcfc4047f8e6dde00d7731cefdb32b403/certifi-2015.11.20.1.tar.gz#sha256=30b0a7354a1b32caa8b4705d3f5fb2dadefac7ba4bf8af8a2176869f93e38f16 (from https://pypi.org/simple/certifi/), version: 2015.11.20.1
  Found link https://files.pythonhosted.org/packages/db/60/1ed0106bde7b14b363b15b17cc308aad93ba57d3582570f3ad7180ae0fae/certifi-2016.2.28-py2.py3-none-any.whl#sha256=75c33d546e0a732a4606749cbadcd81929f30d8b814061ca93cde49933dbb860 (from https://pypi.org/simple/certifi/), version: 2016.2.28
  Found link https://files.pythonhosted.org/packages/5c/f8/f6c54727c74579c6bbe5926f5deb9677c5810a33e11da58d1a4e2d09d041/certifi-2016.2.28.tar.gz#sha256=5e8eccf95924658c97b990b50552addb64f55e1e3dfe4880456ac1f287dc79d0 (from https://pypi.org/simple/certifi/), version: 2016.2.28
  Found link https://files.pythonhosted.org/packages/65/da/116b7b175ecdb089406ec24238d1fe668b52d3f25e4e7ba88983807eac6a/certifi-2016.8.2-py2.py3-none-any.whl#sha256=c6290b32cfccf569a621d0449fcaf9283a3e0c77108bc808545b41c779d42e0a (from https://pypi.org/simple/certifi/), version: 2016.8.2
  Found link https://files.pythonhosted.org/packages/60/d8/e4dbd7239f1dd3854135949cc2cc8344602b1545a7929b7bf652ac69fbb6/certifi-2016.8.2.tar.gz#sha256=65ddc34fd9c8509851031d7075b8325393b87e6dbe5875a723959a20266d7a41 (from https://pypi.org/simple/certifi/), version: 2016.8.2
  Found link https://files.pythonhosted.org/packages/dd/ed/e9bf6a9dc79e23c68385c4ea692f0e9e1a7880518872564f88be013b552f/certifi-2016.8.8-py2.py3-none-any.whl#sha256=04f0e6677e6a5a64ba83ade859bcdda254c1ccf58545eb72bc2067f51a01873c (from https://pypi.org/simple/certifi/), version: 2016.8.8
  Found link https://files.pythonhosted.org/packages/41/bf/88a3269c7c95fc94a2c581c4b1b3d3ec21af7a268d6a3a4e54578adccfd6/certifi-2016.8.8.tar.gz#sha256=99864ed602d8a9d212e339b15ffa438895002eda7b7db20dca5309dac9605ae9 (from https://pypi.org/simple/certifi/), version: 2016.8.8
  Found link https://files.pythonhosted.org/packages/34/21/ebb383f944dfc3a14461ee021089da90477be919a5554117c184ae3d44be/certifi-2016.8.31-py2.py3-none-any.whl#sha256=172844a3e2896c924e6aa2657b2e56586a724f27edd0e9592be9353f3a3f6c73 (from https://pypi.org/simple/certifi/), version: 2016.8.31
  Found link https://files.pythonhosted.org/packages/1c/d1/0133a5084f0d17db0270c6061e824a11b0e417d743f5ff4c594f4090ed89/certifi-2016.8.31.tar.gz#sha256=f7708a42d86f29ccc7c8c4ff9d34a8d854d8d78eb2973d1f28406bb43d6b8919 (from https://pypi.org/simple/certifi/), version: 2016.8.31
  Found link https://files.pythonhosted.org/packages/a2/35/b7b457c95fdd661d4c179201e9e58a2181934695943b08ccfcba09284b4e/certifi-2016.9.26-py2.py3-none-any.whl#sha256=a60073d7bb5cb01671877efda875e8dab755b98baedfbb9b8b3d9be2d52ad022 (from https://pypi.org/simple/certifi/), version: 2016.9.26
  Found link https://files.pythonhosted.org/packages/4f/75/e1bc6e363a2c76f8d7e754c27c437dbe4086414e1d6d2f6b2a3e7846f22b/certifi-2016.9.26.tar.gz#sha256=8275aef1bbeaf05c53715bfc5d8569bd1e04ca1e8e69608cc52bcaac2604eb19 (from https://pypi.org/simple/certifi/), version: 2016.9.26
  Found link https://files.pythonhosted.org/packages/21/f7/7bb6b1c5ba1db21515950bc16b22cd7ef7d27024100f326a19921efd2ce0/certifi-2017.1.23-py2.py3-none-any.whl#sha256=f74a224a9860fd5a2e9757230a7ea3eba82d6d46914780abc18e70c8b58d4bf8 (from https://pypi.org/simple/certifi/), version: 2017.1.23
  Found link https://files.pythonhosted.org/packages/b6/fa/ca682d5ace0700008d246664e50db8d095d23750bb212c0086305450c276/certifi-2017.1.23.tar.gz#sha256=81877fb7ac126e9215dfb15bfef7115fdc30e798e0013065158eed0707fd99ce (from https://pypi.org/simple/certifi/), version: 2017.1.23
  Found link https://files.pythonhosted.org/packages/eb/01/c1f58987b777d6c4ec535b4e004a4a07bfc9db06f0c7533367ca6da8f2a6/certifi-2017.4.17-py2.py3-none-any.whl#sha256=f4318671072f030a33c7ca6acaef720ddd50ff124d1388e50c1bda4cbd6d7010 (from https://pypi.org/simple/certifi/), version: 2017.4.17
  Found link https://files.pythonhosted.org/packages/dd/0e/1e3b58c861d40a9ca2d7ea4ccf47271d4456ae4294c5998ad817bd1b4396/certifi-2017.4.17.tar.gz#sha256=f7527ebf7461582ce95f7a9e03dd141ce810d40590834f4ec20cddd54234c10a (from https://pypi.org/simple/certifi/), version: 2017.4.17
  Found link https://files.pythonhosted.org/packages/dc/ec/38df4e406cfca294fd6e242ea38bd943f47885d95e4dbf1783146f80e391/certifi-2017.7.27-py2.py3-none-any.whl#sha256=f0c0494d4a43fc862826a8ac731538ac68120524d4438e864a1ce2a2916e495d (from https://pypi.org/simple/certifi/), version: 2017.7.27
  Found link https://files.pythonhosted.org/packages/fa/70/bf24052d94f00bfdb70ac70840bfa1ba61e6d56ee7da5f62ecbca743c87e/certifi-2017.7.27.tar.gz#sha256=a7e03cbaf96baad108e34602848d0e4f04e59185325a61e63c96fcf67cee5fcd (from https://pypi.org/simple/certifi/), version: 2017.7.27
  Found link https://files.pythonhosted.org/packages/40/66/06130724e8205fc8c105db7edb92871c7fff7d31324d7f4405c762624a43/certifi-2017.7.27.1-py2.py3-none-any.whl#sha256=54a07c09c586b0e4c619f02a5e94e36619da8e2b053e20f594348c0611803704 (from https://pypi.org/simple/certifi/), version: 2017.7.27.1
  Found link https://files.pythonhosted.org/packages/20/d0/3f7a84b0c5b89e94abbd073a5f00c7176089f526edb056686751d5064cbd/certifi-2017.7.27.1.tar.gz#sha256=40523d2efb60523e113b44602298f0960e900388cf3bb6043f645cf57ea9e3f5 (from https://pypi.org/simple/certifi/), version: 2017.7.27.1
  Found link https://files.pythonhosted.org/packages/29/9b/25ef61e948321296f029f53c9f67cc2b54e224db509eb67ce17e0df6044a/certifi-2017.11.5-py2.py3-none-any.whl#sha256=244be0d93b71e93fc0a0a479862051414d0e00e16435707e5bf5000f92e04694 (from https://pypi.org/simple/certifi/), version: 2017.11.5
  Found link https://files.pythonhosted.org/packages/23/3f/8be01c50ed24a4bd6b8da799839066ce0288f66f5e11f0367323467f0cbc/certifi-2017.11.5.tar.gz#sha256=5ec74291ca1136b40f0379e1128ff80e866597e4e2c1e755739a913bbc3613c0 (from https://pypi.org/simple/certifi/), version: 2017.11.5
  Found link https://files.pythonhosted.org/packages/fa/53/0a5562e2b96749e99a3d55d8c7df91c9e4d8c39a9da1f1a49ac9e4f4b39f/certifi-2018.1.18-py2.py3-none-any.whl#sha256=14131608ad2fd56836d33a71ee60fa1c82bc9d2c8d98b7bdbc631fe1b3cd1296 (from https://pypi.org/simple/certifi/), version: 2018.1.18
  Found link https://files.pythonhosted.org/packages/15/d4/2f888fc463d516ff7bf2379a4e9a552fef7f22a94147655d9b1097108248/certifi-2018.1.18.tar.gz#sha256=edbc3f203427eef571f79a7692bb160a2b0f7ccaa31953e99bd17e307cf63f7d (from https://pypi.org/simple/certifi/), version: 2018.1.18
  Found link https://files.pythonhosted.org/packages/7c/e6/92ad559b7192d846975fc916b65f667c7b8c3a32bea7372340bfe9a15fa5/certifi-2018.4.16-py2.py3-none-any.whl#sha256=9fa520c1bacfb634fa7af20a76bcbd3d5fb390481724c597da32c719a7dca4b0 (from https://pypi.org/simple/certifi/), version: 2018.4.16
  Found link https://files.pythonhosted.org/packages/4d/9c/46e950a6f4d6b4be571ddcae21e7bc846fcbb88f1de3eff0f6dd0a6be55d/certifi-2018.4.16.tar.gz#sha256=13e698f54293db9f89122b0581843a782ad0934a4fe0172d2a980ba77fc61bb7 (from https://pypi.org/simple/certifi/), version: 2018.4.16
  Found link https://files.pythonhosted.org/packages/16/1f/50d729c104b21c1042aa51560da6141d1cab476ba7015d92b2111c8db841/certifi-2018.8.13-py2.py3-none-any.whl#sha256=b6e8b28b2b7e771a41ecdd12d4d43262ecab52adebbafa42c77d6b57fb6ad3a4 (from https://pypi.org/simple/certifi/), version: 2018.8.13
  Found link https://files.pythonhosted.org/packages/53/0d/d1d13a63563cc50a27b310f5612645bef06d29a5022a7e79ac659dd0fc50/certifi-2018.8.13.tar.gz#sha256=4c1d68a1408dd090d2f3a869aa94c3947cc1d967821d1ed303208c9f41f0f2f4 (from https://pypi.org/simple/certifi/), version: 2018.8.13
  Found link https://files.pythonhosted.org/packages/df/f7/04fee6ac349e915b82171f8e23cee63644d83663b34c539f7a09aed18f9e/certifi-2018.8.24-py2.py3-none-any.whl#sha256=456048c7e371c089d0a77a5212fb37a2c2dce1e24146e3b7e0261736aaeaa22a (from https://pypi.org/simple/certifi/), version: 2018.8.24
  Found link https://files.pythonhosted.org/packages/e1/0f/f8d5e939184547b3bdc6128551b831a62832713aa98c2ccdf8c47ecc7f17/certifi-2018.8.24.tar.gz#sha256=376690d6f16d32f9d1fe8932551d80b23e9d393a8578c5633a2ed39a64861638 (from https://pypi.org/simple/certifi/), version: 2018.8.24
  Found link https://files.pythonhosted.org/packages/56/9d/1d02dd80bc4cd955f98980f28c5ee2200e1209292d5f9e9cc8d030d18655/certifi-2018.10.15-py2.py3-none-any.whl#sha256=339dc09518b07e2fa7eda5450740925974815557727d6bd35d319c1524a04a4c (from https://pypi.org/simple/certifi/), version: 2018.10.15
  Found link https://files.pythonhosted.org/packages/41/b6/4f0cefba47656583217acd6cd797bc2db1fede0d53090fdc28ad2c8e0716/certifi-2018.10.15.tar.gz#sha256=6d58c986d22b038c8c0df30d639f23a3e6d172a05c3583e766f4c0b785c0986a (from https://pypi.org/simple/certifi/), version: 2018.10.15
  Found link https://files.pythonhosted.org/packages/9f/e0/accfc1b56b57e9750eba272e24c4dddeac86852c2bebd1236674d7887e8a/certifi-2018.11.29-py2.py3-none-any.whl#sha256=993f830721089fef441cdfeb4b2c8c9df86f0c63239f06bd025a76a7daddb033 (from https://pypi.org/simple/certifi/), version: 2018.11.29
  Found link https://files.pythonhosted.org/packages/55/54/3ce77783acba5979ce16674fc98b1920d00b01d337cfaaf5db22543505ed/certifi-2018.11.29.tar.gz#sha256=47f9c83ef4c0c621eaef743f133f09fa8a74a9b75f037e8624f83bd1b6626cb7 (from https://pypi.org/simple/certifi/), version: 2018.11.29
  Found link https://files.pythonhosted.org/packages/60/75/f692a584e85b7eaba0e03827b3d51f45f571c2e793dd731e598828d380aa/certifi-2019.3.9-py2.py3-none-any.whl#sha256=59b7658e26ca9c7339e00f8f4636cdfe59d34fa37b9b04f6f9e9926b3cece1a5 (from https://pypi.org/simple/certifi/), version: 2019.3.9
  Found link https://files.pythonhosted.org/packages/06/b8/d1ea38513c22e8c906275d135818fee16ad8495985956a9b7e2bb21942a1/certifi-2019.3.9.tar.gz#sha256=b26104d6835d1f5e49452a26eb2ff87fe7090b89dfcaee5ea2212697e1e1d7ae (from https://pypi.org/simple/certifi/), version: 2019.3.9
  Found link https://files.pythonhosted.org/packages/69/1b/b853c7a9d4f6a6d00749e94eb6f3a041e342a885b87340b79c1ef73e3a78/certifi-2019.6.16-py2.py3-none-any.whl#sha256=046832c04d4e752f37383b628bc601a7ea7211496b4638f6514d0e5b9acc4939 (from https://pypi.org/simple/certifi/), version: 2019.6.16
  Found link https://files.pythonhosted.org/packages/c5/67/5d0548226bcc34468e23a0333978f0e23d28d0b3f0c71a151aef9c3f7680/certifi-2019.6.16.tar.gz#sha256=945e3ba63a0b9f577b1395204e13c3a231f9bc0223888be653286534e5873695 (from https://pypi.org/simple/certifi/), version: 2019.6.16
  Found link https://files.pythonhosted.org/packages/18/b0/8146a4f8dd402f60744fa380bc73ca47303cccf8b9190fd16a827281eac2/certifi-2019.9.11-py2.py3-none-any.whl#sha256=fd7c7c74727ddcf00e9acd26bba8da604ffec95bf1c2144e67aff7a8b50e6cef (from https://pypi.org/simple/certifi/), version: 2019.9.11
  Found link https://files.pythonhosted.org/packages/62/85/7585750fd65599e88df0fed59c74f5075d4ea2fe611deceb95dd1c2fb25b/certifi-2019.9.11.tar.gz#sha256=e4f3620cfea4f83eedc95b24abd9cd56f3c4b146dd0177e83a21b4eb49e21e50 (from https://pypi.org/simple/certifi/), version: 2019.9.11
  Found link https://files.pythonhosted.org/packages/b9/63/df50cac98ea0d5b006c55a399c3bf1db9da7b5a24de7890bc9cfd5dd9e99/certifi-2019.11.28-py2.py3-none-any.whl#sha256=017c25db2a153ce562900032d5bc68e9f191e44e9a0f762f373977de9df1fbb3 (from https://pypi.org/simple/certifi/), version: 2019.11.28
  Found link https://files.pythonhosted.org/packages/41/bf/9d214a5af07debc6acf7f3f257265618f1db242a3f8e49a9b516f24523a6/certifi-2019.11.28.tar.gz#sha256=25b64c7da4cd7479594d035c08c2d809eb4aab3a26e5a990ea98cc450c320f1f (from https://pypi.org/simple/certifi/), version: 2019.11.28
  Found link https://files.pythonhosted.org/packages/31/2a/a3058b6203b5e26bba5b5f28bf719d05ce87aff38677f1be95bf0c264ce2/certifi-2020.4.5-py2.py3-none-any.whl#sha256=e68768546aa055623812ada64aec5e1f02ca20a9e7f3d3432dd8b0f35a6e7951 (from https://pypi.org/simple/certifi/), version: 2020.4.5
  Found link https://files.pythonhosted.org/packages/12/6c/122f5c6c44ecbfd27b913a99b5db8cc5df9c3aed144a5da889e5fbc4411f/certifi-2020.4.5.tar.gz#sha256=b0e07438175de96ab74de9ab5dc40985ef8b44a41e9636a2000099dc3b670ddd (from https://pypi.org/simple/certifi/), version: 2020.4.5
  Found link https://files.pythonhosted.org/packages/57/2b/26e37a4b034800c960a00c4e1b3d9ca5d7014e983e6e729e33ea2f36426c/certifi-2020.4.5.1-py2.py3-none-any.whl#sha256=1d987a998c75633c40847cc966fcf5904906c920a7f17ef374f5aa4282abd304 (from https://pypi.org/simple/certifi/), version: 2020.4.5.1
  Found link https://files.pythonhosted.org/packages/b8/e2/a3a86a67c3fc8249ed305fc7b7d290ebe5e4d46ad45573884761ef4dea7b/certifi-2020.4.5.1.tar.gz#sha256=51fcb31174be6e6664c5f69e3e1691a2d72a1a12e90f872cbdb1567eb47b6519 (from https://pypi.org/simple/certifi/), version: 2020.4.5.1
  Found link https://files.pythonhosted.org/packages/98/99/def511020aa8f663d4a2cfaa38467539e864799289ff354569e339e375b1/certifi-2020.4.5.2-py2.py3-none-any.whl#sha256=9cd41137dc19af6a5e03b630eefe7d1f458d964d406342dd3edf625839b944cc (from https://pypi.org/simple/certifi/), version: 2020.4.5.2
  Found link https://files.pythonhosted.org/packages/b4/19/53433f37a31543364c8676f30b291d128cdf4cd5b31b755b7890f8e89ac8/certifi-2020.4.5.2.tar.gz#sha256=5ad7e9a056d25ffa5082862e36f119f7f7cec6457fa07ee2f8c339814b80c9b1 (from https://pypi.org/simple/certifi/), version: 2020.4.5.2
  Found link https://files.pythonhosted.org/packages/5e/c4/6c4fe722df5343c33226f0b4e0bb042e4dc13483228b4718baf286f86d87/certifi-2020.6.20-py2.py3-none-any.whl#sha256=8fc0819f1f30ba15bdb34cceffb9ef04d99f420f68eb75d901e9560b8749fc41 (from https://pypi.org/simple/certifi/), version: 2020.6.20
  Found link https://files.pythonhosted.org/packages/40/a7/ded59fa294b85ca206082306bba75469a38ea1c7d44ea7e1d64f5443d67a/certifi-2020.6.20.tar.gz#sha256=5930595817496dd21bb8dc35dad090f1c2cd0adfaf21204bf6732ca5d8ee34d3 (from https://pypi.org/simple/certifi/), version: 2020.6.20
  Found link https://files.pythonhosted.org/packages/c1/6f/3d85f0850962279a7e4c622695d7b3171e95ac65308a57d3b29738b27149/certifi-2020.11.8-py2.py3-none-any.whl#sha256=1f422849db327d534e3d0c5f02a263458c3955ec0aae4ff09b95f195c59f4edd (from https://pypi.org/simple/certifi/), version: 2020.11.8
  Found link https://files.pythonhosted.org/packages/e6/de/879cf857ae6f890dfa23c3d6239814c5471936b618c8fb0c8732ad5da885/certifi-2020.11.8.tar.gz#sha256=f05def092c44fbf25834a51509ef6e631dc19765ab8a57b4e7ab85531f0a9cf4 (from https://pypi.org/simple/certifi/), version: 2020.11.8
  Found link https://files.pythonhosted.org/packages/5e/a0/5f06e1e1d463903cf0c0eebeb751791119ed7a4b3737fdc9a77f1cdfb51f/certifi-2020.12.5-py2.py3-none-any.whl#sha256=719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830 (from https://pypi.org/simple/certifi/), version: 2020.12.5
  Found link https://files.pythonhosted.org/packages/06/a9/cd1fd8ee13f73a4d4f491ee219deeeae20afefa914dfb4c130cfc9dc397a/certifi-2020.12.5.tar.gz#sha256=1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c (from https://pypi.org/simple/certifi/), version: 2020.12.5
Skipping link: not a file: https://pypi.org/simple/certifi/
Given no hashes to check 76 links for project 'certifi': discarding no candidates
Collecting certifi
  Created temporary directory: /tmp/pip-unpack-ywmx_elm
  Looking up "https://files.pythonhosted.org/packages/5e/a0/5f06e1e1d463903cf0c0eebeb751791119ed7a4b3737fdc9a77f1cdfb51f/certifi-2020.12.5-py2.py3-none-any.whl" in the cache
  Current age based on date: 14028957
  Ignoring unknown cache-control directive: immutable
  Freshness lifetime from max-age: 365000000
  The response is "fresh", returning cached response
  365000000 > 14028957
  Using cached certifi-2020.12.5-py2.py3-none-any.whl (147 kB)
  Added certifi from https://files.pythonhosted.org/packages/5e/a0/5f06e1e1d463903cf0c0eebeb751791119ed7a4b3737fdc9a77f1cdfb51f/certifi-2020.12.5-py2.py3-none-any.whl#sha256=719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830 (from -r requirements.txt (line 1)) to build tracker '/tmp/pip-req-tracker-nz48dusi'
  Removed certifi from https://files.pythonhosted.org/packages/5e/a0/5f06e1e1d463903cf0c0eebeb751791119ed7a4b3737fdc9a77f1cdfb51f/certifi-2020.12.5-py2.py3-none-any.whl#sha256=719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830 (from -r requirements.txt (line 1)) from build tracker '/tmp/pip-req-tracker-nz48dusi'
1 location(s) to search for versions of kivymd:
* https://pypi.org/simple/kivymd/
Fetching project page and analyzing links: https://pypi.org/simple/kivymd/
Getting page https://pypi.org/simple/kivymd/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/kivymd/" in the cache
Request header has "max_age" as 0, cache bypassed
https://pypi.org:443 "GET /simple/kivymd/ HTTP/1.1" 304 0
  Found link https://files.pythonhosted.org/packages/8f/ba/4995157d2b930e3c0dd66842b6af77ace7117ca2115792b760b1c122e1eb/kivymd-0.1.0.tar.gz#sha256=acde26dce142889938c96d4654c3230a66c059fbe7b8bea4669901c4b84dc44d (from https://pypi.org/simple/kivymd/), version: 0.1.0
  Found link https://files.pythonhosted.org/packages/04/34/8838c03a799f2412c8a07af7783df6292c7a140962a36176b081454ef8c9/kivymd-0.1.1.tar.gz#sha256=19c5de573b3460bf99277397f6a0711641b2cd4e3574e16c46caaccafc5d79ba (from https://pypi.org/simple/kivymd/), version: 0.1.1
  Found link https://files.pythonhosted.org/packages/f1/2e/4bec1d1f1d004f54cd00b4013702de9815922df89bc05b562499a9bc1b9d/kivymd-0.1.2.tar.gz#sha256=d4fd1c6a80ce432bf47996650608fb935fac500bbcf5a78ce27f137ea0bb879b (from https://pypi.org/simple/kivymd/), version: 0.1.2
  Found link https://files.pythonhosted.org/packages/28/eb/e22b1eeedf880c0eb84dd0b7395431c06ad134d8dd621cf0e87c586d9afc/kivymd-0.100.2.tar.gz#sha256=61013381a1cb84788b646cffb35c30fe04197b771f29c07a793971602d9d791b (from https://pypi.org/simple/kivymd/), version: 0.100.2
  Found link https://files.pythonhosted.org/packages/fd/49/ecf0870d6dda485318a3b7df896d9c5826a954f3ad4e5530e03af791ee65/kivymd-0.102.0-py3-none-any.whl#sha256=a32c430769736eba4d8fa75526828854bd09d71ddf3f539fb16bd854b1c52cfb (from https://pypi.org/simple/kivymd/) (requires-python:>=3.5), version: 0.102.0
  Found link https://files.pythonhosted.org/packages/1a/54/3cee79e82648f98082c77d8e41a265fd6a04dc41e420b21e91529fbd3be4/kivymd-0.102.0.tar.gz#sha256=0b9fa3f5b67c08f607981e49b41f367f35e2c2bca0beffdd0e809246a5d110b7 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.5), version: 0.102.0
  Found link https://files.pythonhosted.org/packages/e6/9a/46b9bce27989abcb8905b0eededf18974e329cebb07335b690dbc26ee58c/kivymd-0.102.1-py3-none-any.whl#sha256=574adeb3935cc189f854294c754158e91641ed1657e4f7811879071a9afc0d8f (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.102.1
  Found link https://files.pythonhosted.org/packages/c2/6a/b38fb717692f8bb8d80ca6531c1345f44d2fe6e211c602443c82c9747d6d/kivymd-0.102.1.tar.gz#sha256=a49e58ea231d42b2cba8be747979cf5f9751dbf3528bc650874b0b880f439bac (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.102.1
  Found link https://files.pythonhosted.org/packages/d0/f9/a785c8c7fcee4c3a4923cd275a10cddfd1ce907fe3b0852d83d97ad072bb/kivymd-0.103.0-py3-none-any.whl#sha256=3b154b3b5bbc8fa8cdb872ea25e4ada6fc47696861659ca7414ae318aad63220 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.103.0
  Found link https://files.pythonhosted.org/packages/74/59/1be724906c6d5388510d73b9eb55faee045837071132eda34713b12f6675/kivymd-0.103.0.tar.gz#sha256=21e6f88dcf2af10d180e0603fd8b00c89223dd2b935d854c25416150939085bf (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.103.0
  Found link https://files.pythonhosted.org/packages/83/e3/7bc23e19653417f0f841082e3c238a0af8282e25fb2caa4ba7b1c0954125/kivymd-0.104.0-py3-none-any.whl#sha256=74a219731502eda3d35713176f2d7b5ac502a54974de11b133c30985db1d8ac2 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.104.0
  Found link https://files.pythonhosted.org/packages/7b/63/2c8e86bca31ddc9a9d5378a37222d5e69e6c952ce10317aff905532c4f96/kivymd-0.104.0.tar.gz#sha256=59eb59ff0041ba5d914c7032ef4f0eb8145ac229612da0f85e56ca2aa889ab9e (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.104.0
  Found link https://files.pythonhosted.org/packages/c4/4e/f33085dab6420009fefc214cb3f8fc88ecd9d9e766976aa14f93b033a53a/kivymd-0.104.1-py3-none-any.whl#sha256=a9d3e14950ae616bf13f0a9ebccc761ec84e2ba36e671d0102045eaa63dbc2b0 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.104.1
  Found link https://files.pythonhosted.org/packages/37/a1/460313db291c9cd4a128d4f58f08faf2bf3e4c9dc5ca935b489e06efd7f4/kivymd-0.104.1.tar.gz#sha256=9dcbc2cb8affde9c82572198fddb32c814cdd57254a0e4b00c53882db2c8d6a6 (from https://pypi.org/simple/kivymd/) (requires-python:>=3.6), version: 0.104.1
Skipping link: not a file: https://pypi.org/simple/kivymd/
Given no hashes to check 2 links for project 'kivymd': discarding no candidates
Collecting kivymd==0.104.1
  Created temporary directory: /tmp/pip-unpack-ev6biz_w
  Looking up "https://files.pythonhosted.org/packages/c4/4e/f33085dab6420009fefc214cb3f8fc88ecd9d9e766976aa14f93b033a53a/kivymd-0.104.1-py3-none-any.whl" in the cache
  Current age based on date: 17363135
  Ignoring unknown cache-control directive: immutable
  Freshness lifetime from max-age: 365000000
  The response is "fresh", returning cached response
  365000000 > 17363135
  Using cached kivymd-0.104.1-py3-none-any.whl (2.4 MB)
  Added kivymd==0.104.1 from https://files.pythonhosted.org/packages/c4/4e/f33085dab6420009fefc214cb3f8fc88ecd9d9e766976aa14f93b033a53a/kivymd-0.104.1-py3-none-any.whl#sha256=a9d3e14950ae616bf13f0a9ebccc761ec84e2ba36e671d0102045eaa63dbc2b0 (from -r requirements.txt (line 2)) to build tracker '/tmp/pip-req-tracker-nz48dusi'
  Removed kivymd==0.104.1 from https://files.pythonhosted.org/packages/c4/4e/f33085dab6420009fefc214cb3f8fc88ecd9d9e766976aa14f93b033a53a/kivymd-0.104.1-py3-none-any.whl#sha256=a9d3e14950ae616bf13f0a9ebccc761ec84e2ba36e671d0102045eaa63dbc2b0 (from -r requirements.txt (line 2)) from build tracker '/tmp/pip-req-tracker-nz48dusi'
1 location(s) to search for versions of plyer:
* https://pypi.org/simple/plyer/
Fetching project page and analyzing links: https://pypi.org/simple/plyer/
Getting page https://pypi.org/simple/plyer/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/plyer/" in the cache
Request header has "max_age" as 0, cache bypassed
https://pypi.org:443 "GET /simple/plyer/ HTTP/1.1" 304 0
  Found link https://files.pythonhosted.org/packages/4e/28/4ea35dea74751b682409105dfb53f02caf439d48ac573587cc624be5d4d4/plyer-1.1.tar.gz#sha256=3dce7ba67b384cdafc6a59e0174ed6ab6477cec3504c875c8ca25110ac8cb946 (from https://pypi.org/simple/plyer/), version: 1.1
  Found link https://files.pythonhosted.org/packages/96/99/c881225975b2e75f392a96c70d453f3b46617b732a4d1389581895084345/plyer-1.1.1.tar.gz#sha256=256cb9f47e83a103a959743ee0d4fd01911f06d5ca7068eb70dacaa4357457ee (from https://pypi.org/simple/plyer/), version: 1.1.1
  Found link https://files.pythonhosted.org/packages/69/d7/d74de4b216a5df1cfd34610e7a9f1e06a1fcdfc4bc20979e7ef1e8730316/plyer-1.1.2.tar.gz#sha256=829a82d67cdb2720f87a9ccaa0cd08abbb9bce9c62994ac8fbac0560253e06e0 (from https://pypi.org/simple/plyer/), version: 1.1.2
  Found link https://files.pythonhosted.org/packages/7e/1c/9080182020b1eb957a54137a2799bda7df28e57ab501d4f5a555dc2e5a3b/plyer-1.2.0.tar.gz#sha256=6f718169c1a29c12ac48029e048f068963151d7cda2c5cf9decbf09a3dee5b5c (from https://pypi.org/simple/plyer/), version: 1.2.0
  Found link https://files.pythonhosted.org/packages/7c/41/4fa7863ddd44cf27a9de57e20fb8bcafc48113d0f70ffbf2fe1a1be64215/plyer-1.2.1.tar.gz#sha256=cb0f865ab95f15875f80248fb72077d95db3dfef10f9ef605d533d2b3cc5f613 (from https://pypi.org/simple/plyer/), version: 1.2.1
  Found link https://files.pythonhosted.org/packages/68/83/9aef71c1b8f9376f0995e8454d9b6973147efb1ab3efe16a81008a7e4aa7/plyer-1.2.2.tar.gz#sha256=bbf3fe6c43dd8800cbddec122095e457a681c31a5146818f32dda6586dd4e360 (from https://pypi.org/simple/plyer/), version: 1.2.2
  Found link https://files.pythonhosted.org/packages/35/6d/bc63f086e7b4b1d023d3e99c48b21614351d679df765573e9b4e92ca91c2/plyer-1.2.3.tar.gz#sha256=eae44890099d798be53d96bc88c1ed2d66248e23aa9ed740f38b40e397e153df (from https://pypi.org/simple/plyer/), version: 1.2.3
  Found link https://files.pythonhosted.org/packages/30/e7/9ea036caf06be3f7a10474885a9f017554879c2f55b229e9a4ec2c0a90ff/plyer-1.2.4.tar.gz#sha256=3e3267d1414242c35e5d381d5bfc4f2651e181d11bc374ecc90d00658d05aaaf (from https://pypi.org/simple/plyer/), version: 1.2.4
  Found link https://files.pythonhosted.org/packages/c4/19/f7cf7658e0f671294d8675a0bcc5d76883e8e738cc1e78dd097e2ea5fa72/plyer-1.3.0.tar.gz#sha256=bdc4d09d5c1c236025a32e4fb48a83a0caa5c48667b35de93db25c8f916ec750 (from https://pypi.org/simple/plyer/), version: 1.3.0
  Found link https://files.pythonhosted.org/packages/85/9f/1f02d5f1c9935e8ec4705eb22ad466b3f709de57c4acb08a3207afd26e95/plyer-1.3.1-py3-none-any.whl#sha256=ad6f1bd2e6043b7f763ce46643f6119063449a457c1db96b1bad2134ebe38750 (from https://pypi.org/simple/plyer/), version: 1.3.1
  Found link https://files.pythonhosted.org/packages/98/9f/4ac0c915e93db2c8bb492e5178b1a89a5139991a72ae44d78dcc1f4184be/plyer-1.3.1.tar.gz#sha256=00691887474793582cc9df84b32f82c68e14bd23d2734b69401c98ce50729602 (from https://pypi.org/simple/plyer/), version: 1.3.1
  Found link https://files.pythonhosted.org/packages/fe/87/15d6377b2d46370d5f7645dab8bdf93cd16df12d939852794a510c7300a7/plyer-1.3.2-py3-none-any.whl#sha256=bd5045289a16930cc605397ed493f7bdffe429606f60c9f75d7188715cad7385 (from https://pypi.org/simple/plyer/), version: 1.3.2
  Found link https://files.pythonhosted.org/packages/d3/ed/d083c758d7d8d8de2265db3d7c7610e14097fe00fcb9fbc48bc458b4ab52/plyer-1.3.2.tar.gz#sha256=c666c5234715925ea92e549604c9f7762dfd7ce3b2dc17921598f4af5fea56e8 (from https://pypi.org/simple/plyer/), version: 1.3.2
  Found link https://files.pythonhosted.org/packages/64/02/fa5c7054a879cfda9c937fedf8abfda6706c088da2f97c16655cf3c88626/plyer-1.4.0-py3-none-any.whl#sha256=00a6611e17e514f13bb1b2cea5265f852adcf9f47035aac40b660aa1010eba97 (from https://pypi.org/simple/plyer/), version: 1.4.0
  Found link https://files.pythonhosted.org/packages/22/8c/3bdd25b9e489fa62b06937b51dc2611844e58108f458c8e12ea6de7c5db3/plyer-1.4.0.tar.gz#sha256=6935eb731e6e7448800e91c700524a5d771c3154fac3366e49a069af0355305d (from https://pypi.org/simple/plyer/), version: 1.4.0
  Found link https://files.pythonhosted.org/packages/76/84/debb5465ffcf58b5c1c9a381c3d30992164547e405619133a4318fc02044/plyer-1.4.2-py2.py3-none-any.whl#sha256=d194cdce3fd941b524dd036d945ded6e84420a3f703b73512fbedf45c7a02807 (from https://pypi.org/simple/plyer/), version: 1.4.2
  Found link https://files.pythonhosted.org/packages/99/29/4ffab64d538df5586558ba2783a9c7ab0f1459fe309f41bd9146aa2e6c97/plyer-1.4.2.tar.gz#sha256=4d5a5b1ef03eb3bdd9f6f949adaa0576043dee4b1845ca7d02b8bf0645c6b5ed (from https://pypi.org/simple/plyer/), version: 1.4.2
  Found link https://files.pythonhosted.org/packages/89/3f/9153265abcaa93418abee8b49284941330426d5afb2f72d75d067462af84/plyer-1.4.3-py2.py3-none-any.whl#sha256=6192a5c15f2cc8fe42de5a7ab898ed2d2cd47315a88dd7e0f6fd90ec972b87a9 (from https://pypi.org/simple/plyer/), version: 1.4.3
  Found link https://files.pythonhosted.org/packages/56/c3/8679adaea271e92de6f69eaf6d1afa7d1c90dc3c13f5763d68b6398f62b8/plyer-1.4.3.tar.gz#sha256=bf8de0cf76811201c475c1763703c1dbcc40c1a0a5520e9bfeee92271ba7e600 (from https://pypi.org/simple/plyer/), version: 1.4.3
  Found link https://files.pythonhosted.org/packages/26/b1/23800271e74bf5ce54e124df0c495506bb9857d05f63cf6bc3ce4d89f5c9/plyer-2.0.0-py2.py3-none-any.whl#sha256=d62a1e68622042e6b9367ba429844e989ea7b13035fd1befe66f385aaaba6de1 (from https://pypi.org/simple/plyer/), version: 2.0.0
  Found link https://files.pythonhosted.org/packages/ef/f6/7061dc660e04f5aa4c2bf13bdd7320812f89c02699f67d9e77445a50ec8e/plyer-2.0.0.tar.gz#sha256=8de38b17bc438df36eedeacd546cf05303ab871855af0669fc4e8df51f2adf94 (from https://pypi.org/simple/plyer/), version: 2.0.0
Skipping link: not a file: https://pypi.org/simple/plyer/
Given no hashes to check 21 links for project 'plyer': discarding no candidates
Collecting plyer
  Created temporary directory: /tmp/pip-unpack-k1kq1z7p
  Looking up "https://files.pythonhosted.org/packages/26/b1/23800271e74bf5ce54e124df0c495506bb9857d05f63cf6bc3ce4d89f5c9/plyer-2.0.0-py2.py3-none-any.whl" in the cache
  Current age based on date: 15247458
  Ignoring unknown cache-control directive: immutable
  Freshness lifetime from max-age: 365000000
  The response is "fresh", returning cached response
  365000000 > 15247458
  Using cached plyer-2.0.0-py2.py3-none-any.whl (131 kB)
  Added plyer from https://files.pythonhosted.org/packages/26/b1/23800271e74bf5ce54e124df0c495506bb9857d05f63cf6bc3ce4d89f5c9/plyer-2.0.0-py2.py3-none-any.whl#sha256=d62a1e68622042e6b9367ba429844e989ea7b13035fd1befe66f385aaaba6de1 (from -r requirements.txt (line 3)) to build tracker '/tmp/pip-req-tracker-nz48dusi'
  Removed plyer from https://files.pythonhosted.org/packages/26/b1/23800271e74bf5ce54e124df0c495506bb9857d05f63cf6bc3ce4d89f5c9/plyer-2.0.0-py2.py3-none-any.whl#sha256=d62a1e68622042e6b9367ba429844e989ea7b13035fd1befe66f385aaaba6de1 (from -r requirements.txt (line 3)) from build tracker '/tmp/pip-req-tracker-nz48dusi'
1 location(s) to search for versions of python:
* https://pypi.org/simple/python/
Fetching project page and analyzing links: https://pypi.org/simple/python/
Getting page https://pypi.org/simple/python/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/python/" in the cache
Request header has "max_age" as 0, cache bypassed
https://pypi.org:443 "GET /simple/python/ HTTP/1.1" 404 13
Status code 404 not in (200, 203, 300, 301)
Could not fetch URL https://pypi.org/simple/python/: 404 Client Error: Not Found for url: https://pypi.org/simple/python/ - skipping
Skipping link: not a file: https://pypi.org/simple/python/
Given no hashes to check 0 links for project 'python': discarding no candidates
ERROR: Could not find a version that satisfies the requirement python==3.9.5 (from versions: none)
ERROR: No matching distribution found for python==3.9.5
Exception information:
Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 341, in resolve
    name, crit = self._merge_into_criterion(r, parent=None)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 173, in _merge_into_criterion
    raise RequirementsConflicted(criterion)
pip._vendor.resolvelib.resolvers.RequirementsConflicted: Requirements conflict: SpecifierRequirement('python==3.9.5')

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 127, in resolve
    result = self._result = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 473, in resolve
    state = resolution.resolve(requirements, max_rounds=max_rounds)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 343, in resolve
    raise ResolutionImpossible(e.criterion.information)
pip._vendor.resolvelib.resolvers.ResolutionImpossible: [RequirementInformation(requirement=SpecifierRequirement('python==3.9.5'), parent=None)]

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py", line 180, in _main
    status = self.run(options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py", line 204, in wrapper
    return func(self, options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py", line 318, in run
    requirement_set = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 136, in resolve
    raise error from e
pip._internal.exceptions.DistributionNotFound: No matching distribution found for python==3.9.5
Removed build tracker: '/tmp/pip-req-tracker-nz48dusi'

  STDERR:

# Command failed: /home/purushottam2/Desktop/myupdateproject/bin/python3.9 -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=python==3.9.5,Kivy==2.0.0,kivymd==0.104.1,sdl2_ttf==2.0.15,plyer,android,pil,jnius --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a" --ndk-api=21
# ENVIRONMENT:
#     SHELL = '/bin/bash'
#     SESSION_MANAGER = 'local/purushottam2-HP-Laptop-15-bs1xx:@/tmp/.ICE-unix/1768,unix/purushottam2-HP-Laptop-15-bs1xx:/tmp/.ICE-unix/1768'
#     QT_ACCESSIBILITY = '1'
#     COLORTERM = 'truecolor'
#     XDG_CONFIG_DIRS = '/etc/xdg/xdg-ubuntu:/etc/xdg'
#     XDG_MENU_PREFIX = 'gnome-'
#     GNOME_DESKTOP_SESSION_ID = 'this-is-deprecated'
#     LANGUAGE = 'en_IN:en'
#     MANDATORY_PATH = '/usr/share/gconf/ubuntu.mandatory.path'
#     GNOME_SHELL_SESSION_MODE = 'ubuntu'
#     SSH_AUTH_SOCK = '/run/user/1000/keyring/ssh'
#     XMODIFIERS = '@im=ibus'
#     DESKTOP_SESSION = 'ubuntu'
#     SSH_AGENT_PID = '1684'
#     GTK_MODULES = 'gail:atk-bridge'
#     DBUS_STARTER_BUS_TYPE = 'session'
#     PWD = '/home/purushottam2/Desktop/myupdateproject/yyy'
#     XDG_SESSION_DESKTOP = 'ubuntu'
#     LOGNAME = 'purushottam2'
#     XDG_SESSION_TYPE = 'x11'
#     GPG_AGENT_INFO = '/run/user/1000/gnupg/S.gpg-agent:0:1'
#     XAUTHORITY = '/run/user/1000/gdm/Xauthority'
#     WINDOWPATH = '2'
#     HOME = '/home/purushottam2'
#     USERNAME = 'purushottam2'
#     IM_CONFIG_PHASE = '1'
#     LANG = 'en_IN'
#     LS_COLORS = 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:'
#     XDG_CURRENT_DESKTOP = 'ubuntu:GNOME'
#     VIRTUAL_ENV = '/home/purushottam2/Desktop/myupdateproject'
#     VTE_VERSION = '6003'
#     GNOME_TERMINAL_SCREEN = '/org/gnome/Terminal/screen/17c328da_8d09_4a03_b8c2_9d37c7a4d522'
#     INVOCATION_ID = 'ade6b7eebfed4247b0116ab676b69f0f'
#     MANAGERPID = '1490'
#     LESSCLOSE = '/usr/bin/lesspipe %s %s'
#     XDG_SESSION_CLASS = 'user'
#     TERM = 'xterm-256color'
#     DEFAULTS_PATH = '/usr/share/gconf/ubuntu.default.path'
#     LESSOPEN = '| /usr/bin/lesspipe %s'
#     USER = 'purushottam2'
#     GNOME_TERMINAL_SERVICE = ':1.87'
#     DISPLAY = ':1'
#     SHLVL = '1'
#     QT_IM_MODULE = 'ibus'
#     DBUS_STARTER_ADDRESS = 'unix:path=/run/user/1000/bus,guid=a0cf6738d2b45efb75b86fea60a3ea94'
#     XDG_RUNTIME_DIR = '/run/user/1000'
#     PS1 = ('(myupdateproject) \\[\\e]0;\\u@\\h: '
 '\\w\\a\\]${debian_chroot:+($debian_chroot)}\\[\\033[01;32m\\]\\u@\\h\\[\\033[00m\\]:\\[\\033[01;34m\\]\\w\\[\\033[00m\\]\\$ ')
#     JOURNAL_STREAM = '8:38732'
#     XDG_DATA_DIRS = '/usr/share/ubuntu:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop'
#     PATH = '/home/purushottam2/.buildozer/android/platform/apache-ant-1.9.4/bin:/home/purushottam2/Desktop/myupdateproject/bin:/home/purushottam2/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin'
#     GDMSESSION = 'ubuntu'
#     DBUS_SESSION_BUS_ADDRESS = 'unix:path=/run/user/1000/bus,guid=a0cf6738d2b45efb75b86fea60a3ea94'
#     _ = '/home/purushottam2/Desktop/myupdateproject/bin/buildozer'
#     OLDPWD = '/home/purushottam2/Desktop/myupdateproject'
#     PACKAGES_PATH = '/home/purushottam2/.buildozer/android/packages'
#     ANDROIDSDK = '/home/purushottam2/.buildozer/android/platform/android-sdk'
#     ANDROIDNDK = '/home/purushottam2/.buildozer/android/platform/android-ndk-r19b'
#     ANDROIDAPI = '27'
#     ANDROIDMINAPI = '21'
# 
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2
(myupdateproject) purushottam2@purushottam2-HP-Laptop-15-bs1xx:~/Desktop/myupdateproject/yyy$ 
Exception information:
Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 341, in resolve
    name, crit = self._merge_into_criterion(r, parent=None)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 173, in _merge_into_criterion
    raise RequirementsConflicted(criterion)
pip._vendor.resolvelib.resolvers.RequirementsConflicted: Requirements conflict: SpecifierRequirement('python==3.9.5')

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 127, in resolve
    result = self._result = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 473, in resolve
    state = resolution.resolve(requirements, max_rounds=max_rounds)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 343, in resolve
    raise ResolutionImpossible(e.criterion.information)
pip._vendor.resolvelib.resolvers.ResolutionImpossible: [RequirementInformation(requirement=SpecifierRequirement('python==3.9.5'), parent=None)]

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py", line 180, in _main
    status = self.run(options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py", line 204, in wrapper
    return func(self, options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py", line 318, in run
    requirement_set = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 136, in resolve
    raise error from e
pip._internal.exceptions.DistributionNotFound: No matching distribution found for python==3.9.5
Removed build tracker: '/tmp/pip-req-tracker-nz48dusi'

  STDERR:
Exception information:
Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 341, in resolve
    name, crit = self._merge_into_criterion(r, parent=None)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 173, in _merge_into_criterion
    raise RequirementsConflicted(criterion)
pip._vendor.resolvelib.resolvers.RequirementsConflicted: Requirements conflict: SpecifierRequirement('python==3.9.5')

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 127, in resolve
    result = self._result = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 473, in resolve
    state = resolution.resolve(requirements, max_rounds=max_rounds)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py", line 343, in resolve
    raise ResolutionImpossible(e.criterion.information)
pip._vendor.resolvelib.resolvers.ResolutionImpossible: [RequirementInformation(requirement=SpecifierRequirement('python==3.9.5'), parent=None)]

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py", line 180, in _main
    status = self.run(options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py", line 204, in wrapper
    return func(self, options, args)
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/commands/install.py", line 318, in run
    requirement_set = resolver.resolve(
  File "/home/purushottam2/Desktop/myupdateproject/yyy/.buildozer/android/platform/build-armeabi-v7a/build/venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 136, in resolve
    raise error from e
pip._internal.exceptions.DistributionNotFound: No matching distribution found for python==3.9.5
Removed build tracker: '/tmp/pip-req-tracker-nz48dusi'

  STDERR:
RobertFlatt commented 3 years ago

requirements = python==3.9.5

I expect that is the problem.

Buildozer master defaults to 3.8.1 , develop to 3.8.9
Don't use a future Python

misl6 commented 1 year ago

Default Python version for python-for-android now has been switched to 3.9.9.

BTW, python3==3.9.5 instead of python==3.9.5 would work :)