Skip to content

Commit 39d3232

Browse files
authored
Merge pull request #24 from vertti/project-urls
Project urls
2 parents fbc9fef + 9d412f2 commit 39d3232

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 0.13.2
6+
7+
- Updated urls for Pypi site compatibility
8+
59
## 0.13.1
610

711
- Update documentation

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ Like type hints for DataFrames, Daffy helps you catch structural mismatches earl
3232

3333
## Documentation
3434

35-
- [Usage Guide](docs/usage.md) - Detailed usage instructions
36-
- [Development Guide](docs/development.md) - Guide for contributing to Daffy
37-
- [Changelog](CHANGELOG.md) - Version history and release notes
35+
- [Usage Guide](https://github.com/ThoughtWorksInc/daffy/blob/master/docs/usage.md) - Detailed usage instructions
36+
- [Development Guide](https://github.com/ThoughtWorksInc/daffy/blob/master/docs/development.md) - Guide for contributing to Daffy
37+
- [Changelog](https://github.com/ThoughtWorksInc/daffy/blob/master/CHANGELOG.md) - Version history and release notes
3838

3939
## Installation
4040

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
[project]
22
name = "daffy"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
description = "Function decorators for Pandas and Polars Dataframe column name and data type validation"
55
authors = [
66
{ name="Janne Sinivirta", email="[email protected]" },
77
]
88
license = "MIT"
99
requires-python = ">=3.9"
1010
readme = "README.md"
11-
homepage = "https://github.com/ThoughtWorksInc/daffy"
12-
repository = "https://github.com/ThoughtWorksInc/daffy.git"
13-
documentation = "https://github.com/ThoughtWorksInc/daffy/blob/master/README.md"
1411
keywords = ["pandas", "dataframe", "typing", "validation"]
1512
classifiers = [
1613
"Operating System :: OS Independent",
@@ -33,6 +30,11 @@ dependencies = [
3330
"tomli>=2.0.0",
3431
]
3532

33+
[project.urls]
34+
homepage = "https://github.com/ThoughtWorksInc/daffy"
35+
repository = "https://github.com/ThoughtWorksInc/daffy.git"
36+
documentation = "https://github.com/ThoughtWorksInc/daffy/blob/master/README.md"
37+
3638
[dependency-groups]
3739
dev = [
3840
"pytest>=8.3.0",

0 commit comments

Comments
 (0)