Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use default windows compilers #31

Merged
merged 3 commits into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .azure-pipelines/azure-pipelines-linux.yml

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

4 changes: 4 additions & 0 deletions .azure-pipelines/azure-pipelines-osx.yml

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

3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-win.yml

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

2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ python:
- 3.10.* *_cpython
target_platform:
- win-64
vc:
- '14'
2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.11.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ python:
- 3.11.* *_cpython
target_platform:
- win-64
vc:
- '14'
2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.12.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ python:
- 3.12.* *_cpython
target_platform:
- win-64
vc:
- '14'
2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ python:
- 3.8.* *_cpython
target_platform:
- win-64
vc:
- '14'
2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.9.____73_pypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ python:
- 3.9.* *_73_pypy
target_platform:
- win-64
vc:
- '14'
2 changes: 0 additions & 2 deletions .ci_support/win_64_python3.9.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ python:
- 3.9.* *_cpython
target_platform:
- win-64
vc:
- '14'
25 changes: 23 additions & 2 deletions .gitignore

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

11 changes: 7 additions & 4 deletions .scripts/build_steps.sh

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

9 changes: 9 additions & 0 deletions .scripts/run_docker_build.sh

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

15 changes: 11 additions & 4 deletions .scripts/run_osx_build.sh

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

12 changes: 10 additions & 2 deletions .scripts/run_win_build.bat

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

2 changes: 1 addition & 1 deletion README.md

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

4 changes: 2 additions & 2 deletions azure-pipelines.yml

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

5 changes: 3 additions & 2 deletions build-locally.py

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

13 changes: 4 additions & 9 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
{% set name = "louvain" %}
{% set version = "0.8.1" %}
{% set sha256 = "b4df2cb8e46d5df7d1579cbcf9430b76d32dc88f58b854e566e11f9c10ac28f5" %}

package:
name: {{ name }}
name: louvain
version: {{ version }}

source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
url: https://pypi.io/packages/source/l/louvain/louvain-{{ version }}.tar.gz
sha256: b4df2cb8e46d5df7d1579cbcf9430b76d32dc88f58b854e566e11f9c10ac28f5

build:
number: 1
skip: true # [win and vc<14]
number: 2

run_exports:
- {{ pin_subpackage("louvain", max_pin="x.x") }}
Expand All @@ -24,7 +20,6 @@ requirements:
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- vs2017_{{ target_platform }} # [win]
host:
- igraph
- python
Expand Down