8000 Revert "Just remove `typing_extensions.patch`, we don't need it" · clayote/python-for-android@1983ff9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1983ff9

Browse files
committed
Revert "Just remove typing_extensions.patch, we don't need it"
This reverts commit 97f0ff1.
1 parent d92afce commit 1983ff9

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

pythonforandroid/recipes/sqlalchemy/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33

44
class SQLAlchemyRecipe(CompiledComponentsPythonRecipe):
5-
name = "sqlalchemy"
6-
version = "2.0.40"
7-
url = "https://files.pythonhosted.org/packages/68/c3/3f2bfa5e4dcd9938405fe2fab5b6ab94a9248a4f9536ea2fd497da20525f/sqlalchemy-2.0.40.tar.gz"
8-
call_hostpython_via_targetpython = False
5+
name = 'sqlalchemy'
6+
version = '2.0.40'
7+
url = 'https://files.pythonhosted.org/packages/68/c3/3f2bfa5e4dcd9938405fe2fab5b6ab94a9248a4f9536ea2fd497da20525f/sqlalchemy-2.0.40.tar.gz'
8+
call_hostpython_via_targetpython = False
99

10-
depends = ["setuptools", "typing_extensions"]
10+
depends = ['setuptools', 'typing_extensions']
1111

12-
patches = ["zipsafe.patch"]
12+
patches = ['zipsafe.patch', 'typing_extensions.patch']
1313

1414

1515
recipe = SQLAlchemyRecipe()
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
--- sqlalchemy-2.0.40/pyproject.toml
2+
+++ sqlalchemy-2.0.40/pyproject.toml
3+
@@ -3,7 +3,6 @@
4+
requires = [
5+
"setuptools>=61.0",
6+
"cython>=0.29.24; platform_python_implementation == 'CPython'", # Skip cython when using pypy
7+
+ "typing_extensions",
8+
]
9+
10+
[tool.black]

0 commit comments

Comments
 (0)
0