Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit b1f7724a authored by Dorian Turba's avatar Dorian Turba
Browse files

remove dead python version

parent 843937bb
No related branches found
No related tags found
No related merge requests found
...@@ -57,17 +57,6 @@ mypy: ...@@ -57,17 +57,6 @@ mypy:
script: script:
- mypy - mypy
requirements_py37:
image: python:3.7
stage: requirements
script:
- *requirements_script
only:
changes:
- src/**/*.py
- tests/**/*.py
- .gitlab-ci.yml
requirements_py38: requirements_py38:
image: python:3.8 image: python:3.8
stage: requirements stage: requirements
...@@ -124,20 +113,6 @@ requirements_py312: ...@@ -124,20 +113,6 @@ requirements_py312:
- tests/**/*.py - tests/**/*.py
- .gitlab-ci.yml - .gitlab-ci.yml
py37:
image: python:3.7
stage: test
needs: ["requirements_py37"]
before_script:
- *install_test
script:
- pytest
only:
changes:
- src/**/*.py
- tests/**/*.py
- .gitlab-ci.yml
py38: py38:
image: python:3.8 image: python:3.8
stage: test stage: test
......
...@@ -16,7 +16,6 @@ classifiers = [ ...@@ -16,7 +16,6 @@ classifiers = [
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
...@@ -48,23 +47,18 @@ TEST = [ ...@@ -48,23 +47,18 @@ TEST = [
[tool.pytest.ini_options] [tool.pytest.ini_options]
minversion = "6.0" minversion = "6.0"
addopts = "-rA -q --strict-markers" addopts = "-rA -q"
testpaths = [ testpaths = [
"tests", "tests",
"integration", "integration",
] ]
markers = [
"regression: prevent regression of functionality",
"destructive: make sure unwanted behavior raise errors",
"property: property based testing",
]
[tool.black] [tool.black]
line-length = 100 line-length = 100
[tool.mypy] [tool.mypy]
packages = "{{ cookiecutter.package_slug }}" packages = "{{ cookiecutter.package_slug }}"
python_version = 3.7 python_version = 3.8
disallow_untyped_defs = true disallow_untyped_defs = true
[tool.tox] [tool.tox]
...@@ -72,7 +66,7 @@ legacy_tox_ini = """ ...@@ -72,7 +66,7 @@ legacy_tox_ini = """
[tox] [tox]
min_version = 4.0 min_version = 4.0
env_list = env_list =
py{37,38,39,310,311,312} py{38,39,310,311,312}
black black
flake8 flake8
mypy mypy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment