Skip to content

Commit 68999b6

Browse files
committed
Restore support for Python 3.9
Lower the minimum Numpy requirement to 2.0 in order to continue to support Python 3.9.
1 parent 08172d5 commit 68999b6

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.10", "3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "metafold"
7-
version = "0.9.0"
7+
version = "0.10.0"
88
authors = [
99
{name = "Metafold 3D", email = "[email protected]"},
1010
]
1111
dependencies = [
1212
"attrs~=23.2",
1313
"auth0-python~=4.7",
14-
"numpy~=2.1",
14+
"numpy~=2.0",
1515
"requests~=2.31",
1616
"scipy~=1.11",
1717
]
1818
readme = "README.md"
1919
license = {file = "LICENSE"}
2020
description = "Metafold SDK for Python"
21-
requires-python = ">=3.10"
21+
requires-python = ">=3.9"
2222
keywords = ["metafold", "api", "sdk", "implicit geometry"]
2323
classifiers = [
2424
"Development Status :: 3 - Alpha",
@@ -29,6 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.9",
3030
"Programming Language :: Python :: 3.10",
3131
"Programming Language :: Python :: 3.11",
32+
"Programming Language :: Python :: 3.12",
3233
"Topic :: Scientific/Engineering",
3334
"Topic :: Software Development :: Libraries :: Python Modules"
3435
]

0 commit comments

Comments
 (0)