Skip to content

Commit 7e106ef

Browse files
authored
Code update py312 (#27)
* Litle refactor aftr last pull request. * Updated code to Python 3.11 * Updated python version to 3.12 --------- Co-authored-by: ccie18643 <[email protected]>
1 parent 200a7c6 commit 7e106ef

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PYTHON_VERSION := 3.11
1+
PYTHON_VERSION := 3.12
22
VENV := venv
33
ROOT_PATH:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
44
PYTCP_PATH := pytcp

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "PyTCP"
7-
version = "2.7.6"
7+
version = "2.7.7"
88
description = "TCP/IP stack written in Python."
99
readme = "README.md"
1010
authors = [{ name = "Sebastian Majewski", email = "[email protected]" }]
1111
license = { file = "LICENSE" }
1212
classifiers = [
13-
"Programming Language :: Python :: 3.10",
13+
"Programming Language :: Python :: 3.12",
1414
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
1515
"Development Status :: 3 - Alpha",
1616
"Operating System :: POSIX :: Linux",
@@ -21,7 +21,7 @@ classifiers = [
2121
]
2222
keywords = ["pytcp", "stack", "networking", "tcp", "ip", "ipv4", "ipv6", "arp", "ethernet", "icmp"]
2323
dependencies = []
24-
requires-python = ">=3.10"
24+
requires-python = ">=3.12"
2525

2626
[project.urls]
2727
"Homepage" = "https://github.com/ccie18643/PyTCP"
@@ -41,7 +41,7 @@ quiet-level = 2
4141
ignore-words-list = "ect, ether, nd, tha"
4242

4343
[tool.mypy]
44-
python_version = "3.10"
44+
python_version = "3.12"
4545
check_untyped_defs = true
4646
disallow_untyped_defs = true
4747
disallow_any_unimported = true

0 commit comments

Comments
 (0)