Skip to content

Commit

Permalink
Update to version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pradal committed Jan 22, 2024
1 parent de602cd commit 4c84afd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
url = 'https://github.com/openalea/weberpenn'
license='Cecill-C'

version = '2.2.0'
_version = {}
with open("src/openalea/weberpenn/version.py") as fp:
exec(fp.read(), _version)
version = _version["__version__"]

namespace = 'openalea'
packages=find_namespace_packages(where='src', include=['openalea', 'openalea.*'])
package_dir={'': 'src'}
Expand Down
19 changes: 19 additions & 0 deletions src/openalea/weberpenn/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- python -*-
#
# Copyright 2015 INRIA - CIRAD - INRA
#
# Distributed under the Cecill-C License.
# See accompanying file LICENSE.txt or copy at
# http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html
#
# WebSite : https://github.com/openalea-incubator/caribu
#
# ==============================================================================

# -*- coding: utf-8 -*-

major = 2
minor = 2
post = 0

__version__ = ".".join([str(s) for s in (major, minor, post)])

0 comments on commit 4c84afd

Please sign in to comment.