From 1649d74536f3d9fa5e33d66eb68919e63d2272b4 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 19 Dec 2022 13:50:36 +0100 Subject: [PATCH] Fixing conda ssl location (#1124) * Fixing conda build ? * Reduce the scope to speedup testing. * Reduce more. * Trying to link to conda lib. * Trying to enable `pkg-config` on the codna env. * Really publish. * Update conda builds. * Remove 3.11 * Putting releases back onto release track. --- .github/conda/meta.yaml | 2 ++ .github/workflows/python-release-conda.yml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/conda/meta.yaml b/.github/conda/meta.yaml index 1eecd8d4..a7161448 100644 --- a/.github/conda/meta.yaml +++ b/.github/conda/meta.yaml @@ -13,6 +13,8 @@ requirements: - python x.x - setuptools - setuptools-rust + - pkg-config + - openssl run: - python x.x diff --git a/.github/workflows/python-release-conda.yml b/.github/workflows/python-release-conda.yml index 81a8e369..a8726f8d 100644 --- a/.github/workflows/python-release-conda.yml +++ b/.github/workflows/python-release-conda.yml @@ -14,9 +14,8 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest] + # Conda does not support 3.11 yet. python: ["3.7", "3.8", "3.9", "3.10"] - # 3.11 Not yet available on Conda. - # python: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - name: Checkout repository uses: actions/checkout@v2 @@ -85,6 +84,7 @@ jobs: export FILENAME=Miniconda3-py${{ matrix.python }}_4.10.3-Linux-x86_64.sh wget https://repo.anaconda.com/miniconda/$FILENAME sha256sum $FILENAME | awk '$1=="${{ matrix.checksum}}"{print"good to go"}' + yum remove -y openssl-devel bash $FILENAME -b -p $HOME/miniconda source $HOME/miniconda/bin/activate