You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #25 had a commit right before it was merged that added "openssl=1.1.1", to setup.py. This was my fault that this snuck in as @SeaCelo was merging the PR, so it didn't get tested. This has two problems.
In setup.py, pinning the package needs to have the following form with two equals signs: "openssl==1.1.1"
Even with this specified correctly, which I have done in a new branch, the pip install of the ogzaf package through pip install -e . after creating the ogzaf-dev conda environment fails with the following message.
ERROR: Could not find a version that satisfies the requirement openssl==1.1.1 (from ogzaf) (from versions: none)
ERROR: No matching distribution found for openssl==1.1.1
When I activate the ogzaf-dev conda environment and type conda list openssl, I get the following:
# packages in environment at /Users/richardevans/opt/anaconda3/envs/ogzaf-dev:
#
# Name Version Build Channel
openssl 1.1.1s h03a7124_1 conda-forge
pyopenssl 23.0.0 pyhd8ed1ab_0 conda-forge
This should be an easy fix, but I don't know what it is right now. @SeaCelo@sarvonz
The text was updated successfully, but these errors were encountered:
PR #25 had a commit right before it was merged that added
"openssl=1.1.1",
tosetup.py
. This was my fault that this snuck in as @SeaCelo was merging the PR, so it didn't get tested. This has two problems.setup.py
, pinning the package needs to have the following form with two equals signs:"openssl==1.1.1"
ogzaf
package throughpip install -e .
after creating theogzaf-dev
conda environment fails with the following message.When I activate the
ogzaf-dev
conda environment and typeconda list openssl
, I get the following:This should be an easy fix, but I don't know what it is right now. @SeaCelo @sarvonz
The text was updated successfully, but these errors were encountered: