-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix asyncio and urllib3 dependencies to support python 3.10 (#104)
* Fix: 1. asyncio is not needed on modern python (say > 3.8). Moreover, it breaks virtualenv when poetry 1.5.1 installs it on python 3.10 2. urllib3 has been resolved to version 1.22 that knows nothing about python 3.10, so it doesn't work. I've updated it to 1.26.16 which seems ok * add entries according github-actions bot
- Loading branch information
Showing
3 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "mkdocs-multirepo-plugin" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
description = "Build documentation in multiple repos into one site." | ||
authors = ["jdoiro3 <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -25,7 +25,7 @@ mv_docs_up = { reference = 'mkdocs_multirepo_plugin/scripts/mv_docs_up.sh', type | |
|
||
[tool.poetry.dependencies] | ||
mkdocs = {version = ">=1.0.4", python = ">=3.6"} | ||
asyncio = "*" | ||
asyncio = {version = "*", python = "<=3.8"} | ||
python-slugify = {version = "*", python = ">=2.7,<2.8 || >=3.6.0"} | ||
dacite = {version = "^1.8.0", python = ">=3.6"} | ||
typing-inspect = {version = "^0.8.0", python = ">=3.6"} | ||
|