Skip to content

Commit d6de571

Browse files
authored
ci: Remove support for python 2.7, 3.5 (#661)
Remove Python 2.7
2 parents d611a2a + 62dc1b8 commit d6de571

39 files changed

+116
-1123
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [ '2.7', '3.x' ]
13+
python-version: [ '3.x' ]
1414
tmux-version: [ '2.6', '2.7', '2.8', '3.0a', '3.1b', '3.2a', 'master' ]
1515
steps:
1616
- uses: actions/checkout@v1

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ current
1111
@jfindlay! Fixes :issue:`654`
1212
- :issue:`666` CI: Move test plugin packages from pyproject.toml to
1313
pytest fixtures. Fixes :issue:`658`
14+
- Bump minimum version 3.5 -> 3.6
15+
- Drop python 2.7 support
16+
- Modernize syntax (remove ``__future__`` and modesets)
17+
- Update black to 21.6b0
1418
- *Insert changes/features/fixes for next release here*
1519

1620
tmuxp 1.7.2 (2021-02-03)

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ See donation options at https://git-pull.com/support.html.
252252
Project details
253253
---------------
254254
- tmux support: 1.8, 1.9a, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
255-
- python support: 2.7, >= 3.3, pypy, pypy3
255+
- python support: >= 3.6, pypy, pypy3
256256
- Source: https://github.com/tmux-python/tmuxp
257257
- Docs: https://tmuxp.git-pull.com
258258
- API: https://tmuxp.git-pull.com/api.html

docs/_ext/aafig.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
sphinxcontrib.aafig
43
~~~~~~~~~~~~~~~~~~~
@@ -11,9 +10,6 @@
1110
:author: Leandro Lucarella <llucax@gmail.com>
1211
:license: BOLA, see LICENSE for details
1312
"""
14-
15-
from __future__ import unicode_literals
16-
1713
import posixpath
1814
from os import path
1915

docs/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
import inspect
32
import os
43
import sys

docs/plugin_system.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ directory. The resulting file looks something like this:
6767
authors = ["Author Name <author.name@<domain>.com>"]
6868
6969
[tool.poetry.dependencies]
70-
python = "~2.7 || ^3.5"
70+
python = "^3.6"
7171
tmuxp = "^1.6.0"
7272
7373
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)