Skip to content
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
2 changes: 1 addition & 1 deletion packaging/build_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

export BUILD_TYPE="conda"
export NO_CUDA_PACKAGE=1
setup_env 0.4.0
setup_env 0.5.0
export SOURCE_ROOT_DIR="$PWD"
setup_conda_pytorch_constraint
conda build $CONDA_CHANNEL_FLAGS --no-anaconda-upload --python "$PYTHON_VERSION" packaging/torchaudio
2 changes: 1 addition & 1 deletion packaging/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

export BUILD_TYPE="wheel"
export NO_CUDA_PACKAGE=1
setup_env 0.4.0
setup_env 0.5.0
setup_wheel_python
"$script_dir/build_from_source.sh" "$(pwd)" # Build static dependencies
pip_install numpy future
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def check_env_flag(name, default=''):

# Creating the version file
cwd = os.path.dirname(os.path.abspath(__file__))
version = '0.4.0a0'
version = '0.5.0a0'
sha = 'Unknown'

try:
Expand Down