We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 689c203 commit 1478770Copy full SHA for 1478770
CHANGELOG.md
@@ -7,6 +7,13 @@ Version numbers should follow https://semver.org/spec/v2.0.0.html
7
8
## [Unreleased]
9
10
+## Fixed
11
+
12
+- Use `>=` to define minimum version numbers, not `~X.Y.Z`.
13
+ This fixes an issue where installing alongside other versions of `attrs`
14
+ caused an error:
15
+ `django-schema-graph 2.2.0 depends on attrs<22.0.0 and >=21.4.0`
16
17
18
## [2.2.0] - 2022-10-26
19
pyproject.toml
@@ -40,8 +40,8 @@ classifiers = [
40
41
42
[tool.poetry.dependencies]
43
-python = "^3.6"
44
-attrs = "^21.4.0"
+python = ">=3.6"
+attrs = ">=21.4.0"
45
46
[tool.poetry.dev-dependencies]
47
django-environ = "^0.4.5"
0 commit comments