Skip to content

Commit

Permalink
Bump minimum version to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jkwill87 committed Dec 21, 2022
1 parent 699c25b commit e08f978
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
python-version: ["3.7", "3.x"]
python-version: ["3.8", "3.x"]
name: build-v${{matrix.python-version}}

steps:
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:

strategy:
matrix:
python-version: ["3.7", "3.x"]
python-version: ["8", "3.x"]
name: test-v${{matrix.python-version}}

steps:
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
- name: Installing Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8

- name: Installing Requirements
run: pip install -U -r requirements.txt -r -r requirements-dev.txt
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A command-line utility for organizing media files."
authors = [{ name = "Jessy Williams", email = "[email protected]" }]
maintainers = [{ name = "Jessy Williams", email = "[email protected]" }]
license = { file = "LICENSE.txt" }
requires-python = ">=3.7"
requires-python = ">=3.8"
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]
scripts = { mnamer = "mnamer.__main__:main" }
urls = { repository = "https://github.com/jkwill87/mnamer" }
Expand All @@ -30,18 +30,18 @@ build-backend = "setuptools.build_meta"

[tool.black]
line-length = 88
target-version = ["py37"]
target-version = ["py38"]

[tool.pyright]
reportGeneralTypeIssues = "information"
pythonVersion = "3.7"
pythonVersion = "3.8"
include = ["mnamer"]
exclude = ["playground.py", "venv"]
venv = ["venv"]

[tool.isort]
profile = "black"
py_version = 37
py_version = 38
line_length = 88
known_first_party = "mnamer"
combine_star = true
Expand All @@ -54,4 +54,4 @@ disable = ["C0103", "C0114", "C0116", "C0209", "E0401", "R0801"]

[tool.mypy]
incremental = false
python_version = "3.7"
python_version = "3.8"

0 comments on commit e08f978

Please sign in to comment.