Skip to content

Commit

Permalink
Drop Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
dochang committed Nov 8, 2024
1 parent 2955b30 commit 81c8af5
Show file tree
Hide file tree
Showing 7 changed files with 173 additions and 203 deletions.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ workflows:
matrix:
parameters:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

- Deprecated classmethod `datetime.utcnow`

### Removed

- Python 3.8 support

## [0.12.0] - 2024-02-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Bumplus is a command line tool to bump your project version.
Prerequisites
***************

Python 3.8, 3.9, 3.10, 3.11, 3.12
Python 3.9, 3.10, 3.11, 3.12

**************
Installation
Expand Down
364 changes: 166 additions & 198 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ classifiers = ["Operating System :: OS Independent"]
"Bug Tracker" = "https://github.com/dochang/bumplus/issues"

[tool.poetry.dependencies]
python = "^3.8.1"
python = "^3.9.0"
pytoml = "^0.1.21"
jinja2 = "^3.1.2"

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py38, py39, py310, py311, py312
envlist = py39, py310, py311, py312
isolated_build = true
# Activate isolated build environment bacause pyproject.toml is used.
#
Expand Down

0 comments on commit 81c8af5

Please sign in to comment.