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
6 changes: 6 additions & 0 deletions .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
upload-to-pypi:
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/sieve.cache
permissions:
id-token: write

Expand All @@ -44,4 +47,7 @@ jobs:
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
verify-metadata: false
verbose: true
packages-dir: dist/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ and removes the first unvisited candidate.
Install from source:

```bash
pip install -e .
pip install sieve.cache
```

## Quick Usage
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ requires = ["hatchling", "hatch-vcs", "hatch-requirements-txt"]
build-backend = "hatchling.build"

[project]
name = "seive_cache"
name = "sieve.cache"
dynamic = ["version", "dependencies"]
description = "A simple implementation of SEIVE caching algorithm"
description = "A simple implementation of SIEVE caching algorithm"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
Expand Down
Loading