Skip to content

Commit

Permalink
Merge pull request #4 from jakirkham-feedstocks/noarch_python
Browse files Browse the repository at this point in the history
Noarch Python
  • Loading branch information
jakirkham authored Sep 11, 2017
2 parents 053afb0 + 4e4c457 commit 84fb632
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 192 deletions.
54 changes: 2 additions & 52 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
version: 2

jobs:
build__CONDA_PY_27:
build:
working_directory: ~/test
machine: true
environment:
- CONDA_PY: "27"
steps:
- checkout
- run:
Expand All @@ -15,52 +13,6 @@ jobs:
./ci_support/checkout_merge_commit.sh
- run:
command: docker pull condaforge/linux-anvil
- run:
name: Print conda-build environment variables
command: |
echo "CONDA_PY=${CONDA_PY}"
- run:
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions.
command: ./ci_support/run_docker_build.sh
build__CONDA_PY_35:
working_directory: ~/test
machine: true
environment:
- CONDA_PY: "35"
steps:
- checkout
- run:
name: Fast finish outdated PRs and merge PRs
command: |
./ci_support/fast_finish_ci_pr_build.sh
./ci_support/checkout_merge_commit.sh
- run:
command: docker pull condaforge/linux-anvil
- run:
name: Print conda-build environment variables
command: |
echo "CONDA_PY=${CONDA_PY}"
- run:
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions.
command: ./ci_support/run_docker_build.sh
build__CONDA_PY_36:
working_directory: ~/test
machine: true
environment:
- CONDA_PY: "36"
steps:
- checkout
- run:
name: Fast finish outdated PRs and merge PRs
command: |
./ci_support/fast_finish_ci_pr_build.sh
./ci_support/checkout_merge_commit.sh
- run:
command: docker pull condaforge/linux-anvil
- run:
name: Print conda-build environment variables
command: |
echo "CONDA_PY=${CONDA_PY}"
- run:
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions.
command: ./ci_support/run_docker_build.sh
Expand All @@ -69,6 +21,4 @@ workflows:
version: 2
build_and_test:
jobs:
- build__CONDA_PY_27
- build__CONDA_PY_35
- build__CONDA_PY_36
- build
61 changes: 0 additions & 61 deletions .travis.yml

This file was deleted.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ Summary: Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+.
Current build status
====================

Linux: [![Circle CI](https://circleci.com/gh/conda-forge/funcsigs-feedstock.svg?style=shield)](https://circleci.com/gh/conda-forge/funcsigs-feedstock)
OSX: [![TravisCI](https://travis-ci.org/conda-forge/funcsigs-feedstock.svg?branch=master)](https://travis-ci.org/conda-forge/funcsigs-feedstock)
Windows: [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/conda-forge/funcsigs-feedstock?svg=True)](https://ci.appveyor.com/project/conda-forge/funcsigs-feedstock/branch/master)
All platforms: [![Circle CI](https://circleci.com/gh/conda-forge/funcsigs-feedstock.svg?style=shield)](https://circleci.com/gh/conda-forge/funcsigs-feedstock)

Current release info
====================
Expand Down
74 changes: 0 additions & 74 deletions appveyor.yml

This file was deleted.

1 change: 0 additions & 1 deletion ci_support/run_docker_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ cat << EOF | docker run -i \
-v "${RECIPE_ROOT}":/recipe_root \
-v "${FEEDSTOCK_ROOT}":/feedstock_root \
-e HOST_USER_ID="${HOST_USER_ID}" \
-e CONDA_PY="${CONDA_PY}" \
-a stdin -a stdout -a stderr \
condaforge/linux-anvil \
bash || exit 1
Expand Down
3 changes: 2 additions & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ source:
sha256: {{ checksum }}

build:
number: 0
number: 1
noarch: python
script: python setup.py install --single-version-externally-managed --record=record.txt

requirements:
Expand Down

0 comments on commit 84fb632

Please sign in to comment.