Skip to content

Commit 9550354

Browse files
Specify lower bounds on dependencies (#15)
1 parent b73d74a commit 9550354

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
pip install ".[test]"
31+
pip install ".[lint]"
3132
3233
- name: Lint
3334
run: pre-commit run --all-files --show-diff-on-failure --color always

pyproject.toml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,20 @@
11
[build-system]
2-
requires = ["flit_core >=3.3,<4"]
2+
requires = ["flit_core >=3.6,<4"]
33
build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "lazy_loader"
77
version = "0.1rc2.dev0"
88
requires-python = ">=3.8"
9-
authors = [{name = "The Scientific Python Group"}]
9+
authors = [{name = "Scientific Python Developers"}]
1010
readme = "README.md"
1111
license = {file = "LICENSE.md"}
1212
classifiers = ["License :: OSI Approved :: BSD License"]
1313
dynamic = ["description"]
1414

1515
[project.optional-dependencies]
16-
dev = [
17-
"flit"
18-
]
19-
test = [
20-
"pytest",
21-
"black",
22-
"pre-commit",
23-
"flake8"
24-
]
16+
test = ["pytest >= 7"]
17+
lint = ["pre-commit >= 2.20"]
2518

2619
[project.urls]
2720
Home = "https://scientific-python.org/specs/spec-0001/"

0 commit comments

Comments
 (0)