diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ba1c6b8..a6deda7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,11 +1,11 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - +--- version: 2 updates: - - package-ecosystem: "pip" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" schedule: interval: "daily" diff --git a/pyproject.toml b/pyproject.toml index d167bc1..9b76ca3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [tool.black] line-length = 79 -target-version = ['py37'] +target-version = ['py38'] include = '\.pyi?$' [tool.poetry] name = "thumbor_aws" -version = "0.6.0" +version = "0.7.0" authors = ["Bernardo Heynemann "] description = "thumbor_aws provides extensions for thumbor using AWS" readme = "README.md" @@ -30,7 +30,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">=3.7,<3.12" +python = ">=3.8,<3.12" thumbor = "^7" aiobotocore = "^2.0.0" pycurl = "^7.44.1" @@ -42,10 +42,7 @@ coverage = "^7.0.0" flake8 = "^4.0.1" isort = "^5.11.4" preggy = "^1.4.4" -pylint = [ - { version = "^2.13.8", python = "3.7"}, - { version = "^2.15.8", python = ">3.8"} -] +pylint = "^2.15.8" pytest = "^7.4.3" pytest-asyncio = "^0.20.3" pytest-cov = "^4.1.0" @@ -53,14 +50,9 @@ pytest-tldr = "^0.2.5" pytest-xdist = "^3.3.1" yanc = "^0.3.3" pyssim = "^0.4.0" -numpy = [ - { version = "1.21.0", python = "3.7"}, - { version = "^1.23.5", python = ">3.8"} -] -scipy = [ - { version = "1.7.3", python = "3.7"}, - { version = "^1.9.3", python = ">3.8"} -] +numpy = "^1.23.5" +scipy = "^1.9.3" + [build-system] requires = ["poetry-core>=1.0.0"]