Skip to content

Commit f1b20c6

Browse files
authored
more updates (revdotcom#103)
1 parent d6ace8a commit f1b20c6

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ pipeline {
44
}
55
environment {
66
GIT_CREDENTIALS = credentials("${GITHUB_CREDENTIALS}")
7+
DOCKER_BUILDKIT = 0
78
}
89
stages {
910
stage('Build') {

setup.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,10 @@ def parse_requirements(filehandle):
6363
'Intended Audience :: Developers',
6464
'License :: OSI Approved :: MIT License',
6565
'Natural Language :: English',
66-
'Programming Language :: Python :: 2',
67-
'Programming Language :: Python :: 2.7',
68-
'Programming Language :: Python :: 3',
69-
'Programming Language :: Python :: 3.4',
70-
'Programming Language :: Python :: 3.5',
71-
'Programming Language :: Python :: 3.6',
72-
'Programming Language :: Python :: 3.7',
66+
'Programming Language :: Python :: 3.8',
67+
'Programming Language :: Python :: 3.9',
68+
'Programming Language :: Python :: 3.10',
69+
'Programming Language :: Python :: 3.11',
7370
],
7471
setup_requires=['pytest-runner==4.2'],
7572
test_suite='tests',

tests/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:18.04
33
RUN useradd -u 1001 -ms /bin/bash dockeruser
44

55
RUN set -x \
6-
&& pythonVersions='python2.7 python3.4 python3.5 python3.6 python3.7' \
6+
&& pythonVersions='python3.8 python3.9 python3.10 python3.11' \
77
&& apt-get update \
88
&& apt-get install -y --no-install-recommends software-properties-common \
99
&& apt-add-repository ppa:/deadsnakes/ppa \

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py35,py36,py37
2+
envlist = py38,py39,py310,py311
33

44
[testenv]
55
skip_install = true

0 commit comments

Comments
 (0)