Skip to content

Commit 4e2e51b

Browse files
committed
Set version back to 1.21a18
1 parent c8a7830 commit 4e2e51b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

psqlextra/manager/manager.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,10 @@ def bulk_upsert(
323323
A list of either the dicts of the rows upserted, including the pk or
324324
the models of the rows upserted
325325
"""
326-
def is_empty(r): return all([False for _ in r])
326+
327+
def is_empty(r):
328+
return all([False for _ in r])
329+
327330
if not rows or is_empty(rows):
328331
return []
329332

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def run(self):
3636

3737
setup(
3838
name="django-postgres-extra",
39-
version="2.0",
39+
version="1.21a18",
4040
packages=find_packages(),
4141
include_package_data=True,
4242
license="MIT License",

0 commit comments

Comments
 (0)