drop support for python 3.7
This commit is contained in:
parent
162ecd9210
commit
fea9f36741
|
@ -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",
|
||||
|
|
|
@ -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_
|
||||
|
|
|
@ -45,7 +45,7 @@ Features
|
|||
Requirements
|
||||
------------
|
||||
|
||||
* Python 3.7+
|
||||
* Python 3.8+
|
||||
|
||||
|
||||
Installation
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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 = "*"
|
||||
|
|
|
@ -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/**
|
||||
|
|
Loading…
Reference in New Issue