Skip to content

Commit

Permalink
Merge pull request #252 from simonwoerpel/develop
Browse files Browse the repository at this point in the history
v0.5.2
  • Loading branch information
simonwoerpel authored Nov 8, 2024
2 parents 8edcccb + f7cbb10 commit 0ba5834
Show file tree
Hide file tree
Showing 9 changed files with 2,493 additions and 2,284 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.1
current_version = 0.5.2
commit = True
tag = True
message = 🔖 Bump version: {current_version} → {new_version}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -65,4 +65,4 @@ jobs:
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "run-3.10,run-3.11"
carryforward: "run-3.10,run-3.11,run-3.12,run-3.13"
46 changes: 0 additions & 46 deletions .github/workflows/release.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# * Run "pre-commit install".
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -25,7 +25,7 @@ repos:
- id: absolufy-imports

- repo: https://github.com/asottile/pyupgrade
rev: v3.17.0
rev: v3.19.0
hooks:
- id: pyupgrade
args: [ "--py37-plus" ]
Expand All @@ -37,7 +37,7 @@ repos:
args: ["--profile", "black"]

- repo: https://github.com/psf/black
rev: 24.8.0
rev: 24.10.0
hooks:
- id: black

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.1
0.5.2
2,411 changes: 1,277 additions & 1,134 deletions poetry.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "runpandarun"
version = "0.5.1"
version = "0.5.2"
description = "Tell pandas what to do – easy tabular data I/O playbooks"
authors = ["Simon Wörpel <simon@investigativedata.org>"]
license = "MIT"
Expand Down Expand Up @@ -28,7 +28,7 @@ runpandarun = "runpandarun.cli:cli"
python = ">=3.10,<4"
pandas = "^2.2.2"
requests = "^2.31.0"
typer = "^0.12.3"
typer = ">=0.12.3,<0.14.0"
banal = "^1.0.6"
normality = "^2.5.0"
orjson = "^3.9.15"
Expand All @@ -43,15 +43,15 @@ fingerprints = "^1.2.3"
pyicu = "^2.12"
s3fs = "^2024.2.0"
fsspec = "^2024.2.0"
pytest-xdist = "^3.5.0"
xlrd = "^2.0.1"

[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = ">=4.1,<6.0"
pytest-cov = ">=4.1,<7.0"
black = "^24.1.1"
isort = "^5.13.2"
mypy = "^1.8.0"
pre-commit = "^3.6.0"
pre-commit = ">=3.6,<5.0"
flake8 = "^7.0.0"
ipdb = "^0.13.13"
pytest-xdist = "^3.4.0"
Expand Down
2,294 changes: 1,203 additions & 1,091 deletions requirements.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion runpandarun/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

__all__ = ["Playbook", "read_pandas", "write_pandas"]

__version__ = "0.5.1"
__version__ = "0.5.2"

0 comments on commit 0ba5834

Please sign in to comment.