File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load diff This file was deleted.
Load diff This file was deleted.
Load diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Publish to PyPI
2+
3+ on :
4+ release :
5+ types : [published]
6+ workflow_dispatch :
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+ permissions :
12+ contents : read
13+ steps :
14+ - uses : actions/checkout@v4
15+ - uses : actions/setup-python@v5
16+ with :
17+ python-version : " 3.12"
18+ - name : Install build
19+ run : pip install build
20+ - name : Build sdist and wheel
21+ run : python -m build
22+ - uses : actions/upload-artifact@v4
23+ with :
24+ name : dist
25+ path : dist/
26+
27+ publish :
28+ needs : build
29+ runs-on : ubuntu-latest
30+ environment : pypi
31+ permissions :
32+ id-token : write
33+ contents : read
34+ steps :
35+ - uses : actions/download-artifact@v4.1.8
36+ with :
37+ name : dist
38+ path : dist/
39+ - name : Publish to PyPI
40+ uses : pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
Load diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " fastbloomfilter"
7- version = " 0.1.0.1 "
7+ version = " 0.0.13 "
88description = " A fast and memory-efficient Bloom Filter implementation with memory mapping support"
99readme = " README.md"
1010requires-python = " >=3.11"
Original file line number Diff line number Diff line change 1- __version__ = "0.1.0.1 "
1+ __version__ = "0.0.13 "
22__all__ = [
33 "BloomFilter" ,
44 "blake2b512" ,
You can’t perform that action at this time.
0 commit comments