Skip to content

Commit

Permalink
Fix asyncio and urllib3 dependencies to support python 3.10 (#104)
Browse files Browse the repository at this point in the history
* 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
hxmn authored Jul 28, 2023
1 parent 53b7099 commit b0cac12
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.6.2

### Prs in Release

- [Fix deps for Python 3.10](https://github.com/jdoiro3/mkdocs-multirepo-plugin/pull/104)

## 0.6.1

### Prs in Release
Expand Down
13 changes: 7 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
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"
Expand All @@ -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"}
Expand Down

0 comments on commit b0cac12

Please sign in to comment.