Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.13"]
python-version: ["3.14"]

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
output-dir: wheelhouse
env:
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'
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'
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014
CIBW_ARCHS_LINUX: 'auto aarch64'
CIBW_ARCHS_MACOS: 'auto arm64'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ tags
# Exclude these directories
bin/
data/
share/
wheelhouse/

# Distribution / packaging
Expand Down
53 changes: 25 additions & 28 deletions pip-freeze.txt
Original file line number Diff line number Diff line change
@@ -1,32 +1,29 @@
attrs==21.4.0
asttokens==3.0.0
backcall==0.2.0
Cython==0.29.28
decorator==5.1.1
importlib-metadata==4.8.3
iniconfig==1.1.1
ipdb==0.13.9
ipython==7.16.3
ipython-genutils==0.2.0
jedi==0.17.2
-e git+ssh://git@github.com/escherba/python-metrohash.git@c0cd7cbc69058a884df7cc424d550e206d1476a9#egg=metrohash
numpy==1.19.5
packaging==21.3
parso==0.7.1
pexpect==4.8.0
Cython==3.1.4
decorator==5.2.1
exceptiongroup==1.3.0
executing==2.2.1
iniconfig==2.1.0
ipdb==0.13.13
ipython==8.12.3
jedi==0.19.2
matplotlib-inline==0.1.7
numpy==1.24.4
packaging==25.0
parso==0.8.5
pexpect==4.9.0
pickleshare==0.7.5
pkg_resources==0.0.0
pluggy==1.0.0
prompt-toolkit==3.0.28
pluggy==1.5.0
prompt_toolkit==3.0.52
ptyprocess==0.7.0
py==1.11.0
py-cpuinfo==8.0.0
Pygments==2.11.2
pyparsing==3.0.7
pytest==7.0.1
six==1.16.0
toml==0.10.2
tomli==1.2.3
traitlets==4.3.3
typing_extensions==4.1.1
wcwidth==0.2.5
zipp==3.6.0
pure_eval==0.2.3
py-cpuinfo==9.0.0
Pygments==2.19.2
pytest==8.3.5
stack-data==0.6.3
tomli==2.3.0
traitlets==5.14.3
typing_extensions==4.13.2
wcwidth==0.2.14
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def get_system_bits():
),
]

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


Expand Down
Loading