Skip to content

Commit 74ce440

Browse files
committed
bump version 0.7.0 -> 0.7.1
Supports Python>=3.8
1 parent 33e4b8a commit 74ce440

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
strategy:
4040
matrix:
41-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
41+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
4242

4343
steps:
4444
- uses: actions/checkout@v3

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2006-2023, Liran Funaro.
1+
Copyright (c) 2006-2025, Liran Funaro.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ safer execution.
3232
# Install
3333

3434
```bash
35-
pip install objsize==0.7.0
35+
pip install objsize==0.7.1
3636
```
3737

3838
# Basic Usage
@@ -330,7 +330,7 @@ main differences between `objsize` and `pympler`.
330330

331331
# License: BSD-3
332332

333-
Copyright (c) 2006-2023, Liran Funaro.
333+
Copyright (c) 2006-2025, Liran Funaro.
334334
All rights reserved.
335335

336336
Redistribution and use in source and binary forms, with or without

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1313

1414
project = "objsize"
15-
copyright = "Copyright (c) 2006-2023, Liran Funaro."
15+
copyright = "Copyright (c) 2006-2025, Liran Funaro."
1616
author = "Liran Funaro"
17-
version = "0.7.0"
17+
version = "0.7.1"
1818

1919
# -- General configuration ---------------------------------------------------
2020
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Install
4242

4343
.. code:: bash
4444
45-
pip install objsize==0.7.0
45+
pip install objsize==0.7.1
4646
4747
Basic Usage
4848
===========

objsize/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
shared_object_or_function_filter,
2222
)
2323

24-
__version__ = "0.7.0"
24+
__version__ = "0.7.1"
2525

2626
default_settings = ObjSizeSettings()
2727
"""

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "objsize"
9-
version = "0.7.0"
9+
version = "0.7.1"
1010
description = "Traversal over Python's objects subtree and calculate the total size of the subtree in bytes (deep size)."
1111
readme = "README.md"
1212
authors = [{ name = "Liran Funaro", email = "liran.funaro@gmail.com" }]
@@ -20,7 +20,7 @@ classifiers = [
2020
]
2121
keywords = ["object-size", "recursive", "deep", "traversal", "object", "size", "debug", "deep-object-size"]
2222
dependencies = []
23-
requires-python = ">=3.7"
23+
requires-python = ">=3.8"
2424

2525
[project.optional-dependencies]
2626
dev = [
@@ -34,7 +34,7 @@ docs = [
3434
Homepage = "https://github.com/liran-funaro/objsize"
3535

3636
[tool.bumpver]
37-
current_version = "0.7.0"
37+
current_version = "0.7.1"
3838
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
3939
commit_message = "bump version {old_version} -> {new_version}"
4040
commit = true

0 commit comments

Comments
 (0)