Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
4 changes: 2 additions & 2 deletions packages/google-crc32c/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ C toolchain.

# Currently Published Wheels

Wheels are currently published for CPython 3.9, 3.10, 3.11, 3.12, 3.13 and 3.14
for multiple architectures. PyPy 3.9 and 3.10 are also supported for Linux.
Wheels are currently published for CPython 3.10, 3.11, 3.12, 3.13 and 3.14
for multiple architectures. PyPy 3.10 is also supported for Linux.
For information on building your own wheels please view [BUILDING.md](BUILDING.md).


Expand Down
3 changes: 1 addition & 2 deletions packages/google-crc32c/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@

# Constants
DEFAULT_PYTHON_VERSION = "3.14"
UNIT_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
UNIT_TEST_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"]
ALL_PYTHON = list(UNIT_TEST_PYTHON_VERSIONS)
ALL_PYTHON.extend(["3.7"])

FLAKE8_VERSION = "flake8==6.1.0"
BLACK_VERSION = "black[jupyter]==23.7.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/google-crc32c/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ name = "google-crc32c"
version = "1.8.0"
description = "A python wrapper of the C library 'Google CRC32C'"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
4 changes: 1 addition & 3 deletions packages/google-crc32c/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ classifiers =
Intended Audience :: Developers
Operating System :: OS Independent
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
Expand All @@ -39,7 +37,7 @@ classifiers =

[options]
zip_safe = True
python_requires = >=3.8
python_requires = >=3.10

[options.extras_require]
testing = pytest
Expand Down
Loading