Skip to content

Commit

Permalink
[REM] drop support for py37
Browse files Browse the repository at this point in the history
It is now end of life and there are extra issues supporting it.
  • Loading branch information
oerp-odoo committed May 17, 2024
1 parent 2302cd1 commit 63e95d0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
fail-fast: false
python: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Setup Python
Expand Down
1 change: 1 addition & 0 deletions git_trunk/git_trunk_commands.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Git Trunk based workflow helper commands."""
from __future__ import annotations
import re
import os
import pathlib
Expand Down
1 change: 1 addition & 0 deletions git_trunk/tests/test_git_trunk_submodule_update.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import annotations
import os
from collections import namedtuple
import pathlib
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
classifiers=[
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310,py311,py312,lint
envlist = py38,py39,py310,py311,py312,lint

[testenv]
extras = test
Expand Down

0 comments on commit 63e95d0

Please sign in to comment.