Skip to content

Commit 0c25883

Browse files
Merge pull request #23 from MyColorfulDays/v0.3.x
fix: python < 3.7 using pip install failed
2 parents bc69ecc + 5a71182 commit 0c25883

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[build-system]
2-
requires = ["pdm-pep517>=1.1.2"]
3-
build-backend = "pdm.pep517.api"
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "jsonformatter"
7-
version = "0.3.3"
7+
version = "0.3.4"
88
description = 'Python log in json format.'
99
readme = "README.md"
1010
classifiers = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
setup(
2828
name='jsonformatter',
29-
version='0.3.3',
29+
version='0.3.4',
3030
packages=find_packages(where='src'),
3131
package_dir={'': 'src'},
3232
description=(

src/jsonformatter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212

1313
__all__ = ['JsonFormatter', 'basicConfig']
1414

15-
version_info = (0, 3, 3)
15+
version_info = (0, 3, 4)
1616
version = '.'.join(str(v) for v in version_info)

0 commit comments

Comments
 (0)