Skip to content
Closed
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 .ci_support/environment-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ dependencies:
- pygraphviz =1.14
- ipython =9.0.2
- pysqa =0.2.4
- setuptools =80.1.0
- setuptools =80.3.1
2 changes: 1 addition & 1 deletion .ci_support/environment-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ dependencies:
- pygraphviz =1.14
- pysqa =0.2.4
- ipython =9.0.2
- setuptools =80.1.0
- setuptools =80.3.1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Update setuptools version in OpenMPI CI environment to 80.3.1.

Consistent with other CI configs; please verify availability on conda-forge.

Run:


🏁 Script executed:

#!/bin/bash
# Verify setuptools 80.3.1 on conda-forge
conda search setuptools=80.3.1 -c conda-forge

Length of output: 143


🏁 Script executed:

#!/bin/bash
# Verify setuptools 80.3.1 on conda-forge via Anaconda.org API
if curl -s https://api.anaconda.org/package/conda-forge/setuptools | grep -q '"80\.3\.1"'; then
  echo "Found setuptools version 80.3.1 on conda-forge."
else
  echo "Did NOT find setuptools version 80.3.1 on conda-forge."
fi

Length of output: 207


Setuptools 80.3.1 Not Found on conda-forge

The requested version of setuptools isn’t available in the conda-forge channel. Please confirm and update:

  • File: .ci_support/environment-openmpi.yml
    Line 15: currently - setuptools =80.3.1
  • Run conda search setuptools -c conda-forge to list available versions.
  • Either pin to an existing version (e.g., 80.2.0) or ensure 80.3.1 is published to conda-forge before merging.

2 changes: 1 addition & 1 deletion .ci_support/environment-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ dependencies:
- networkx =3.4.2
- pygraphviz =1.14
- ipython =9.0.2
- setuptools =80.1.0
- setuptools =80.3.1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"cloudpickle==3.1.1",
"pyzmq==26.4.0",
"setuptools==80.1.0",
"setuptools==80.3.1",
"versioneer[toml]==0.29",
]
build-backend = "setuptools.build_meta"
Expand Down
Loading