Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
azvoleff committed Jul 3, 2024
1 parent 0a9b5f0 commit 3b3e5c1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="te_schemas",
version="2.0.1",
version="2.1.15",
description="Schemas supporting the Trends.Earth QGIS plugin.",
long_description=long_description,
url="https://github.com/ConservationInternational/trends.earth-schemas",
Expand All @@ -32,8 +32,8 @@
include_package_data=True,
install_requires=[
"defusedxml>=0.7.1",
"marshmallow>=3.18.0",
"marshmallow-dataclass[enum, union]==8.5.10",
"marshmallow>=3.21.3",
"marshmallow-dataclass[enum, union]==8.7.0",
],
extras_require={
"dev": ["check-manifest"],
Expand Down
4 changes: 3 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ def set_version(c, v=None, tag=False):

# Set in setup.py
print("Setting version to {} in setup.py".format(v))
setup_regex = re.compile("^([ ]*version=[ ]*')[0-9]+([.][0-9]+)+(rc[0-9]*)?")
setup_regex = re.compile(
"^([ ]*version=[ ]*['\"])[0-9]+([.][0-9]+)+(rc[0-9]*)?"
)
_replace("setup.py", setup_regex, r"\g<1>" + v)

if tag:
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.14
2.1.15

0 comments on commit 3b3e5c1

Please sign in to comment.