Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to v1.11.0 #1001

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "MPAS-Analysis" %}
{% set version = "1.10.0" %}
{% set version = "1.11.0rc1" %}

package:
name: {{ name|lower }}
Expand Down
3 changes: 3 additions & 0 deletions docs/versions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Documentation On GitHub
`v1.8.0`_ `1.8.0`_
`v1.9.0`_ `1.9.0`_
`v1.10.0`_ `1.10.0`_
`v1.11.0`_ `1.11.0`_
================ ===============

.. _`stable`: ../stable/index.html
Expand All @@ -40,6 +41,7 @@ Documentation On GitHub
.. _`v1.8.0`: ../1.8.0/index.html
.. _`v1.9.0`: ../1.9.0/index.html
.. _`v1.10.0`: ../1.10.0/index.html
.. _`v1.11.0`: ../1.11.0/index.html
.. _`main`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/main
.. _`develop`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/develop
.. _`1.2.6`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.2.6
Expand All @@ -57,3 +59,4 @@ Documentation On GitHub
.. _`1.8.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.8.0
.. _`1.9.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.9.0
.. _`1.10.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.10.0
.. _`1.11.0`: https://github.com/MPAS-Dev/MPAS-Analysis/tree/1.11.0
2 changes: 1 addition & 1 deletion mpas_analysis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
import matplotlib as mpl
mpl.use('Agg')

__version_info__ = (1, 10, 0)
__version_info__ = (1, 11, 0)
__version__ = '.'.join(str(vi) for vi in __version_info__)
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@
with open(os.path.join(here, 'mpas_analysis', '__init__.py')) as f:
init_file = f.read()

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

setup(name='mpas_analysis',
version=version,
Expand Down