Poetry update

This commit is contained in:
Chris Proctor 2025-01-13 22:20:03 -05:00
parent 8e816059d6
commit 4215c22cdb
2 changed files with 21 additions and 17 deletions

20
poetry.lock generated
View File

@ -1,12 +1,12 @@
# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand.
# This file is automatically @generated by Poetry 2.0.0 and should not be changed by hand.
[[package]]
name = "bitarray"
version = "3.0.0"
description = "efficient arrays of booleans -- C extension"
category = "main"
optional = false
python-versions = "*"
groups = ["main"]
files = [
{file = "bitarray-3.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ddbf71a97ad1d6252e6e93d2d703b624d0a5b77c153b12f9ea87d83e1250e0c"},
{file = "bitarray-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0e7f24a0b01e6e6a0191c50b06ca8edfdec1988d9d2b264d669d2487f4f4680"},
@ -149,14 +149,14 @@ files = [
[[package]]
name = "easybits"
version = "0.1.2"
version = "0.1.3"
description = "A friendly interface for exploring bits."
category = "main"
optional = false
python-versions = "<4.0,>=3.9"
groups = ["main"]
files = [
{file = "easybits-0.1.2-py3-none-any.whl", hash = "sha256:794228871da8da34deecf2d126af059cb5b9fbf08d5330e52ecba0e461804278"},
{file = "easybits-0.1.2.tar.gz", hash = "sha256:7a31e728fc827e05ee848784ef7e6430caad08fd2758974276a906120e80867f"},
{file = "easybits-0.1.3-py3-none-any.whl", hash = "sha256:3ed24ea1672eb29066d6fd8c61d8426d2bb153da15bbd37251ef1340b03f2566"},
{file = "easybits-0.1.3.tar.gz", hash = "sha256:e854c64ca5418ffbf85e9b91eefc6b5d0fa210e7136b48453884ccde3b426483"},
]
[package.dependencies]
@ -166,9 +166,9 @@ bitarray = ">=3.0.0,<4.0.0"
name = "tabulate"
version = "0.9.0"
description = "Pretty-print tabular data"
category = "main"
optional = false
python-versions = ">=3.7"
groups = ["main"]
files = [
{file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"},
{file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"},
@ -178,6 +178,6 @@ files = [
widechars = ["wcwidth"]
[metadata]
lock-version = "2.0"
python-versions = "^3.11"
content-hash = "c7455f9ab707af9494254c4718f2cf38cc74603a86a89574973082f1115823e7"
lock-version = "2.1"
python-versions = ">=3.10,<4.0"
content-hash = "ac483058c01f5430bddb0bacb650a63b90f5904cfa773e417f4d4a37b5bd3643"

View File

@ -1,15 +1,19 @@
[tool.poetry]
[project]
name = "lab-encoding"
version = "0.1.0"
description = ""
authors = ["Chris Proctor <chris@chrisproctor.net>"]
authors = [
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"easybits (>=0.1.3,<0.2.0)",
"tabulate (>=0.9.0,<0.10.0)"
]
[tool.poetry.dependencies]
python = "^3.11"
easybits = "^0.1.1"
tabulate = "^0.9.0"
[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"