Skip to content

Commit 29b2cb6

Browse files
committed
v0.4.1
1 parent 63538ec commit 29b2cb6

8 files changed

Lines changed: 75 additions & 55 deletions

File tree

pip-freeze.txt

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
11
attrs==21.4.0
22
backcall==0.2.0
3-
Cython==0.29.27
3+
Cython==0.29.28
44
decorator==5.1.1
5-
importlib-metadata==2.1.3
5+
importlib-metadata==4.8.3
66
iniconfig==1.1.1
77
ipdb==0.13.9
8-
ipython==7.9.0
8+
ipython==7.16.3
99
ipython-genutils==0.2.0
1010
jedi==0.17.2
11-
numpy==1.18.5
12-
packaging==20.9
11+
numpy==1.19.5
12+
packaging==21.3
1313
parso==0.7.1
14-
pathlib2==2.3.6
1514
pexpect==4.8.0
1615
pickleshare==0.7.5
17-
pluggy==0.13.1
18-
prompt-toolkit==2.0.10
16+
pkg_resources==0.0.0
17+
pluggy==1.0.0
18+
prompt-toolkit==3.0.28
1919
ptyprocess==0.7.0
2020
py==1.11.0
2121
py-cpuinfo==8.0.0
2222
Pygments==2.11.2
23-
pyparsing==2.4.7
24-
pytest==6.1.2
23+
pyparsing==3.0.7
24+
pytest==7.0.1
2525
six==1.16.0
2626
toml==0.10.2
27+
tomli==1.2.3
2728
traitlets==4.3.3
29+
typing_extensions==4.1.1
2830
wcwidth==0.2.5
29-
zipp==1.2.0
31+
zipp==3.6.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
import os
43
import struct
4+
import os
55
from os.path import join, dirname
66

77
from setuptools import setup
@@ -127,7 +127,7 @@ def get_system_bits():
127127
)
128128

129129

130-
VERSION = "0.4.0.post2"
130+
VERSION = "0.4.1"
131131
URL = "https://github.com/escherba/python-cityhash"
132132

133133

src/cityhash.cpp

Lines changed: 19 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/cityhash.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Python wrapper for CityHash
1010

1111
__author__ = "Eugene Scherba"
1212
__email__ = "escherba+cityhash@gmail.com"
13-
__version__ = '0.4.0.post2'
13+
__version__ = '0.4.1'
1414
__all__ = [
1515
"CityHash32",
1616
"CityHash64",

src/cityhashcrc.cpp

Lines changed: 19 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/cityhashcrc.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Python wrapper for CityHash-CRC
1010

1111
__author__ = "Eugene Scherba"
1212
__email__ = "escherba+cityhash@gmail.com"
13-
__version__ = '0.4.0.post2'
13+
__version__ = '0.4.1'
1414
__all__ = [
1515
"CityHashCrc128",
1616
"CityHashCrc128WithSeed",

0 commit comments

Comments
 (0)