Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/migen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2b80c9cc3ddf
Choose a base ref
...
head repository: m-labs/migen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 44e5c689c767
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 22, 2015

  1. conda: also add build number, not just string.

    whitequark committed Oct 22, 2015
    Copy the full SHA
    1890b0c View commit details
  2. conda: put git hash back build string.

    whitequark committed Oct 22, 2015
    Copy the full SHA
    380018b View commit details
  3. conda: restrict python to 3.5.* explicitly.

    whitequark committed Oct 22, 2015
    Copy the full SHA
    44e5c68 View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 conda/migen/meta.yaml
9 changes: 5 additions & 4 deletions conda/migen/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
package:
name: migen
version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}.{{ environ.get("GIT_DESCRIBE_HASH") }}
version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}

source:
git_url: https://github.com/m-labs/migen
git_tag: new

build:
noarch_python: true
string: py_{{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}
number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}
string: py_{{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}+git{{ environ.get("GIT_DESCRIBE_HASH", "")[1:] }}
script: $PYTHON setup.py install

requirements:
build:
- python
- python 3.5.*
run:
- python
- python 3.5.*

test:
imports: