Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require later python version 3, >= 3.6 #43

Merged
merged 1 commit into from
Feb 18, 2020
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# mediatimestamp Changelog

## 1.7.2
- Require Python version 3.6 rather than 3.

## 1.7.1
- Correct inclusivity names in `timerange_between` method.

Expand Down
7 changes: 7 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,15 @@ pipeline {
environment {
http_proxy = "http://www-cache.rd.bbc.co.uk:8080"
https_proxy = "http://www-cache.rd.bbc.co.uk:8080"
PATH = "$HOME/.pyenv/bin:$PATH"
}
stages {
stage("Ensure pyenv has python3.6.8") {
steps {
sh "pyenv install -s 3.6.8"
sh "pyenv local 3.6.8"
}
}
stage ("Parallel Jobs") {
parallel {
stage ("Linting Check") {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# Basic metadata
name = 'mediatimestamp'
version = '1.7.1'
version = '1.7.2'
description = 'A timestamp library for high precision nanosecond timestamps'
url = 'https://github.com/bbc/rd-apmm-python-lib-mediatimestamp'
author = 'James P. Weaver'
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py3
envlist = py27, py36

[testenv]
commands = python -m unittest discover -s tests
Expand Down