From 96f2401547fa0f5c3bb3838d78b3318b0cdc0045 Mon Sep 17 00:00:00 2001 From: Ansh Dadwal Date: Sat, 1 Nov 2025 15:42:22 +0530 Subject: [PATCH] `pycryptodome`: update to 3.23.0 --- pythonforandroid/recipes/pycryptodome/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pythonforandroid/recipes/pycryptodome/__init__.py b/pythonforandroid/recipes/pycryptodome/__init__.py index 9418600a29..6600368b21 100644 --- a/pythonforandroid/recipes/pycryptodome/__init__.py +++ b/pythonforandroid/recipes/pycryptodome/__init__.py @@ -1,10 +1,10 @@ -from pythonforandroid.recipe import PythonRecipe +from pythonforandroid.recipe import PyProjectRecipe -class PycryptodomeRecipe(PythonRecipe): - version = '3.6.3' - url = 'https://github.com/Legrandin/pycryptodome/archive/v{version}.tar.gz' - depends = ['setuptools', 'cffi'] +class PycryptodomeRecipe(PyProjectRecipe): + version = '3.23.0' + url = 'https://github.com/Legrandin/pycryptodome/archive/refs/tags/v{version}.tar.gz' + depends = ['cffi'] recipe = PycryptodomeRecipe()