Skip to content

Commit c393503

Browse files
committed
bumping up version number
1 parent a1aa003 commit c393503

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33

44
from setuptools import setup
55

6+
version_str = "0.3.3"
7+
68
setup(
79
name="svgutils",
8-
version="0.3.2",
10+
version=version_str,
911
description="Python SVG editor",
1012
long_description="""This is an utility package that helps to edit and
1113
concatenate SVG files. It is especially directed at scientists preparing
@@ -30,5 +32,7 @@
3032
],
3133
package_dir={"": "src"},
3234
install_requires=["lxml"],
33-
download_url="https://github.com/btel/svg_utils/archive/v0.3.2.tar.gz",
35+
download_url="https://github.com/btel/svg_utils/archive/v{}.tar.gz".format(
36+
version_str
37+
),
3438
)

0 commit comments

Comments
 (0)