Skip to content
Open
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: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Then run the benchmarks against the latest commit on CVXPY by:
```
asv run
```
Optionally, you can run ``asv dev`` to ensure the code is running smoothly. It is equivalent to the following command:
```
asv run --python=same --quick --show-stderr --dry-run
```
To run a particular benchmark use:
```
asv run --bench CVaRBenchmark
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exclude = [
"*__init__.py"
]
# The minimum Python version that should be supported
target-version = "py37"
target-version = "py38"

[build-system]
requires = ["setuptools>=42"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
package_dir={"": "benchmark"},
packages=setuptools.find_packages(where="benchmark"),
python_requires=">=3.7",
python_requires=">=3.8",
license='Apache License, Version 2.0',
install_requires=[
"cvxpy",
Expand Down