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
4 changes: 2 additions & 2 deletions .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
use-mamba: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: "3.10"
- name: Update pip
run: >-
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: paretobench
dependencies:
- python=3.11
- pytest
- pip
- pip:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[project]
name = "paretobench"
version = "0.5.0"
version = "0.6.0"
authors = [
{ name="Christopher M. Pierce", email="contact@chris-pierce.com" },
]
description="A collection of multiobjective optimization test problems."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
Expand Down
2 changes: 1 addition & 1 deletion src/paretobench/analyze_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def get_cell(x):
df = df.pivot_table(
index="problem",
columns=("exp_name" if "exp_name" in df.index.names else "exp_idx"),
values=["cell_txt"],
values=[("cell_txt", "")],
aggfunc=lambda x: x,
fill_value="-",
)
Expand Down
Loading