Skip to content

Commit 33496e5

Browse files
authored
Merge pull request #315 from kylebgorman/np
Unpins Numpy
2 parents aaa41c9 + 2c30153 commit 33496e5

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

Diff for: .circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ workflows:
6565
- twine
6666
matrix:
6767
parameters:
68-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
68+
python-version: ["3.10", "3.11", "3.12", "3.13"]

Diff for: pyproject.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ name = "yoyodyne"
1414
version = "0.3.0"
1515
description = "Small-vocabulary neural sequence-to-sequence models"
1616
readme = "README.md"
17-
requires-python = ">= 3.9"
17+
requires-python = ">= 3.10"
1818
license = { text = "Apache 2.0" }
1919
authors = [
2020
{name = "Adam Wiemerslage"},
@@ -29,15 +29,13 @@ keywords = [
2929
]
3030
dependencies = [
3131
"maxwell >= 0.2.6",
32-
# TODO: allow >= 2.0.0 once we we migrate to lightning >= 2.0.0".
33-
"numpy >= 1.26.0, < 2.0.0",
32+
"numpy >= 2.2.3",
3433
"lightning >= 1.7.0, < 2.0.0",
3534
# TODO: checkpoint loading error with 2.6.0; see #305.
3635
"torch >= 2.5.1, < 2.6.0",
3736
"wandb >= 0.18.5, < 0.19.0",
3837
]
3938
classifiers = [
40-
"Programming Language :: Python :: 3.9",
4139
"Programming Language :: Python :: 3.10",
4240
"Programming Language :: Python :: 3.11",
4341
"Programming Language :: Python :: 3.12",

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ build>=1.2.1
33
flake8>=7.1.0
44
lightning>=1.7.0,<2.0.0
55
maxwell>=0.2.6
6-
numpy>=1.26.0,<2.0.0
6+
numpy>=2.2.3
77
pandas>=2.2.2
88
pytest>=8.3.2
99
scipy>=1.13.1

0 commit comments

Comments
 (0)