Skip to content

Commit

Permalink
Update version code in build files
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Oct 10, 2018
1 parent c9164dc commit 0b0f235
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
{% set data = load_setup_py_data() %}

package:
name: lenskit
version: "0.2.0"
{% if GIT_DESCRIBE_HASH > '0' %}
version: {{data.get('version')}}.dev{{GIT_DESCRIBE_NUMBER}}+{{GIT_DESCRIBE_HASH}}
{% else %}
version: {{data.get('version')}}
{% endif %}

source:
path: ../

requirements:
build:
- {{ compiler('c') }}
- cython
host:
- python {{ python }}
- setuptools
- pytest-runner
- cython
- numba
- pandas
- numpy
- scipy
Expand All @@ -22,12 +26,14 @@ requirements:
- python
- pandas
- scipy
- numba
- pytables

test:
source_files:
- tests
- tests/*.py
- tests/*.csv
- ml-latest-small
- ml-latest-small/*.csv
requires:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="lenskit",
version="0.2.0",
version="0.3.0",
author="Michael Ekstrand",
author_email="michaelekstrand@boisestate.edu",
description="Run recommender algorithms and experiments",
Expand Down

0 comments on commit 0b0f235

Please sign in to comment.