Skip to content

Commit

Permalink
Drop Python3.7 support (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermef authored Oct 31, 2023
1 parent 5671dbc commit dedbefb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 22 deletions.
14 changes: 7 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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"
22 changes: 7 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
description = "thumbor_aws provides extensions for thumbor using AWS"
readme = "README.md"
Expand All @@ -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"
Expand All @@ -42,25 +42,17 @@ 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"
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"]
Expand Down

0 comments on commit dedbefb

Please sign in to comment.