Skip to content

Commit 5f8a087

Browse files
authored
Cleanup/maintenance (#18)
* pyproject.toml cleaning * Add Python 3.13 to changelog --------- Co-authored-by: Jay Qi <[email protected]>
1 parent 384c5e9 commit 5f8a087

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## v0.4.0 (2025-03-20)
44

55
- Adds support for type checking per [PEP 561 specification](https://typing.python.org/en/latest/spec/distributing.html#packaging-typed-libraries). This is implemented through a `.pyi` stubs file. ([Issue #12](https://github.com/drivendataorg/repro-zipfile/issues/12), [PR #17](https://github.com/drivendataorg/repro-zipfile/pull/17))
6+
- Adds Python 3.13 as a supported version.
67
- Changed `date_time` function to always return the date-time value as 6-tuple of `int` values.
78

89
## v0.3.1 (2024-02-02)

pyproject.toml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
[build-system]
2-
requires = ["hatchling"]
3-
build-backend = "hatchling.build"
4-
51
[project]
62
name = "repro-zipfile"
73
dynamic = ["version"]
@@ -38,16 +34,18 @@ Documentation = "https://github.com/drivendataorg/repro-zipfile#readme"
3834
Issues = "https://github.com/drivendataorg/repro-zipfile/issues"
3935
Source = "https://github.com/drivendataorg/repro-zipfile"
4036

37+
[build-system]
38+
requires = ["hatchling"]
39+
build-backend = "hatchling.build"
40+
4141
[tool.hatch.version]
4242
path = "repro_zipfile/__init__.py"
4343

4444
## DEFAULT ENVIRONMENT ##
4545

4646
[tool.hatch.envs.default]
4747
installer = "uv"
48-
pre-install-commands = [
49-
"pip install -e . -e cli",
50-
]
48+
pre-install-commands = ["uv pip install -e . -e cli"]
5149
features = ["cli", "tests"]
5250
dependencies = ["ipython", "mypy>=1.0.0", "ruff>=0.1.14", "vspect"]
5351
python = "3.10"
@@ -69,9 +67,7 @@ typecheck = [
6967

7068
[tool.hatch.envs.tests]
7169
installer = "uv"
72-
pre-install-commands = [
73-
"uv pip install -e . -e cli",
74-
]
70+
pre-install-commands = ["uv pip install -e . -e cli"]
7571
features = ["tests", "cli"]
7672
dependencies = ["coverage>=6.5", "pytest-cov"]
7773
template = "tests"

0 commit comments

Comments
 (0)