Skip to content

Commit 83e345a

Browse files
Merge pull request #8 from vertti/070release
0.7.0 release
2 parents d28c1b2 + 45d0003 commit 83e345a

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717
steps:
1818
- uses: actions/checkout@v3
1919

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# DAFFY DataFrame Column Validator
2-
![PyPI](https://img.shields.io/pypi/v/daffy)
2+
[![PyPI](https://img.shields.io/pypi/v/daffy)](https://pypi.org/project/daffy/)
33
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/daffy)
44
![test](https://github.com/fourkind/daffy/workflows/test/badge.svg)
55
[![codecov](https://codecov.io/gh/fourkind/daffy/branch/master/graph/badge.svg?token=2FYBMT65A6)](https://codecov.io/gh/fourkind/daffy)
@@ -167,6 +167,12 @@ MIT
167167

168168
## Changelog
169169

170+
### 0.7.0
171+
172+
- Support Pandas 2.x
173+
- Drop support for Python 3.7 and 3.8
174+
- Build and test with Python 3.12 also
175+
170176
### 0.6.0
171177

172178
- Make checking columns of multiple function parameters work also with positional arguments (thanks @latvanii)

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "daffy"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "Function decorators for Pandas Dataframe column name and data type validation"
55
authors = ["Janne Sinivirta <[email protected]>"]
66
license = "MIT"
@@ -14,8 +14,10 @@ classifiers = [
1414
"Topic :: Software Development :: Quality Assurance",
1515
"Intended Audience :: Developers",
1616
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.7",
18-
"Programming Language :: Python :: 3.8",
17+
"Programming Language :: Python :: 3.9",
18+
"Programming Language :: Python :: 3.10",
19+
"Programming Language :: Python :: 3.11",
20+
"Programming Language :: Python :: 3.12",
1921
"Development Status :: 4 - Beta",
2022
"License :: OSI Approved :: MIT License"
2123
]

0 commit comments

Comments
 (0)