Skip to content

Commit c3bfb4d

Browse files
authored
Python-v3.14 support
* version updates * compile
1 parent 8f4be62 commit c3bfb4d

File tree

7 files changed

+3898
-3632
lines changed

7 files changed

+3898
-3632
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [windows-latest, macos-latest, ubuntu-latest]
18-
python-version: ["3.13"]
18+
python-version: ["3.14"]
1919

2020
runs-on: ${{ matrix.os }}
2121
steps:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
output-dir: wheelhouse
3939
env:
40-
CIBW_BUILD: '{cp36,cp37,cp38,cp39,cp310,cp311,cp312,cp313}-{manylinux_x86_64,manylinux_aarch64,win32,win_amd64,macosx_x86_64} {cp39,cp310,cp311,cp312,cp313}-macosx_arm64'
40+
CIBW_BUILD: '{cp36,cp37,cp38,cp39,cp310,cp311,cp312,cp313,cp314}-{manylinux_x86_64,manylinux_aarch64,win32,win_amd64,macosx_x86_64} {cp39,cp310,cp311,cp312,cp313,cp314}-macosx_arm64'
4141
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014
4242
CIBW_ARCHS_LINUX: 'auto aarch64'
4343
CIBW_ARCHS_MACOS: 'auto arm64'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ tags
1515
# Exclude these directories
1616
bin/
1717
data/
18+
share/
1819
wheelhouse/
1920

2021
# Distribution / packaging

pip-freeze.txt

Lines changed: 25 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,29 @@
1-
attrs==21.4.0
1+
asttokens==3.0.0
22
backcall==0.2.0
3-
Cython==0.29.28
4-
decorator==5.1.1
5-
importlib-metadata==4.8.3
6-
iniconfig==1.1.1
7-
ipdb==0.13.9
8-
ipython==7.16.3
9-
ipython-genutils==0.2.0
10-
jedi==0.17.2
11-
-e git+ssh://[email protected]/escherba/python-metrohash.git@c0cd7cbc69058a884df7cc424d550e206d1476a9#egg=metrohash
12-
numpy==1.19.5
13-
packaging==21.3
14-
parso==0.7.1
15-
pexpect==4.8.0
3+
Cython==3.1.4
4+
decorator==5.2.1
5+
exceptiongroup==1.3.0
6+
executing==2.2.1
7+
iniconfig==2.1.0
8+
ipdb==0.13.13
9+
ipython==8.12.3
10+
jedi==0.19.2
11+
matplotlib-inline==0.1.7
12+
numpy==1.24.4
13+
packaging==25.0
14+
parso==0.8.5
15+
pexpect==4.9.0
1616
pickleshare==0.7.5
1717
pkg_resources==0.0.0
18-
pluggy==1.0.0
19-
prompt-toolkit==3.0.28
18+
pluggy==1.5.0
19+
prompt_toolkit==3.0.52
2020
ptyprocess==0.7.0
21-
py==1.11.0
22-
py-cpuinfo==8.0.0
23-
Pygments==2.11.2
24-
pyparsing==3.0.7
25-
pytest==7.0.1
26-
six==1.16.0
27-
toml==0.10.2
28-
tomli==1.2.3
29-
traitlets==4.3.3
30-
typing_extensions==4.1.1
31-
wcwidth==0.2.5
32-
zipp==3.6.0
21+
pure_eval==0.2.3
22+
py-cpuinfo==9.0.0
23+
Pygments==2.19.2
24+
pytest==8.3.5
25+
stack-data==0.6.3
26+
tomli==2.3.0
27+
traitlets==5.14.3
28+
typing_extensions==4.13.2
29+
wcwidth==0.2.14

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def get_system_bits():
117117
),
118118
]
119119

120-
VERSION = "0.4.0"
120+
VERSION = "0.4.1"
121121
URL = "https://github.com/escherba/python-metrohash"
122122

123123

0 commit comments

Comments
 (0)