Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 21529a7

Browse files
Move conda recipe to sdc/conda-recipe folder (#851)
* Move conda recipe to sdc/conda-recipe folder - Need for internal automation and to align with best practice (use conda-recipe folder for conda recipe) - Update buildscripts for public CI * Fix path to code in meta.yaml
1 parent e87095a commit 21529a7

File tree

8 files changed

+4
-4
lines changed

8 files changed

+4
-4
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Building on Linux with conda-build
7474
source activate conda-build-env
7575
git clone https://github.com/IntelPython/sdc.git
7676
cd sdc
77-
conda build --python $PYVER --numpy $NUMPYVER --output-folder=<output_folder> -c intel/label/beta -c defaults -c intel -c conda-forge --override-channels buildscripts/sdc-conda-recipe
77+
conda build --python $PYVER --numpy $NUMPYVER --output-folder=<output_folder> -c intel/label/beta -c defaults -c intel -c conda-forge --override-channels conda-recipe
7878

7979
Building on Linux with setuptools
8080
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -112,7 +112,7 @@ Building on Windows with conda-build
112112
conda activate conda-build-env
113113
git clone https://github.com/IntelPython/sdc.git
114114
cd sdc
115-
conda build --python %PYVER% --numpy %NUMPYVER% --output-folder=<output_folder> -c intel/label/beta -c defaults -c intel -c conda-forge --override-channels buildscripts\sdc-conda-recipe
115+
conda build --python %PYVER% --numpy %NUMPYVER% --output-folder=<output_folder> -c intel/label/beta -c defaults -c intel -c conda-forge --override-channels conda-recipe
116116

117117
Building on Windows with setuptools
118118
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

buildscripts/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __init__(self, python, sdc_local_channel=None):
4646
self.env_name = 'sdc_env'
4747
self.python = python
4848
self.output_folder = self.src_path / 'sdc-build'
49-
self.recipe = self.src_path / 'buildscripts' / 'sdc-conda-recipe'
49+
self.recipe = self.src_path / 'conda-recipe'
5050

5151
self.line_double = '='*80
5252
self.line_single = '-'*80
File renamed without changes.
File renamed without changes.

buildscripts/sdc-conda-recipe/meta.yaml renamed to conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package:
77
version: {{ GIT_DESCRIBE_TAG }}
88

99
source:
10-
path: ../..
10+
path: ../
1111

1212
build:
1313
number: {{ GIT_DESCRIBE_NUMBER|int }}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)