Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.py3
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# docker build --tag=p4a --file Dockerfile.py3 .
#
# Run with:
# docker run -it --rm p4apy3 /bin/sh -c '. venv/bin/activate && p4a apk --help'
# docker run -it --rm p4a /bin/sh -c '. venv/bin/activate && p4a apk --help'
#
# Or for interactive shell:
# docker run -it --rm p4a
Expand Down
9 changes: 5 additions & 4 deletions ci/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,15 @@ class TargetPython(Enum):
'enum34',
# https://github.com/kivy/python-for-android/issues/1399
'libglob',
# cannot find -lcrystax
'cffi', 'pycryptodome', 'pymuk', 'secp256k1',
# Could not fetch URL https://pypi.org/simple/pymuk/: 404 Client Error
'pymuk',
# build_dir = glob.glob('build/lib.*')[0]
# IndexError: list index out of range
'secp256k1',
# https://github.com/kivy/python-for-android/issues/1404
'cryptography',
# https://github.com/kivy/python-for-android/issues/1294
'ffmpeg', 'ffpyplayer',
# https://github.com/kivy/python-for-android/pull/1307 ?
'gevent',
'icu',
# https://github.com/kivy/python-for-android/issues/1354
'kivent_core', 'kivent_cymunk', 'kivent_particles', 'kivent_polygen',
Expand Down
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/gevent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


class GeventRecipe(CythonRecipe):
version = '1.3.7'
version = '1.4.0'
url = 'https://pypi.python.org/packages/source/g/gevent/gevent-{version}.tar.gz'
depends = ['librt', 'greenlet']
patches = ["cross_compiling.patch"]
Expand Down
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/pycryptodome/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class PycryptodomeRecipe(PythonRecipe):
version = '3.4.6'
version = '3.7.3'
url = 'https://github.com/Legrandin/pycryptodome/archive/v{version}.tar.gz'
depends = ['setuptools', 'cffi']

Expand Down