Skip to content

Commit

Permalink
Merge pull request #8 from MSeifert04/v0.0.12
Browse files Browse the repository at this point in the history
Version 0.0.12
  • Loading branch information
MSeifert04 committed Nov 13, 2016
2 parents 0716808 + acdec33 commit a7075f9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -7,7 +7,7 @@ Package license: Apache-2.0

Feedstock license: BSD 3-Clause

Summary: Itertools recipes for Python 2/3 and more.
Summary: Utilities based on Pythons iterators and generators.



Expand All @@ -33,7 +33,6 @@ conda search iteration_utilities --channel conda-forge
```



About conda-forge
=================

Expand Down
25 changes: 16 additions & 9 deletions appveyor.yml
Expand Up @@ -4,8 +4,6 @@

environment:

CONDA_INSTALL_LOCN: "C:\\conda"

# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
Expand All @@ -14,28 +12,36 @@ environment:
# We set a default Python version for the miniconda that is to be installed. This can be
# overridden in the matrix definition where appropriate.
CONDA_PY: "27"
CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"

BINSTAR_TOKEN:
# The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml.
secure: MP4hZYylDyUWEsrt3u3cod2sbFeRwUziH02mvQOdbjsTO/l1yIxDkP/76rSIjcGC

matrix:
- TARGET_ARCH: x86
CONDA_PY: 27
CONDA_INSTALL_LOCN: C:\\Miniconda

- TARGET_ARCH: x64
CONDA_PY: 27
CONDA_INSTALL_LOCN: C:\\Miniconda-x64

- TARGET_ARCH: x86
CONDA_PY: 34
CONDA_INSTALL_LOCN: C:\\Miniconda3

- TARGET_ARCH: x64
CONDA_PY: 34
CONDA_INSTALL_LOCN: C:\\Miniconda3-x64

- TARGET_ARCH: x86
CONDA_PY: 35
CONDA_INSTALL_LOCN: C:\\Miniconda35

- TARGET_ARCH: x64
CONDA_PY: 35
CONDA_INSTALL_LOCN: C:\\Miniconda35-x64


# We always use a 64-bit machine, but can build x86 distributions
Expand All @@ -56,24 +62,25 @@ install:

# Cywing's git breaks conda-build. (See https://github.com/conda-forge/conda-smithy-feedstock/pull/2.)
- cmd: rmdir C:\cygwin /s /q
- appveyor DownloadFile "https://raw.githubusercontent.com/conda-forge/conda-smithy/e976c7e84bb3c4846e7562afd1a42c4b535b51f5/bootstrap-obvious-ci-and-miniconda.py"
- cmd: python bootstrap-obvious-ci-and-miniconda.py %CONDA_INSTALL_LOCN% %TARGET_ARCH% %CONDA_PY:~0,1% --without-obvci

# Add our channels.
- cmd: set "OLDPATH=%PATH%"
- cmd: set "PATH=%CONDA_INSTALL_LOCN%\\Scripts;%CONDA_INSTALL_LOCN%\\Library\\bin;%PATH%"
- cmd: conda config --set show_channel_urls true
- cmd: conda config --add channels conda-forge

# Add a hack to switch to `conda` version `4.1.12` before activating.
# This is required to handle a long path activation issue.
# Please see PR ( https://github.com/conda/conda/pull/3349 ).
- cmd: set "OLDPATH=%PATH%"
- cmd: set "PATH=%CONDA_INSTALL_LOCN%\\Scripts;%CONDA_INSTALL_LOCN%\\Library\\bin;%PATH%"
- cmd: conda install --yes --quiet conda=4.1.12
- cmd: set "PATH=%OLDPATH%"
- cmd: set "OLDPATH="

# Actually activate `conda`.
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: set PYTHONUNBUFFERED=1

- cmd: conda config --set show_channel_urls true
- cmd: conda install -c pelson/channel/development --yes --quiet obvious-ci
- cmd: conda config --add channels conda-forge
- cmd: conda install -n root --quiet --yes obvious-ci
- cmd: conda install -n root --quiet --yes conda-forge-build-setup
- cmd: run_conda_forge_build_setup

Expand Down
6 changes: 3 additions & 3 deletions recipe/meta.yaml
@@ -1,6 +1,6 @@
{% set name = "iteration_utilities" %}
{% set version = "0.0.11" %}
{% set sha256 = "f9dccd98f2785ca9914b39ff1267c4073d0dc3869c592024ebe8b7d0602e2f71" %}
{% set version = "0.0.12" %}
{% set sha256 = "c36fca43bcb4707abbb07159ec1d13d4dd400d7b7a3bda8863f25eb3322926f6" %}

package:
name: {{ name|lower }}
Expand Down Expand Up @@ -39,7 +39,7 @@ about:
license: Apache-2.0
license_family: Apache
license_file: LICENSE.rst
summary: 'Itertools recipes for Python 2/3 and more.'
summary: 'Utilities based on Pythons iterators and generators.'
doc_url: http://iteration-utilities.rtfd.io
dev_url: https://github.com/MSeifert04/iteration_utilities

Expand Down

0 comments on commit a7075f9

Please sign in to comment.