Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
zwimer committed Jan 17, 2024
1 parent a5807f3 commit c53d506
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.10'
- name: Install build
run: pip install build
- name: Build dists
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py38-plus]
args: [--py310-plus]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.7.1
hooks:
Expand Down
5 changes: 2 additions & 3 deletions delayed_rm/delayed_rm.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from __future__ import annotations
from collections.abc import Callable
from collections import defaultdict
from tempfile import gettempdir
from datetime import datetime
from typing import Callable
from pathlib import Path
import subprocess
import argparse
Expand All @@ -13,7 +12,7 @@
import os


__version__ = "2.7.0"
__version__ = "2.8.0"


#
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ build-backend = "setuptools.build_meta"
name = "delayed_rm"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
]
license = {text = "GPL"}
description = "Ever wish you had a few minutes to undo an rm? Now you do!"
urls = {Homepage = "https://github.com/zwimer/delayed_rm"}
requires-python = ">= 3.8"
requires-python = ">= 3.10"
dynamic = ["version"]

[project.readme]
Expand All @@ -38,7 +38,7 @@ version = {attr = "delayed_rm.__version__"}

[tool.black]
line-length = 120
target-version = ["py38"]
target-version = ["py310"]

[tool.ruff]
ignore=["E731","E741"]
Expand Down
23 changes: 0 additions & 23 deletions setup.cfg

This file was deleted.

0 comments on commit c53d506

Please sign in to comment.