Skip to content

Commit 2626f3e

Browse files
[easy] Add a python3.7 test to gitlab. (#441)
* Add a python3.7 test to gitlab. * Add setup compat classifiers for py3.6 and py3.7.
1 parent 9a0f704 commit 2626f3e

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.gitlab-ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ stages:
3636
.windows-test-base:
3737
stage: test
3838
before_script:
39-
#currently 3.6.8 is offered by the windows-runner
39+
# currently 3.6.8 is offered by the windows-runner
4040
- python --version
4141
- $env:WINDOWS_PYTHON = python -c 'import sys ; print(sys.version[0:3])'
4242
- if (-NOT $env:WINDOWS_PYTHON -eq ${PYTHON_VERSION}) { echo "python missmatch"; exit(1) }
@@ -65,3 +65,8 @@ test-3.6-win:
6565
PYTHON_VERSIO: "3.6"
6666
tags:
6767
- windows
68+
69+
test-3.7:
70+
extends: .linux-test-base
71+
variables:
72+
PYTHON_VERSION: "3.7"

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@
4141
'Programming Language :: Python :: 3.3',
4242
'Programming Language :: Python :: 3.4',
4343
'Programming Language :: Python :: 3.5',
44+
'Programming Language :: Python :: 3.6',
45+
'Programming Language :: Python :: 3.7',
4446
'Topic :: Software Development :: Libraries :: Python Modules'
4547
]
4648
)

0 commit comments

Comments
 (0)