Skip to content

Commit bbdc94b

Browse files
authored
Merge pull request #39 from marselester/deprecate-lt-3.9
Deprecate Python versions below 3.9
2 parents 7b15ab3 + 1505b75 commit bbdc94b

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2024 Marsel Mavletkulov
3+
Copyright (c) 2025 Marsel Mavletkulov
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ packages = ["json_log_formatter"]
77

88
[project]
99
name = "JSON-log-formatter"
10-
version = "1.1.1"
10+
version = "1.2"
1111
description = "JSON log formatter"
1212
readme = "README.rst"
13-
requires-python = ">=3.6"
13+
requires-python = ">=3.9"
1414
license = {text = "MIT"}
1515
authors = [
1616
{name = "Marsel Mavletkulov"},

setup.py

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

33
setup(
44
name='JSON-log-formatter',
5-
version='1.1.1',
5+
version='1.2',
66
license='MIT',
77
packages=['json_log_formatter'],
88
author='Marsel Mavletkulov',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py36,py37,py38,py39,py310,py311,py312
2+
envlist=py39,py310,py311,py312,py313
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)