From 793e32c0f6d647936f99e7db58245ce40c1c1d1f Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Fri, 2 Jun 2023 08:48:27 +0200 Subject: [PATCH] Remove pytz recipe, as it's not needed anymore --- pythonforandroid/recipes/pandas/__init__.py | 4 ++-- pythonforandroid/recipes/pytz/__init__.py | 15 --------------- 2 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 pythonforandroid/recipes/pytz/__init__.py diff --git a/pythonforandroid/recipes/pandas/__init__.py b/pythonforandroid/recipes/pandas/__init__.py index a217ab635a..a43209a339 100644 --- a/pythonforandroid/recipes/pandas/__init__.py +++ b/pythonforandroid/recipes/pandas/__init__.py @@ -7,9 +7,9 @@ class PandasRecipe(CppCompiledComponentsPythonRecipe): version = '1.0.3' url = 'https://github.com/pandas-dev/pandas/releases/download/v{version}/pandas-{version}.tar.gz' # noqa - depends = ['cython', 'numpy', 'pytz', 'libbz2', 'liblzma'] + depends = ['cython', 'numpy', 'libbz2', 'liblzma'] - python_depends = ['python-dateutil'] + python_depends = ['python-dateutil', 'pytz'] patches = ['fix_numpy_includes.patch'] call_hostpython_via_targetpython = False diff --git a/pythonforandroid/recipes/pytz/__init__.py b/pythonforandroid/recipes/pytz/__init__.py deleted file mode 100644 index ff9bc37573..0000000000 --- a/pythonforandroid/recipes/pytz/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -from pythonforandroid.recipe import PythonRecipe - - -class PytzRecipe(PythonRecipe): - name = 'pytz' - version = '2019.3' - url = 'https://pypi.python.org/packages/source/p/pytz/pytz-{version}.tar.gz' - - depends = [] - - call_hostpython_via_targetpython = False - install_in_hostpython = True - - -recipe = PytzRecipe()