Skip to content

Commit

Permalink
Merge pull request #5 from Klavionik/update-libs
Browse files Browse the repository at this point in the history
Update a few libs
  • Loading branch information
Klavionik authored Nov 30, 2024
2 parents ebb3394 + a38d267 commit 3ec0d65
Show file tree
Hide file tree
Showing 5 changed files with 563 additions and 515 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The Fleet widget displays the number of ships `[alive/total]` in its header.
- Computer player doesn't shoot cells, adjacent to a destroyed ship when `No adjacent
ships` rule is enabled.
### Changed
- Updated Textual, sentry-sdk, pyjwt.

## [0.24.1] - 2024-08-30
### Fixed
Expand Down
129 changes: 92 additions & 37 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,19 @@ uvicorn = { version = "^0.30.0", optional = true }
httpx = "^0.27.0"
pydantic = "^2.7.0"
pydantic-settings = "^2.3.0"
pyjwt = {extras = ["crypto"], version = "^2.8.0", optional = true}
pyjwt = {extras = ["crypto"], version = "^2.10.1", optional = true}
uvloop = { version = "^0.19.0", optional = true }
email-validator = "^2.2.0"
auth0-python = { version = "^4.5.0", optional = true }
typer = { version = "^0.12.0", optional = true }
xdg-base-dirs = "^6.0.1"
redis = { version = "^5.0.1", optional = true }
textual = "0.71.0"
textual = { version = "0.85.2", optional = true }
textual-dev = { version = "^1.5.0", optional = true }
pytest-textual-snapshot = { version = "^0.4.0", optional = true }
async-timeout = { version = "^4.0.3", markers = "python_version < '3.11'" }
backports-strenum = { version = "^1.2.8", markers = "python_version < '3.11'" }
sentry-sdk = "^2.8.0"
sentry-sdk = "^2.19.0"
aioprometheus = {version = "^23.3.0", optional = true}
copykitten = { version = "^1.2.1", optional = true }
tenacity = { version = "^8.4.1", optional = true }
Expand All @@ -55,7 +56,7 @@ rodi = "^2.0.6"
[tool.poetry.extras]
server = ["blacksheep", "uvicorn", "auth0-python", "pyjwt", "uvloop", "redis", "aioprometheus"]
client = ["textual", "typer", "copykitten", "tenacity", "sentry-offline-transport"]
dev = ["textual-dev"]
dev = ["textual-dev", "pytest-textual-snapshot"]

[tool.poetry.scripts]
battleship = "battleship.cli:run"
Expand Down Expand Up @@ -83,7 +84,6 @@ coverage = "^7.3.0"
watchdog = {extras = ["watchmedo"], version = "^3.0.0"}
pytest = "^7.4.2"
pytest-asyncio = "^0.23.2"
pytest-textual-snapshot = "^0.4.0"

[build-system]
requires = ["poetry-core"]
Expand Down
15 changes: 3 additions & 12 deletions requirements-server.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,37 +27,28 @@ httptools==0.6.1 ; python_version >= "3.10" and python_version < "3.13"
httpx==0.27.0 ; python_version >= "3.10" and python_version < "3.13"
idna==3.7 ; python_version >= "3.10" and python_version < "3.13"
itsdangerous==2.1.2 ; python_version >= "3.10" and python_version < "3.13"
linkify-it-py==2.0.3 ; python_version >= "3.10" and python_version < "3.13"
loguru==0.7.2 ; python_version >= "3.10" and python_version < "3.13"
markdown-it-py==3.0.0 ; python_version >= "3.10" and python_version < "3.13"
markdown-it-py[linkify,plugins]==3.0.0 ; python_version >= "3.10" and python_version < "3.13"
markupsafe==2.1.5 ; python_version >= "3.10" and python_version < "3.13"
mdit-py-plugins==0.4.1 ; python_version >= "3.10" and python_version < "3.13"
mdurl==0.1.2 ; python_version >= "3.10" and python_version < "3.13"
multidict==6.0.5 ; python_version >= "3.10" and python_version < "3.13"
orjson==3.10.5 ; python_version >= "3.10" and python_version < "3.13"
pycparser==2.22 ; python_version >= "3.10" and python_version < "3.13" and platform_python_implementation != "PyPy"
pydantic-core==2.18.4 ; python_version >= "3.10" and python_version < "3.13"
pydantic-settings==2.3.3 ; python_version >= "3.10" and python_version < "3.13"
pydantic==2.7.4 ; python_version >= "3.10" and python_version < "3.13"
pygments==2.18.0 ; python_version >= "3.10" and python_version < "3.13"
pyjwt==2.8.0 ; python_version >= "3.10" and python_version < "3.13"
pyjwt[crypto]==2.8.0 ; python_version >= "3.10" and python_version < "3.13"
pyjwt==2.10.1 ; python_version >= "3.10" and python_version < "3.13"
pyjwt[crypto]==2.10.1 ; python_version >= "3.10" and python_version < "3.13"
pymitter==0.5.1 ; python_version >= "3.10" and python_version < "3.13"
python-dateutil==2.8.2 ; python_version >= "3.10" and python_version < "3.13"
python-dotenv==1.0.1 ; python_version >= "3.10" and python_version < "3.13"
pyyaml==6.0.1 ; python_version >= "3.10" and python_version < "3.13"
quantile-python==1.1 ; python_version >= "3.10" and python_version < "3.13"
redis==5.0.6 ; python_version >= "3.10" and python_version < "3.13"
requests==2.32.3 ; python_version >= "3.10" and python_version < "3.13"
rich==13.7.1 ; python_version >= "3.10" and python_version < "3.13"
rodi==2.0.6 ; python_version >= "3.10" and python_version < "3.13"
sentry-sdk==2.12.0 ; python_version >= "3.10" and python_version < "3.13"
sentry-sdk==2.19.0 ; python_version >= "3.10" and python_version < "3.13"
six==1.16.0 ; python_version >= "3.10" and python_version < "3.13"
sniffio==1.3.1 ; python_version >= "3.10" and python_version < "3.13"
textual==0.71.0 ; python_version >= "3.10" and python_version < "3.13"
typing-extensions==4.12.2 ; python_version >= "3.10" and python_version < "3.13"
uc-micro-py==1.0.3 ; python_version >= "3.10" and python_version < "3.13"
urllib3==2.2.2 ; python_version >= "3.10" and python_version < "3.13"
uvicorn==0.30.1 ; python_version >= "3.10" and python_version < "3.13"
uvloop==0.19.0 ; python_version >= "3.10" and python_version < "3.13"
Expand Down
Loading

0 comments on commit 3ec0d65

Please sign in to comment.