E5E6 Remove Python 2.7 by tony · Pull Request #661 · tmux-python/tmuxp · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '2.7', '3.x' ]
python-version: [ '3.x' ]
tmux-version: [ '2.6', '2.7', '2.8', '3.0a', '3.1b', '3.2a', 'master' ]
steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ current
@jfindlay! Fixes :issue:`654`
- :issue:`666` CI: Move test plugin packages from pyproject.toml to
pytest fixtures. Fixes :issue:`658`
- Bump minimum version 3.5 -> 3.6
- Drop python 2.7 support
- Modernize syntax (remove ``__future__`` and modesets)
- Update black to 21.6b0
- *Insert changes/features/fixes for next release here*

tmuxp 1.7.2 (2021-02-03)
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ See donation options at https://git-pull.com/support.html.
Project details
---------------
- tmux support: 1.8, 1.9a, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6
- python support: 2.7, >= 3.3, pypy, pypy3
- python support: >= 3.6, pypy, pypy3
- Source: https://github.com/tmux-python/tmuxp
- Docs: https://tmuxp.git-pull.com
- API: https://tmuxp.git-pull.com/api.html
Expand Down
4 changes: 0 additions & 4 deletions docs/_ext/aafig.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""
sphinxcontrib.aafig
~~~~~~~~~~~~~~~~~~~
Expand All @@ -11,9 +10,6 @@
:author: Leandro Lucarella <llucax@gmail.com>
:license: BOLA, see LICENSE for details
"""

from __future__ import unicode_literals

import posixpath
from os import path

Expand Down
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import inspect
import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion docs/plugin_system.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ directory. The resulting file looks something like this:
authors = ["Author Name <author.name@<domain>.com>"]

[tool.poetry.dependencies]
python = "~2.7 || ^3.5"
python = "^3.6"
tmuxp = "^1.6.0"

[tool.poetry.dev-dependencies]
Expand Down
Loading
0