Skip to content

Commit e857cbc

Browse files
committed
Version 1.8
1 parent fd1c2fb commit e857cbc

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

COPYING

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
python-prctl - A python(ic) interface to the prctl syscall
2-
Copyright (C) 2010-2018 Dennis Kaarsemaker <[email protected]>
2+
Copyright (C) 2010-2020 Dennis Kaarsemaker <[email protected]>
33

44
This program is free software: you can redistribute it and/or modify
55
it under the terms of the GNU General Public License as published by

_prctlmodule.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* python-pctrl -- python interface to the prctl function
3-
* (c)2010-2018 Dennis Kaarsemaker <[email protected]>
3+
* (c)2010-2020 Dennis Kaarsemaker <[email protected]>
44
* See COPYING for licensing details
55
*/
66

docs/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@
3838

3939
# General information about the project.
4040
project = u'python-prctl'
41-
copyright = u'2010-2018, Dennis Kaarsemaker'
41+
copyright = u'2010-2020, Dennis Kaarsemaker'
4242

4343
# The version info for the project you're documenting, acts as replacement for
4444
# |version| and |release|, also used in various other places throughout the
4545
# built documents.
4646
#
4747
# The short X.Y version.
48-
version = '1.7'
48+
version = '1.8'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '1.7'
50+
release = '1.8'
5151

5252
# The language for content autogenerated by Sphinx. Refer to documentation
5353
# for a list of supported languages.

prctl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# python-pctrl -- python interface to the prctl function
2-
# (c)2010-2018 Dennis Kaarsemaker <[email protected]>
2+
# (c)2010-2020 Dennis Kaarsemaker <[email protected]>
33
# See COPYING for licensing details
44

55
import _prctl # The C interface

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
libraries = ['cap'])
5555

5656
setup(name = "python-prctl",
57-
version = "1.7",
57+
version = "1.8",
5858
author = "Dennis Kaarsemaker",
5959
author_email = "[email protected]",
6060
url = "http://github.com/seveas/python-prctl",

test_prctl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# python-pctrl -- python interface to the prctl function
2-
# (c)2010-2018 Dennis Kaarsemaker <[email protected]>
2+
# (c)2010-2020 Dennis Kaarsemaker <[email protected]>
33
# See COPYING for licensing details
44

55
import distutils.util

0 commit comments

Comments
 (0)