Skip to content

Commit 32383c4

Browse files
committed
fix(datashare-python): empty project URLs
1 parent b5f3e26 commit 32383c4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

datashare-python/datashare_python/template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _update_pyproject_toml(
7676

7777
project = pyproject_toml["project"]
7878
project["authors"] = []
79-
project["urls"] = []
79+
project.pop("urls")
8080
project["dependencies"] = sorted(
8181
d
8282
for d in project["dependencies"]

datashare-python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "datashare-python"
3-
version = "0.2.22"
3+
version = "0.2.23"
44
description = "Manage Pythoœn tasks and local resources in Datashare"
55
authors = [
66
{ name = "Clément Doumouro", email = "cdoumouro@icij.org" },

0 commit comments

Comments
 (0)