This repository was archived by the owner on May 30, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +48
-7
lines changed Expand file tree Collapse file tree 6 files changed +48
-7
lines changed Original file line number Diff line number Diff line change 1
1
ChangeLog
2
2
=========
3
3
4
+ 0.9 (2019-06-20)
5
+ ----------------
6
+
7
+ - Fix .travis.yml to use Python 3.7 (Chenxiong Qi)
8
+ - Update docs/source/conf.py to read package info properly (Chenxiong Qi)
9
+ - Add Python 3.7 to and remove Python 3.5 from TravisCI (Chenxiong Qi)
10
+ - Update scripts (Chenxiong Qi)
11
+ - Ignore more directories from git (Chenxiong Qi)
12
+ - Remove testenv py34 and py35 (Chenxiong Qi)
13
+ - Add testenv py37 (Chenxiong Qi)
14
+ - Fix typo in comment (Chenxiong Qi)
15
+ - Fix renewing expired FILE ccache (Michael Simacek)
16
+ - Remove flake8 from BuildRequires from SPEC (Chenxiong Qi)
17
+
4
18
0.8 (2017-09-05)
5
19
----------------
6
20
Original file line number Diff line number Diff line change 1
1
krbcontext
2
2
==========
3
3
4
+ .. image :: https://img.shields.io/pypi/v/krbcontext.svg
5
+ :alt: PyPI
6
+ :target: https://pypi.org/project/krbcontext/
7
+
8
+ .. image :: https://img.shields.io/pypi/pyversions/krbcontext.svg
9
+ :alt: PyPI - Python Version
10
+ :target: https://pypi.org/project/krbcontext/
11
+
4
12
.. image :: https://travis-ci.org/krbcontext/python-krbcontext.svg?branch=master
5
- :target: https://travis-ci.org/krbcontext/python-krbcontext
13
+ :target: https://travis-ci.org/krbcontext/python-krbcontext
6
14
7
15
.. image :: https://codecov.io/gh/krbcontext/python-krbcontext/branch/master/graph/badge.svg
8
- :target: https://codecov.io/gh/krbcontext/python-krbcontext
16
+ :target: https://codecov.io/gh/krbcontext/python-krbcontext
9
17
10
18
``krbcontext `` provides a Kerberos context that you can put code inside, which
11
19
requires a valid ticket in credential cache.
Original file line number Diff line number Diff line change @@ -8,11 +8,19 @@ Welcome to krbcontext's documentation!
8
8
9
9
Contents:
10
10
11
+ .. image :: https://img.shields.io/pypi/v/krbcontext.svg
12
+ :alt: PyPI
13
+ :target: https://pypi.org/project/krbcontext/
14
+
15
+ .. image :: https://img.shields.io/pypi/pyversions/krbcontext.svg
16
+ :alt: PyPI - Python Version
17
+ :target: https://pypi.org/project/krbcontext/
18
+
11
19
.. image :: https://travis-ci.org/krbcontext/python-krbcontext.svg?branch=master
12
- :target: https://travis-ci.org/krbcontext/python-krbcontext
20
+ :target: https://travis-ci.org/krbcontext/python-krbcontext
13
21
14
22
.. image :: https://codecov.io/gh/krbcontext/python-krbcontext/branch/master/graph/badge.svg
15
- :target: https://codecov.io/gh/krbcontext/python-krbcontext
23
+ :target: https://codecov.io/gh/krbcontext/python-krbcontext
16
24
17
25
.. toctree ::
18
26
:maxdepth: 2
Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
4
+ 0.9 (2019-06-20)
5
+ ----------------
6
+
7
+ A major bug `#23 `_ is fixed by Michael Simacek.
8
+
9
+ ``py34 `` and ``py35 `` are removed from tox testenv, meanwhile ``py37 `` is
10
+ added.
11
+
12
+ There are massive fixes to helper scripts under directory ``scripts/ ``.
13
+
14
+ .. _#23 : https://github.com/krbcontext/python-krbcontext/issues/23
15
+
4
16
0.8 (2017-09-05)
5
17
----------------
6
18
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ universal = 1
3
3
4
4
[package]
5
5
name = krbcontext
6
- version = 0.8
6
+ version = 0.9
7
7
author = Chenxiong Qi
8
8
author_email = qcxhome@gmail.com
Original file line number Diff line number Diff line change @@ -64,9 +64,8 @@ def get_test_requires():
64
64
'Programming Language :: Python :: 2' ,
65
65
'Programming Language :: Python :: 2.7' ,
66
66
'Programming Language :: Python :: 3' ,
67
- 'Programming Language :: Python :: 3.4' ,
68
- 'Programming Language :: Python :: 3.5' ,
69
67
'Programming Language :: Python :: 3.6' ,
68
+ 'Programming Language :: Python :: 3.7' ,
70
69
'Topic :: Software Development :: Libraries' ,
71
70
'Topic :: Software Development :: Libraries :: Python Modules' ,
72
71
'Topic :: System :: Systems Administration' ,
You can’t perform that action at this time.
0 commit comments