Skip to content

Commit

Permalink
Merge pull request #81 from pelican-plugins/remove-upper-bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmayer authored Mar 8, 2024
2 parents 3ddef2a + fca1d32 commit f1af862
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Release type: patch

Remove upper bounds on several dependency versions.
14 changes: 6 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,25 +31,23 @@ classifiers = [

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
pelican = "^3 || ^4"
pelican = ">=4.5"
markdown = {version = ">=3.2", optional = true}
beautifulsoup4 = "^4.9"
six = "^1.15.0"
Pillow = "^9.1 || ^10"
lxml = "^4.6"
beautifulsoup4 = ">=4.9"
Pillow = ">=9.1"
lxml = ">=4.6"

[tool.poetry.dev-dependencies]
black = "^23"
flake8 = "^4.0"
flake8 = "^5.0"
flake8-black = "^0.3.3"
invoke = "^2.0"
isort = "^5.12.0"
markdown = "^3.2"
pytest = "^6.0"
pytest-cov = "^2.8"
pytest-mock = "^3.3.1"
pytest-pythonpath = "^0.7.3"
pytest-sugar = "^0.9.4"
pytest-sugar = ">=1.0.0"

[tool.poetry.extras]
markdown = ["markdown"]
Expand Down

0 comments on commit f1af862

Please sign in to comment.