Skip to content

Commit

Permalink
Remove Python 3.7 from default test matrix
Browse files Browse the repository at this point in the history
We no longer support Python 3.7, so no need to test on it.
  • Loading branch information
lunkwill42 committed Jul 2, 2024
1 parent 2eec45f commit 8546c9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.7", "3.9", "3.10"]
python-version: ["3.9", "3.10"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .sonarcloud.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sonar.sources=bin, python
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8

sonar.python.version=3.7, 3.8, 3.9
sonar.python.version=3.8, 3.9
sonar.tests=tests

sonar.exclusions=python/nav/smidumps/**, python/nav/enterprise/ids.py, python/nav/etc/geomap/config.py
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
# of the documentation in hacking.rst
[tox]
envlist =
{unit,integration,functional}-py{37,39,310}-django{32}
{unit,integration,functional}-py{39,310}-django{32}
javascript
docs
skipsdist = True
basepython = python3.7
basepython = python3.9

[pytest]
addopts = --failed-first
Expand All @@ -20,7 +20,6 @@ markers =

[gh-actions]
python =
3.7: py37
3.9: py39
3.10: py310

Expand Down

0 comments on commit 8546c9b

Please sign in to comment.