-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #673 from EducationalTestingService/release/2.5
Preparing for v2.5 release
- Loading branch information
Showing
6 changed files
with
66 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
How to create and test conda package. | ||
### How to create and test conda package | ||
|
||
1. To create the SKLL conda package run: | ||
`conda build -c defaults -c conda-forge --numpy=1.17 .` | ||
2. Upload the package to anaconda.org using `anaconda upload --user ets <path>`. | ||
3. Test the package: | ||
`conda create -n foobar -c conda-forge -c ets skll=2.1` | ||
1. To create the SKLL conda package run: `conda build -c conda-forge .` | ||
|
||
2. This will create python 3.7, 3.8, and 3.9 packages for your native platform, e.g., `osx-64`. | ||
|
||
3. Convert these built packages for the other two platforms. For example, if you ran the above command on macOS, run `conda convert -p linux-64 -p win-64 <packages files>`, where `<packages_files>` are the package files that were created in step 2. | ||
|
||
4. Upload all 9 package files (3 Python versions x 3 platforms) to anaconda.org using `anaconda upload --user ets <path_to_files>`. | ||
|
||
5. Test the package: `conda create -n foobar -c conda-forge -c ets python=3.9 skll`. This should _always_ install the latest package. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
python: | ||
- 3.7 | ||
- 3.8 | ||
- 3.9 | ||
numpy: 1.20.0 | ||
pin_run_as_build: | ||
numpy: | ||
max_pin: x | ||
ignore_version: numpy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
in one place. Based on the suggestion `here. <http://bit.ly/16LbuJF>`_ | ||
:author: Dan Blanchard ([email protected]) | ||
:author: Nitin Madnani ([email protected]) | ||
:organization: ETS | ||
""" | ||
|
||
|