Skip to content

Commit 07980e5

Browse files
committed
Bump numpy version to 2.2
This change also removes support for 3.9.
1 parent 5aeb034 commit 07980e5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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.9", "3.10", "3.11"]
12+
python-version: ["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: 3 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.8.0"
7+
version = "0.9.0"
88
authors = [
99
{name = "Metafold 3D", email = "[email protected]"},
1010
]
1111
dependencies = [
1212
"attrs~=23.2",
1313
"auth0-python~=4.7",
14-
"numpy~=1.23",
14+
"numpy~=2.2",
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.9"
21+
requires-python = ">=3.10"
2222
keywords = ["metafold", "api", "sdk", "implicit geometry"]
2323
classifiers = [
2424
"Development Status :: 3 - Alpha",

requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
attrs~=23.2
22
auth0-python~=4.7
3-
numpy~=1.23
3+
numpy~=2.2
44
requests~=2.31
55
scipy~=1.11
66

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
attrs~=23.2
22
auth0-python~=4.7
3-
numpy~=1.23
3+
numpy~=2.2
44
requests~=2.31
55
scipy~=1.11

0 commit comments

Comments
 (0)