Skip to content

Commit a09a9d6

Browse files
committed
Update to v1.10.0rc2
1 parent 22ccff9 commit a09a9d6

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

ci/recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "MPAS-Analysis" %}
2-
{% set version = "1.9.1" %}
2+
{% set version = "1.10.0rc2" %}
33

44
package:
55
name: {{ name|lower }}

mpas_analysis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
import matplotlib as mpl
44
mpl.use('Agg')
55

6-
__version_info__ = (1, 9, 1)
6+
__version_info__ = (1, 10, 0)
77
__version__ = '.'.join(str(vi) for vi in __version_info__)

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@
4141
with open(os.path.join(here, 'mpas_analysis', '__init__.py')) as f:
4242
init_file = f.read()
4343

44-
version = re.search(r'{}\s*=\s*[(]([^)]*)[)]'.format('__version_info__'),
45-
init_file).group(1).replace(', ', '.')
44+
# version = re.search(r'{}\s*=\s*[(]([^)]*)[)]'.format('__version_info__'),
45+
# init_file).group(1).replace(', ', '.')
46+
version = '1.10.0rc2'
4647

4748
setup(name='mpas_analysis',
4849
version=version,

0 commit comments

Comments
 (0)