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.10", os: "ubuntu-latest", session: "mypy" }
|
||||||
- { python: "3.9", os: "ubuntu-latest", session: "mypy" }
|
- { python: "3.9", os: "ubuntu-latest", session: "mypy" }
|
||||||
- { python: "3.8", os: "ubuntu-latest", session: "mypy" }
|
- { python: "3.8", os: "ubuntu-latest", session: "mypy" }
|
||||||
- { python: "3.7", os: "ubuntu-latest", session: "mypy" }
|
|
||||||
- {
|
- {
|
||||||
python: "3.10",
|
python: "3.10",
|
||||||
os: "ubuntu-latest",
|
os: "ubuntu-latest",
|
||||||
|
@ -42,12 +41,6 @@ jobs:
|
||||||
session: "tests",
|
session: "tests",
|
||||||
database: "sqlite",
|
database: "sqlite",
|
||||||
}
|
}
|
||||||
- {
|
|
||||||
python: "3.7",
|
|
||||||
os: "ubuntu-latest",
|
|
||||||
session: "tests",
|
|
||||||
database: "sqlite",
|
|
||||||
}
|
|
||||||
- {
|
- {
|
||||||
python: "3.10",
|
python: "3.10",
|
||||||
os: "windows-latest",
|
os: "windows-latest",
|
||||||
|
|
|
@ -43,7 +43,7 @@ Request features on the `Issue Tracker`_.
|
||||||
How to set up your development environment
|
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_
|
- Poetry_
|
||||||
- Nox_
|
- Nox_
|
||||||
|
|
|
@ -45,7 +45,7 @@ Features
|
||||||
Requirements
|
Requirements
|
||||||
------------
|
------------
|
||||||
|
|
||||||
* Python 3.7+
|
* Python 3.8+
|
||||||
|
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
|
|
|
@ -21,7 +21,7 @@ except ImportError:
|
||||||
|
|
||||||
|
|
||||||
package = "spiff_workflow_webapp"
|
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.needs_version = ">= 2021.6.6"
|
||||||
nox.options.sessions = (
|
nox.options.sessions = (
|
||||||
"pre-commit",
|
"pre-commit",
|
||||||
|
|
|
@ -16,7 +16,7 @@ classifiers = [
|
||||||
Changelog = "https://github.com/sartography/spiff-workflow-webapp/releases"
|
Changelog = "https://github.com/sartography/spiff-workflow-webapp/releases"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.7"
|
python = "^3.8"
|
||||||
click = "^8.0.1"
|
click = "^8.0.1"
|
||||||
flask = "*"
|
flask = "*"
|
||||||
flask-admin = "*"
|
flask-admin = "*"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
sonar.organization=sartography
|
sonar.organization=sartography
|
||||||
sonar.projectKey=sartography_spiff-workflow-webapp
|
sonar.projectKey=sartography_spiff-workflow-webapp
|
||||||
sonar.host.url=https://sonarcloud.io
|
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.python.coverage.reportPaths=coverage.xml
|
||||||
sonar.test.inclusions=tests
|
sonar.test.inclusions=tests
|
||||||
# sonar.exclusions=crc/templates/*.html,docs/**,config/**,instance/**,migrations/**,postgres/**,readme_images/**,schema/**,templates/**
|
# sonar.exclusions=crc/templates/*.html,docs/**,config/**,instance/**,migrations/**,postgres/**,readme_images/**,schema/**,templates/**
|
||||||
|
|
Loading…
Reference in New Issue