We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7d12d5 commit 055a5fcCopy full SHA for 055a5fc
pythonforandroid/recipes/libsodium/__init__.py
@@ -16,8 +16,7 @@ class LibsodiumRecipe(Recipe):
16
@property
17
def versioned_url(self):
18
asked_version = packaging_version.parse(self.version)
19
- recipe_version = packaging_version.parse(self._version)
20
- if asked_version > recipe_version:
+ if asked_version > packaging_version.parse('1.0.16'):
21
return self._url.format(self.version + '-RELEASE', self.version)
22
else:
23
return self._url.format(self.version, self.version)
0 commit comments