diff --git a/CHANGELOG.md b/CHANGELOG.md index 084f075..e0cec78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # rc: micro bump +- Correct fixup processing of args with non-None defaults in `pwkit.kwargv` (#24) +- Correct the docs link in the README! (#23) + +The version DOI of this release is [xx.xxxx/dev-build.pwkit.version][vdoi]. + +[vdoi]: https://doi.org/xx.xxxx/dev-build.pwkit.version + + +# pwkit 1.2.1 (2024-09-13) + - Fix `pwkit.parallel.SerialHelper.get_map()` for Python 3 (#22) - Fix `pwkit.lmmin.Problem.set_npar()` for recent Numpys (#20). I'm not sure if we'll be compatible with Numpy 2.0, though. diff --git a/ci/azure-job-setup.yml b/ci/azure-job-setup.yml index 8224d30..2bae3ac 100644 --- a/ci/azure-job-setup.yml +++ b/ci/azure-job-setup.yml @@ -67,17 +67,20 @@ steps: - bash: | set -euo pipefail - if [[ $AGENT_OS == Windows_NT ]] ; then + if [[ $AGENT_OS == Darwin ]] ; then + # As of macos-14, these no longer have Anaconda built in. + CONDA="$TMPDIR/conda" + curl -fsSL https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-x86_64.sh >miniforge.sh + bash miniforge.sh -f -b -p "$CONDA" + rm -f miniforge.sh + condabin="$CONDA/bin" + elif [[ $AGENT_OS == Windows_NT ]] ; then CONDA=$(echo "$CONDA" | sed -e 's|\\|\/|g' -e 's|^\([A-Za-z]\)\:/\(.*\)|/\L\1\E/\2|') condabin="$CONDA/Scripts" else condabin="$CONDA/bin" fi - if [[ $AGENT_OS == Darwin ]] ; then - sudo chown -R $USER $CONDA - fi - cat >activate-conda.sh <