Skip to content

Commit 56fcc54

Browse files
committed
set version ot release 0.2.1
1 parent 9ac6cc4 commit 56fcc54

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

docs/conf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414

1515
# The full version, including alpha/beta/rc tags.
1616
release = version("simpeg-drivers")
17+
# drop the post segment if any for release
18+
pep_version = Version(release)
19+
if pep_version.is_postrelease:
20+
release = pep_version.base_version
21+
1722
# The short X.Y.Z version.
1823
version = Version(release).base_version
1924

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "simpeg-drivers"
3-
version = "0.2.1-alpha.2"
3+
version = "0.2.1"
44
description = "Application to run SimPEG inversions with geoh5 files from Geoscience Analyst."
55
license = "MIT"
66
authors = ["Mira Geoscience <support@mirageoscience.com>"]

recipe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ schema_version: 1
22

33
context:
44
name: "simpeg-drivers"
5-
version: "0.2.1a2"
5+
version: "0.2.1"
66
python_min: "3.10"
77

88
package:

simpeg_drivers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from __future__ import annotations
1313

1414

15-
__version__ = "0.2.1-alpha.2"
15+
__version__ = "0.2.1"
1616

1717

1818
import logging

0 commit comments

Comments
 (0)