Skip to content

Commit f7c5955

Browse files
committed
python2 removal
1 parent c2f3382 commit f7c5955

File tree

6 files changed

+6
-12
lines changed

6 files changed

+6
-12
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.11', '3.12', '3.13' ]
21+
python-version: [ '3.9', '3.11', '3.12', '3.13' ]
2222

2323
steps:
2424
- uses: actions/checkout@v4

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: 2
88
build:
99
os: ubuntu-lts-latest
1010
tools:
11-
python: "3.8"
11+
python: "3.9"
1212

1313
# Build documentation in the docs/ directory with Sphinx
1414
sphinx:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Run `make` or `make help` to see a list of tasks.
33
# Based on GCOVR project (https://github.com/gcovr/gcovr).
44

5-
PYTHON_VERSION ?= 3.7
5+
PYTHON_VERSION ?= 3.9
66

77
ATLASSIAN_SDK ?= atlassian-sdk
88
QA_CONTAINER ?= atlassian-python-api-qa-$(PYTHON_VERSION)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# https://github.com/carlosperate/awesome-pyproject
66

77
[tool.black]
8-
target-version = ['py36', 'py37', 'py38', 'py39']
8+
target-version = ['py39', 'py310', 'py311']
99
line-length = 120
1010
include = '(atlassian|examples|tests)\/.*(\.py|GET|POST)'
1111

setup.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,6 @@
4646
"Operating System :: MacOS :: MacOS X",
4747
"Operating System :: Microsoft :: Windows",
4848
"Programming Language :: Python",
49-
"Programming Language :: Python :: 2.7",
50-
"Programming Language :: Python :: 3.4",
51-
"Programming Language :: Python :: 3.5",
52-
"Programming Language :: Python :: 3.6",
53-
"Programming Language :: Python :: 3.7",
54-
"Programming Language :: Python :: 3.8",
5549
"Programming Language :: Python :: 3.9",
5650
"Programming Language :: Python :: 3.10",
5751
"Programming Language :: Python :: 3.11",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ commands = pylint {[base]linting_targets}
3535

3636
[testenv:black]
3737
basepython = python3
38-
target-version = ["py27", "py37"]
38+
target-version = [ "py39" ]
3939
skip_install = true
4040
deps = black
4141
commands = black --check --diff {[base]linting_targets} --exclude __pycache__
4242

4343
[testenv:black_fmt]
4444
basepython = python3
45-
target-version = ["py37"]
45+
target-version = ["py39"]
4646
skip_install = true
4747
deps = black
4848
commands = black {[base]linting_targets} --exclude __pycache__

0 commit comments

Comments
 (0)