Skip to content

Commit

Permalink
Tweak setup.py (trigger CI) (#105)
Browse files Browse the repository at this point in the history
* Fix incorrect syntax in conda recipe
* Drop win32 builds, see conda-forge/staged-recipes#5640
  • Loading branch information
bjodah committed Oct 16, 2018
1 parent 7e8b326 commit 168f803
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
environment:

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

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

platform:
- x64
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% set version = GIT_DESCRIBE_TAG | replace("v", "") %}
{% set number = GIT_DESCRIBE_NUMBER | int %}
{% if number > 0 %}
{% set version = version + ".post" + GIT_DESCRIBE_NUMBER}
{% set version = version + ".post" + GIT_DESCRIBE_NUMBER %}
{% endif %}

package:
Expand Down

0 comments on commit 168f803

Please sign in to comment.