Skip to content

Commit

Permalink
Specifies minimum Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
PTNobel committed Sep 3, 2024
1 parent 0764b53 commit 846b071
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[project]
requires-python = ">= 3.8"

[build-system]
requires = [
"numpy>=2.0",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ def is_platform_mac():

setup(
name='diffcp',
version="1.0.23",
version="1.0.25",
author="Akshay Agrawal, Shane Barratt, Stephen Boyd, Enzo Busseti, Walaa Moursi",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
setup_requires=['pybind11 >= 2.4'],
install_requires=[
"numpy >= 1.15",
"numpy >= 2.0",
"scs >= 2.0.2", # 2.0.2 is the oldest version on conda forge
"scipy >= 1.1.0",
"pybind11 >= 2.4",
Expand Down

0 comments on commit 846b071

Please sign in to comment.