Skip to content

Commit

Permalink
Merge pull request #55 from openalea/release302
Browse files Browse the repository at this point in the history
Fix openalea namespace
  • Loading branch information
pradal authored Jan 23, 2024
2 parents e6db257 + f176e15 commit 245f850
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
license='cecill-c',
zip_safe=False,

packages=find_namespace_packages(where='src', include=['openalea', 'openalea.*']),
packages=find_namespace_packages(where='src', include=['openalea.*']),
#namespace_packages=['openalea'],
package_dir={'': 'src'},
entry_points={},
Expand Down
2 changes: 1 addition & 1 deletion src/openalea/deploy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
minor = 1
"""(int) Version minor component."""

post = 0
post = 1
"""(int) Version post or bugfix component."""

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

0 comments on commit 245f850

Please sign in to comment.