Skip to content

Commit

Permalink
bumping up version number
Browse files Browse the repository at this point in the history
  • Loading branch information
btel committed Feb 9, 2021
1 parent a1aa003 commit c393503
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@

from setuptools import setup

version_str = "0.3.3"

setup(
name="svgutils",
version="0.3.2",
version=version_str,
description="Python SVG editor",
long_description="""This is an utility package that helps to edit and
concatenate SVG files. It is especially directed at scientists preparing
Expand All @@ -30,5 +32,7 @@
],
package_dir={"": "src"},
install_requires=["lxml"],
download_url="https://github.com/btel/svg_utils/archive/v0.3.2.tar.gz",
download_url="https://github.com/btel/svg_utils/archive/v{}.tar.gz".format(
version_str
),
)

0 comments on commit c393503

Please sign in to comment.