Skip to content

Commit d92d9fb

Browse files
authored
fix(deps): only require ipaddress on python<3.7 (backport #4300) (#4307)
This is an automatic backport of pull request #4300 done by [Mergify](https://mergify.com). --- <details> <summary>Mergify commands and options</summary> <br /> More conditions and actions can be found in the [documentation](https://docs.mergify.com/). You can also trigger Mergify actions by commenting on this pull request: - `@Mergifyio refresh` will re-evaluate the rules - `@Mergifyio rebase` will rebase this PR on its base branch - `@Mergifyio update` will merge the base branch into this PR - `@Mergifyio backport <destination>` will backport this PR on `<destination>` branch Additionally, on Mergify [dashboard](https://dashboard.mergify.com/) you can: - look at your merge queues - generate the Mergify configuration with the config editor. Finally, you can contact us on https://mergify.com </details>
1 parent 4298bd7 commit d92d9fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def get_exts_for(name):
258258
"pathlib2; python_version<'3.5'",
259259
"jsonschema",
260260
"xmltodict>=0.12",
261-
"ipaddress",
261+
"ipaddress; python_version<'3.7'",
262262
"envier",
263263
]
264264
+ bytecode,

0 commit comments

Comments
 (0)