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

fix bug with setup.py for new module util. increase version #33

Merged
merged 2 commits into from
Jan 12, 2018
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 conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "2.2.0" %}
{% set version = "2.2.1" %}

package:
name: openalea.sconsx
Expand Down
2 changes: 1 addition & 1 deletion metainfo.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = OpenAlea.SConsX
project = openalea
namespace = openalea
pkg_name = openalea.sconsx
version = 2.2.0
version = 2.2.1
release = 2.2
package = sconsx
description = Scons Extension to build multi-platform packages for OpenAlea and others.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
create_namespaces = True,
zip_safe = False,

packages = ["openalea.sconsx", "openalea.sconsx.tools"],
packages = ["openalea.sconsx", "openalea.sconsx.tools", "openalea.sconsx.util"],
package_dir = { pkg_name : pj('src','sconsx'),
'' : 'src'},

Expand Down