Skip to content

Commit

Permalink
deps: remove upper bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
elliot-100 committed Jul 13, 2024
1 parent 0c6bd62 commit 174cec4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Historic and pre-release versions aren't necessarily included.

### Changed

- Dependencies: remove upper bounds when specifying versions
- Dev dependencies: use ruff for formatting; drop black + isort
- CI: Reduce Dependabot frequency to monthly

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ include = ["CHANGELOG.md"]
license = "GPL 3.0"

[tool.poetry.dependencies]
python = "^3.8"
beautifulsoup4 = "^4.12.2"
requests = "^2.23.1"
playwright = "^1.39.0"
python = ">=3.8"
beautifulsoup4 = ">=4.12.2"
requests = ">=2.23.1"
playwright = ">=1.39.0"

[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
Expand Down

0 comments on commit 174cec4

Please sign in to comment.