Skip to content

Commit d913716

Browse files
authored
Move type_extensions from test dependencies to regular dependencies (#85)
1 parent daebcee commit d913716

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

pyproject.toml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,10 @@ classifiers = [
3030
"Typing :: Typed",
3131
]
3232

33-
[project.urls]
34-
Homepage = "https://github.com/FancyNeuron/spellbind"
35-
Repository = "https://github.com/FancyNeuron/spellbind"
36-
Issues = "https://github.com/FancyNeuron/spellbind/issues"
37-
Documentation = "https://github.com/FancyNeuron/spellbind#readme"
33+
dependencies = [
34+
# type extensions uses semantic versioning: https://semver.org/
35+
"typing_extensions >=4.13, <5"
36+
]
3837

3938
[project.optional-dependencies]
4039
testing = [
@@ -43,9 +42,14 @@ testing = [
4342
"flake8",
4443
"mypy",
4544
"setuptools_scm",
46-
"typing_extensions"
4745
]
4846

47+
[project.urls]
48+
Homepage = "https://github.com/FancyNeuron/spellbind"
49+
Repository = "https://github.com/FancyNeuron/spellbind"
50+
Issues = "https://github.com/FancyNeuron/spellbind/issues"
51+
Documentation = "https://github.com/FancyNeuron/spellbind#readme"
52+
4953
[tool.mypy]
5054
enable_error_code = "explicit-override"
5155

0 commit comments

Comments
 (0)