File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# mediatimestamp Changelog
22
3+ ## 1.7.2
4+ - Require Python version 3.6 rather than 3.
5+
36## 1.7.1
47- Correct inclusivity names in ` timerange_between ` method.
58
Original file line number Diff line number Diff line change @@ -38,8 +38,15 @@ pipeline {
3838 environment {
3939 http_proxy = " http://www-cache.rd.bbc.co.uk:8080"
4040 https_proxy = " http://www-cache.rd.bbc.co.uk:8080"
41+ PATH = " $HOME /.pyenv/bin:$PATH "
4142 }
4243 stages {
44+ stage(" Ensure pyenv has python3.6.8" ) {
45+ steps {
46+ sh " pyenv install -s 3.6.8"
47+ sh " pyenv local 3.6.8"
48+ }
49+ }
4350 stage (" Parallel Jobs" ) {
4451 parallel {
4552 stage (" Linting Check" ) {
Original file line number Diff line number Diff line change 1818
1919# Basic metadata
2020name = 'mediatimestamp'
21- version = '1.7.1 '
21+ version = '1.7.2 '
2222description = 'A timestamp library for high precision nanosecond timestamps'
2323url = 'https://github.com/bbc/rd-apmm-python-lib-mediatimestamp'
2424author = 'James P. Weaver'
Original file line number Diff line number Diff line change 44# and then run "tox" from this directory.
55
66[tox]
7- envlist = py27, py3
7+ envlist = py27, py36
88
99[testenv]
1010commands = python -m unittest discover -s tests
You can’t perform that action at this time.
0 commit comments