Skip to content

Commit

Permalink
Merge pull request #25 from drewgilliam/2022.3.23_h6d1284
Browse files Browse the repository at this point in the history
2022.3.23
  • Loading branch information
roccqqck authored Jun 17, 2022
2 parents 4fe6760 + 7cc6ce8 commit 2c5347e
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 20 deletions.
7 changes: 6 additions & 1 deletion .ci_support/README

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion LICENSE.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 4 additions & 7 deletions build-locally.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 14 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "pipenv" %}
{% set version = "2022.1.8" %}
{% set version = "2022.3.23" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: f84d7119239b22ab2ac2b8fbc7d619d83cf41135206d72a17c4f151cda529fd0
sha256: a6df41751df55537dee54349e1dcb7781e7ceb34bb985b084e985a7e0dc43fc5

build:
noarch: python
Expand All @@ -30,10 +30,19 @@ requirements:
- virtualenv-clone >=0.2.5

test:
imports:
- pipenv
commands:
- pipenv --help
# pipenv attempts to detect a CI environment via
# PIPENV_IS_CI = env_to_bool(os.environ.get("CI") or os.environ.get("TF_BUILD") or False)
# https://github.com/pypa/pipenv/blob/114eb8f80a63e519fe9d12ac9e7cb60444cf47c0/pipenv/environments.py#L101
#
# This expects the envvar "CI" to be truthy, however CI=azure in
# pipenv-feedstock. Use CI=1 as workaround
#
# Related:
# https://github.com/pypa/pipenv/pull/4944
# https://github.com/pypa/pipenv/issues/4909
- CI=1 python -c "import pipenv"
- CI=1 pipenv --help

about:
home: https://github.com/pypa/pipenv
Expand Down

0 comments on commit 2c5347e

Please sign in to comment.