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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
matrix:
include:
- os: ubuntu-22.04
python-version: '3.9'
toxenv: py39
python-version: '3.10'
toxenv: py310
- os: ubuntu-24.04
python-version: '3.13'
toxenv: py313
python-version: '3.14'
toxenv: py314

env:
TOXENV: ${{ matrix.toxenv }}
Expand Down
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

Version 0.1.1 (not released yet)
--------------------------------

- cythonize with latest Cython release
- use SPDX license identifier, require a recent setuptools
- add support for Python 3.14, remove 3.9
- migrate tox configuration to pyproject.toml
- fix typos and grammar

Version 0.1.0 2024-11-18
------------------------

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2024 Thomas Waldmann <tw@waldmann-edv.de>
Copyright (C) 2024-2025 Thomas Waldmann <tw@waldmann-edv.de>
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ maintainers = [
{name="Thomas Waldmann", email="tw@waldmann-edv.de"},
]
description = "Memory-efficient hash table (implemented in Cython)"
requires-python = ">=3.9"
requires-python = ">=3.10"
keywords = ["hashtable", "memory", "efficient", "dense"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = {text="BSD"}
license = "BSD-3-Clause"
license-files = ["LICENSE.rst"]
dependencies = []

[project.urls]
Expand All @@ -33,7 +33,7 @@ dependencies = []
borghash-demo = "borghash.__main__:demo"

[build-system]
requires = ["setuptools", "wheel", "setuptools_scm[toml]>=6.2"]
requires = ["setuptools>=78.1.1", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
Expand All @@ -43,7 +43,7 @@ markers = []


[tool.tox]
env_list = ["py39", "py310", "py311", "py312", "py313"]
env_list = ["py310", "py311", "py312", "py313", "py314"]

[tool.tox.env]

Expand Down