drop support for python 3.7

This commit is contained in:
burnettk 2022-05-20 17:45:10 -04:00
parent 162ecd9210
commit fea9f36741
6 changed files with 5 additions and 12 deletions

View File

@ -17,7 +17,6 @@ jobs:
- { python: "3.10", os: "ubuntu-latest", session: "mypy" }
- { python: "3.9", os: "ubuntu-latest", session: "mypy" }
- { python: "3.8", os: "ubuntu-latest", session: "mypy" }
- { python: "3.7", os: "ubuntu-latest", session: "mypy" }
- {
python: "3.10",
os: "ubuntu-latest",
@ -42,12 +41,6 @@ jobs:
session: "tests",
database: "sqlite",
}
- {
python: "3.7",
os: "ubuntu-latest",
session: "tests",
database: "sqlite",
}
- {
python: "3.10",
os: "windows-latest",

View File

@ -43,7 +43,7 @@ Request features on the `Issue Tracker`_.
How to set up your development environment
------------------------------------------
You need Python 3.7+ and the following tools:
You need Python 3.8+ and the following tools:
- Poetry_
- Nox_

View File

@ -45,7 +45,7 @@ Features
Requirements
------------
* Python 3.7+
* Python 3.8+
Installation

View File

@ -21,7 +21,7 @@ except ImportError:
package = "spiff_workflow_webapp"
python_versions = ["3.10", "3.9", "3.8", "3.7"]
python_versions = ["3.10", "3.9", "3.8"]
nox.needs_version = ">= 2021.6.6"
nox.options.sessions = (
"pre-commit",

View File

@ -16,7 +16,7 @@ classifiers = [
Changelog = "https://github.com/sartography/spiff-workflow-webapp/releases"
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
click = "^8.0.1"
flask = "*"
flask-admin = "*"

View File

@ -1,7 +1,7 @@
sonar.organization=sartography
sonar.projectKey=sartography_spiff-workflow-webapp
sonar.host.url=https://sonarcloud.io
sonar.python.version=3.7,3.8,3.9,3.10
sonar.python.version=3.8,3.9,3.10
sonar.python.coverage.reportPaths=coverage.xml
sonar.test.inclusions=tests
# sonar.exclusions=crc/templates/*.html,docs/**,config/**,instance/**,migrations/**,postgres/**,readme_images/**,schema/**,templates/**