Skip to content

Commit

Permalink
server: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
perrinjerome committed Jun 22, 2024
1 parent e3fd946 commit 3aca533
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 47 deletions.
4 changes: 2 additions & 2 deletions server/buildoutls/types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import List
from typing import List, Sequence

import attrs
from typing_extensions import TypedDict
Expand Down Expand Up @@ -26,7 +26,7 @@ class VersionNotFound(Exception):
class PyPIPackageInfo:
latest_version: str
url: str
known_vulnerabilities: List[KnownVulnerability]
known_vulnerabilities: Sequence[KnownVulnerability]


# XXX command params are passed as dict in pygls 1.0
Expand Down
28 changes: 13 additions & 15 deletions server/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,22 @@
#
# pip-compile --no-annotate --output-file=requirements.txt
#
aiohttp==3.9.0
aiohttp==3.9.5
aiosignal==1.3.1
async-timeout==4.0.3
attrs==23.1.0
cachetools==5.3.1
cattrs==23.1.2
charset-normalizer==3.3.0
exceptiongroup==1.1.3
frozenlist==1.4.0
attrs==23.2.0
cachetools==5.3.3
cattrs==23.2.3
exceptiongroup==1.2.1
frozenlist==1.4.1
idna==3.7
lsprotocol==2023.0.0b1
multidict==6.0.4
packaging==23.2
pygls==1.1.1
typeguard==3.0.2
typing-extensions==4.8.0
wheel==0.41.2
yarl==1.9.2
lsprotocol==2023.0.1
multidict==6.0.5
packaging==24.1
pygls==1.3.1
typing-extensions==4.12.2
wheel==0.43.0
yarl==1.9.4
zc-buildout==3.0.1

# The following packages are considered to be unsafe in a requirements file:
Expand Down
59 changes: 29 additions & 30 deletions server/test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,47 +4,46 @@
#
# pip-compile --extra=test --no-annotate --output-file=test-requirements.txt
#
aiohttp==3.9.0
aiohttp==3.9.5
aioresponses==0.7.6
aiosignal==1.3.1
astroid==3.0.0
astroid==3.2.2
async-timeout==4.0.3
attrs==23.1.0
cachetools==5.3.1
cattrs==23.1.2
coverage[toml]==7.3.2
dill==0.3.7
exceptiongroup==1.1.3
frozenlist==1.4.0
attrs==23.2.0
cachetools==5.3.3
cattrs==23.2.3
coverage[toml]==7.5.3
dill==0.3.8
exceptiongroup==1.2.1
frozenlist==1.4.1
idna==3.7
iniconfig==2.0.0
isort==5.12.0
lsprotocol==2023.0.0b1
isort==5.13.2
lsprotocol==2023.0.1
mccabe==0.7.0
multidict==6.0.4
mypy==1.5.1
multidict==6.0.5
mypy==1.10.0
mypy-extensions==1.0.0
packaging==23.2
platformdirs==3.11.0
pluggy==1.3.0
packaging==24.1
platformdirs==4.2.2
pluggy==1.5.0
py-cpuinfo==9.0.0
pygls==1.1.1
pylint==3.0.1
pytest==7.4.2
pytest-asyncio==0.21.1
pygls==1.3.1
pylint==3.2.3
pytest==8.2.2
pytest-asyncio==0.23.7
pytest-benchmark==4.0.0
pytest-cov==4.1.0
pytest-cov==5.0.0
ruff==0.4.10
tomli==2.0.1
tomlkit==0.12.1
typeguard==3.0.2
types-cachetools==5.3.0.6
types-setuptools==68.2.0.0
types-toml==0.10.8.7
typing-extensions==4.8.0
wheel==0.41.2
yarl==1.9.2
# zc-buildout==3.0.1
tomlkit==0.12.5
types-cachetools==5.3.0.7
types-setuptools==70.0.0.20240524
types-toml==0.10.8.20240310
typing-extensions==4.12.2
wheel==0.43.0
yarl==1.9.4
#zc-buildout==3.0.1

# The following packages are considered to be unsafe in a requirements file:
# pip
Expand Down

0 comments on commit 3aca533

Please sign in to comment.