-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pyproject updates (poetry upgrade, no more py37, increment version) (#73
- Loading branch information
1 parent
8eb0c55
commit 847a413
Showing
1 changed file
with
4 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "discogs_alert" | ||
version = "0.0.19" | ||
version = "0.0.20" | ||
description = "Configurable, real-time alerts for your discogs wantlist" | ||
license = "MIT" | ||
authors = ["mhsb <[email protected]>"] | ||
|
@@ -11,7 +11,7 @@ include = ["LICENSE"] | |
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
python = "^3.8" | ||
beautifulsoup4 = "^4.11.2" | ||
click = "^8.1.3" | ||
dacite = "^1.8.0" | ||
|
@@ -22,7 +22,7 @@ psutil = "^5.9.7" | |
requests = "^2.28.2" | ||
ruff = "^0.0.253" | ||
schedule = "^1.1.0" | ||
selenium = "^4.14.2" | ||
selenium = "^4.14.0" | ||
tox = [ | ||
{version = "^3", python = "<3.8"}, # because fake-useragent has a importlib-metadata constraint that conflicts | ||
{version = "^4.4.5", python = ">=3.8"} | ||
|
@@ -34,7 +34,7 @@ pytest = "^7.2.1" | |
pytest-sugar = "^0.9.6" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.1.0"] | ||
requires = ["poetry-core>=1.9.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry2conda] | ||
|