Skip to content

Commit

Permalink
Code update py312 (#27)
Browse files Browse the repository at this point in the history
* Litle refactor aftr last pull request.

* Updated code to Python 3.11

* Updated python version to 3.12

---------

Co-authored-by: ccie18643 <[email protected]>
  • Loading branch information
ccie18643 and ccie18643 authored Nov 8, 2023
1 parent 200a7c6 commit 7e106ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PYTHON_VERSION := 3.11
PYTHON_VERSION := 3.12
VENV := venv
ROOT_PATH:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
PYTCP_PATH := pytcp
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"

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

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

[tool.mypy]
python_version = "3.10"
python_version = "3.12"
check_untyped_defs = true
disallow_untyped_defs = true
disallow_any_unimported = true
Expand Down

0 comments on commit 7e106ef

Please sign in to comment.