Skip to content

Commit

Permalink
require python 3.8+
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Jan 12, 2024
1 parent 831caa5 commit d691132
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repos:
rev: v3.15.0
hooks:
- id: pyupgrade
args: ["--py37-plus", "--keep-percent-format"]
args: ["--py38-plus", "--keep-percent-format"]
exclude: ^(constructor/nsis/.*py)
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
line-length = 100
target-version = ['py37', 'py38', 'py39', 'py310']
target-version = ['py38', 'py39', 'py310']

[tool.isort]
profile = "black"
Expand Down
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ build:

requirements:
host:
- python
- python # >=3.8
- pip
run:
- conda >=4.6
- python
- python # >=3.8
- ruamel.yaml >=0.11.14,<0.19
- conda-standalone
- pillow >=3.1 # [win or osx]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
package_data={
"constructor": ['header.sh', 'nsis/*', 'osx/*', 'ttf/*']
},
python_requires=">=3.7",
python_requires=">=3.8",
)

0 comments on commit d691132

Please sign in to comment.