diff --git a/README.md b/README.md index 5a8b2ad5..090e7408 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ [![PyPI](https://img.shields.io/badge/pypi-1.0-blue.svg)](https://pypi.org/project/gempy/) [![license: LGPL v3](https://img.shields.io/badge/license-LGPL%20v3-blue.svg)](https://github.com/cgre-aachen/gempy/blob/master/LICENSE) [![Documentation Status](https://assets.readthedocs.org/static/projects/badges/passing-flat.svg)](http://docs.gempy.org) -[![Travis Build](https://travis-ci.org/cgre-aachen/gempy.svg?branch=master)](https://travis-ci.org/github/cgre-aachen/gempy/branches) [![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/cgre-aachen/gempy/master) [![DOI](https://zenodo.org/badge/96211155.svg)](https://zenodo.org/badge/latestdoi/96211155) [![DOCKER](https://img.shields.io/docker/cloud/automated/leguark/gempy.svg)](https://cloud.docker.com/repository/docker/leguark/gempy) diff --git a/gempy/__init__.py b/gempy/__init__.py index adf5266c..6b48e499 100644 --- a/gempy/__init__.py +++ b/gempy/__init__.py @@ -50,7 +50,7 @@ # Assert at least pyton 3.10 assert sys.version_info[0] >= 3 and sys.version_info[1] >= 10, "GemPy requires Python 3.10 or higher" -__version__ = '2023.1.0' +__version__ = '2.3.0' if __name__ == '__main__': pass diff --git a/setup.py b/setup.py index 3217812f..94f01dea 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '2023.1.0' +version = '2.3.0' with open("README.md", "r") as fh: long_description = fh.read()