File tree 3 files changed +12
-4
lines changed
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change
1
+ v0.7, 28 June 2016
2
+ Add Python 3 compatibility.
3
+ Add sock_len argument to bind()
4
+ Add block argument to run()
5
+ Add run_socket()
6
+ Fix COPY* constants
7
+ Don't crash on double unlink()
8
+
1
9
v0.6, 15 Apr 2013
2
10
Add get_mark.
3
11
Original file line number Diff line number Diff line change @@ -81,9 +81,9 @@ From source
81
81
82
82
To install from source::
83
83
84
- wget http://pypi.python.org/packages/source/N/NetfilterQueue/NetfilterQueue-0.3 .tar.gz
85
- tar -xvzf NetfilterQueue-0.3 .tar.gz
86
- cd NetfilterQueue-0.3
84
+ wget http://pypi.python.org/packages/source/N/NetfilterQueue/NetfilterQueue-0.7 .tar.gz
85
+ tar -xvzf NetfilterQueue-0.7 .tar.gz
86
+ cd NetfilterQueue-0.7
87
87
python setup.py install
88
88
89
89
If Cython is installed, Distutils will use it to regenerate the .c source from the .pyx. It will then compile the .c into a .so.
Original file line number Diff line number Diff line change 1
1
from distutils .core import setup , Extension
2
2
3
- VERSION = "0.6 " # Remember to change README.rst when version changes.
3
+ VERSION = "0.7 " # Remember to change README.rst when version changes.
4
4
5
5
try :
6
6
# Use Cython
You can’t perform that action at this time.
0 commit comments