Skip to content

Commit

Permalink
Drop support for Python 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgautier committed Dec 7, 2024
1 parent bdb8cef commit 80addb4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.9, "3.10", "3.11", "3.12"]
r-version: ['release']
os: [ubuntu-latest, ubuntu-20.04, macOS-latest]
venv_activate: ["source pyenv_base/bin/activate"]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ build-backend = "setuptools.build_meta"

[project]
name = "mashing-pumpkins"
version = "0.3.0"
version = "0.3.1"
description = "Hash sketches of sequences"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">3.8"
license = { text = "MIT" }
authors = [{ name = "Laurent Gautier", email = "[email protected]" }]
classifiers = [
Expand Down
1 change: 1 addition & 0 deletions src/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.3.1'

0 comments on commit 80addb4

Please sign in to comment.