Skip to content

Commit b14aab7

Browse files
authored
Merge pull request #22 from jjhelmus/v3.2.1
Update feedstock to version 3.2.1
2 parents da0fc9f + ff67843 commit b14aab7

File tree

6 files changed

+83
-40
lines changed

6 files changed

+83
-40
lines changed

.circleci/config.yml

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
version: 2
2+
3+
jobs:
4+
build__CONDA_PY_27:
5+
working_directory: ~/test
6+
machine: true
7+
environment:
8+
- CONDA_PY: "27"
9+
steps:
10+
- checkout
11+
- run:
12+
name: Fast finish outdated PRs and merge PRs
13+
command: |
14+
./ci_support/fast_finish_ci_pr_build.sh
15+
./ci_support/checkout_merge_commit.sh
16+
- run:
17+
command: docker pull condaforge/linux-anvil
18+
- run:
19+
name: Print conda-build environment variables
20+
command: |
21+
echo "CONDA_PY=${CONDA_PY}"
22+
- run:
23+
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions.
24+
command: ./ci_support/run_docker_build.sh
25+
build__CONDA_PY_35:
26+
working_directory: ~/test
27+
machine: true
28+
environment:
29+
- CONDA_PY: "35"
30+
steps:
31+
- checkout
32+
- run:
33+
name: Fast finish outdated PRs and merge PRs
34+
command: |
35+
./ci_support/fast_finish_ci_pr_build.sh
36+
./ci_support/checkout_merge_commit.sh
37+
- run:
38+
command: docker pull condaforge/linux-anvil
39+
- run:
40+
name: Print conda-build environment variables
41+
command: |
42+
echo "CONDA_PY=${CONDA_PY}"
43+
- run:
44+
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions.
45+
command: ./ci_support/run_docker_build.sh
46+
build__CONDA_PY_36:
47+
working_directory: ~/test
48+
machine: true
49+
environment:
50+
- CONDA_PY: "36"
51+
steps:
52+
- checkout
53+
- run:
54+
name: Fast finish outdated PRs and merge PRs
55+
command: |
56+
./ci_support/fast_finish_ci_pr_build.sh
57+
./ci_support/checkout_merge_commit.sh
58+
- run:
59+
command: docker pull condaforge/linux-anvil
60+
- run:
61+
name: Print conda-build environment variables
62+
command: |
63+
echo "CONDA_PY=${CONDA_PY}"
64+
- run:
65+
# Run, test and (if we have a BINSTAR_TOKEN) upload the distributions.
66+
command: ./ci_support/run_docker_build.sh
67+
68+
workflows:
69+
version: 2
70+
build_and_test:
71+
jobs:
72+
- build__CONDA_PY_27
73+
- build__CONDA_PY_35
74+
- build__CONDA_PY_36

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
* text=auto
22

3+
*.patch binary
4+
*.diff binary
35
meta.yaml text eol=lf
46
build.sh text eol=lf
57
bld.bat text eol=crlf

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
About pytest
22
============
33

4-
Home: http://pytest.org/
4+
Home: https://docs.pytest.org/en/latest/
55

66
Package license: MIT
77

ci_support/run_docker_build.sh

+4-18
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ cat << EOF | docker run -i \
4040
-v "${RECIPE_ROOT}":/recipe_root \
4141
-v "${FEEDSTOCK_ROOT}":/feedstock_root \
4242
-e HOST_USER_ID="${HOST_USER_ID}" \
43+
-e CONDA_PY="${CONDA_PY}" \
4344
-a stdin -a stdout -a stderr \
4445
condaforge/linux-anvil \
4546
bash || exit 1
@@ -57,24 +58,9 @@ conda clean --lock
5758
conda install --yes --quiet conda-forge-build-setup
5859
source run_conda_forge_build_setup
5960
60-
# Embarking on 3 case(s).
61-
set -x
62-
export CONDA_PY=27
63-
set +x
64-
conda build /recipe_root --quiet || exit 1
65-
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
66-
67-
set -x
68-
export CONDA_PY=35
69-
set +x
70-
conda build /recipe_root --quiet || exit 1
71-
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
72-
73-
set -x
74-
export CONDA_PY=36
75-
set +x
76-
conda build /recipe_root --quiet || exit 1
77-
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
61+
conda build /recipe_root --quiet || exit 1
62+
upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1
63+
7864
touch /feedstock_root/build_artefacts/conda-forge-build-done
7965
EOF
8066

circle.yml

-19
This file was deleted.

recipe/meta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% set name = "pytest" %}
2-
{% set version = "3.2.0" %}
3-
{% set sha256 = "0225cf10b9e173f84729d5f4648211458a222c6e53a77a85e104bc5f31c244ee" %}
2+
{% set version = "3.2.1" %}
3+
{% set sha256 = "4c2159d2be2b4e13fa293e7a72bdf2f06848a017150d5c6d35112ce51cfd74ce" %}
44

55
package:
66
name: {{ name|lower }}

0 commit comments

Comments
 (0)