Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ env:
# Pin latest Python patch versions to avoid issues
# with runners using different versions.
DEFAULT_PYTHON: 3.9.14
ALL_PYTHON_VERSIONS: "['3.9.14', '3.10.7']"
ALL_PYTHON_VERSIONS: "['3.9.14', '3.10.7', '3.11.0-rc.2']"
PRE_COMMIT_CACHE: ~/.cache/pre-commit
PIP_CACHE: /tmp/pip-cache
SQLALCHEMY_WARN_20: 1
Expand Down Expand Up @@ -515,7 +515,9 @@ jobs:
libavutil-dev \
libswresample-dev \
libswscale-dev \
libudev-dev
libudev-dev \
libxml2-dev \
libxslt-dev
- name: Create Python virtual environment
if: steps.cache-venv.outputs.cache-hit != 'true'
run: |
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/python_script/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"domain": "python_script",
"name": "Python Scripts",
"documentation": "https://www.home-assistant.io/integrations/python_script",
"requirements": ["restrictedpython==5.2"],
"requirements": ["restrictedpython==6.0a1.dev0"],
"codeowners": [],
"quality_scale": "internal",
"loggers": ["RestrictedPython"]
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PyJWT==2.5.0
PyNaCl==1.5.0
aiodiscover==1.4.13
aiohttp==3.8.1
aiohttp==3.8.2
aiohttp_cors==0.7.0
astral==2.2
async-upnp-client==0.31.2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
]
requires-python = ">=3.9.0"
dependencies = [
"aiohttp==3.8.1",
"aiohttp==3.8.2",
"astral==2.2",
"async_timeout==4.0.2",
"attrs==21.2.0",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-c homeassistant/package_constraints.txt

# Home Assistant Core
aiohttp==3.8.1
aiohttp==3.8.2
astral==2.2
async_timeout==4.0.2
attrs==21.2.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2144,7 +2144,7 @@ regenmaschine==2022.09.2
renault-api==0.1.11

# homeassistant.components.python_script
restrictedpython==5.2
restrictedpython==6.0a1.dev0

# homeassistant.components.idteck_prox
rfk101py==0.0.1
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1477,7 +1477,7 @@ regenmaschine==2022.09.2
renault-api==0.1.11

# homeassistant.components.python_script
restrictedpython==5.2
restrictedpython==6.0a1.dev0

# homeassistant.components.rflink
rflink==0.0.63
Expand Down