Skip to content

Commit

Permalink
remove 3.8 fully
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust committed Dec 27, 2024
1 parent 2cb28d0 commit 03dffe6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ PyProbables
.. image:: https://img.shields.io/github/release/barrust/pyprobables.svg
:target: https://github.com/barrust/pyprobables/releases
:alt: GitHub release
.. image:: https://github.com/barrust/pyprobables/workflows/Python%20package/badge.svg
:target: https://github.com/barrust/pyprobables/actions?query=workflow%3A%22Python+package%22
.. image:: https://github.com/barrust/pyprobables/actions?query=workflow%3A%22Python+package%22+branch%3Amaster/badge.svg
:target: https://github.com/barrust/pyprobables/actions?query=workflow%3A%22Python+package%22+branch%3Amaster
:alt: Build Status
.. image:: https://codecov.io/gh/barrust/pyprobables/branch/master/graph/badge.svg?token=OdETiNgz9k
:target: https://codecov.io/gh/barrust/pyprobables
Expand Down Expand Up @@ -56,7 +56,7 @@ To install `pyprobables`, simply clone the `repository on GitHub

$ python setup.py install

`pyprobables` supports python 3.8 - 3.13+
`pyprobables` supports python 3.9 - 3.13+

For *python 2.7* support, install `release 0.3.2 <https://github.com/barrust/pyprobables/releases/tag/v0.3.2>`__

Expand Down
4 changes: 2 additions & 2 deletions probables/hashes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
from functools import wraps
from hashlib import md5, sha256
from struct import unpack
from typing import Callable, TypeAlias
from typing import Callable, Union

from probables.constants import UINT32_T_MAX, UINT64_T_MAX

KeyT: TypeAlias = str | bytes
KeyT = Union[str, bytes]
SimpleHashT = Callable[[KeyT, int], int]
HashResultsT = list[int]
HashFuncT = Callable[[KeyT, int], HashResultsT]
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,13 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8"
requires-python = ">=3.9"

[tool.setuptools.dynamic]
version = { attr = "probables.__version__" }
Expand Down

0 comments on commit 03dffe6

Please sign in to comment.