Skip to content
Merged
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
18 changes: 9 additions & 9 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Pip install
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Pip install
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Pip install
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Pip install
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Pip install
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Pip install
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Pip install
Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Pip install
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
python-version: '3.12'
cache: 'pip' # caching pip dependencies

- name: Pip install
Expand Down
2 changes: 1 addition & 1 deletion browsergym/assistantbench/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
browsergym-core==0.13.3
browsergym-core==0.13.4
datasets
scipy
numpy
2 changes: 1 addition & 1 deletion browsergym/core/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
playwright~=1.39
playwright==1.44
gymnasium>=0.27
numpy>=1.14
pyparsing>=3
Expand Down
2 changes: 1 addition & 1 deletion browsergym/core/src/browsergym/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.13.3"
__version__ = "0.13.4"

import playwright.sync_api

Expand Down
2 changes: 1 addition & 1 deletion browsergym/experiments/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
browsergym-core==0.13.3
browsergym-core==0.13.4
tiktoken>=0.4
dataclasses-json
2 changes: 1 addition & 1 deletion browsergym/miniwob/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
browsergym-core==0.13.3
browsergym-core==0.13.4
17 changes: 9 additions & 8 deletions browsergym/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ authors = [
{name = "Alex Lacoste"},
{name = "Thibault Le Sellier De Chezelles"},
{name = "Tom Marty"},
{name = "Aman Jaiswal"},
]
readme = "README.md"
requires-python = ">3.7"
requires-python = ">3.10"
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
Expand All @@ -27,14 +28,14 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
]
version="0.13.3"
version="0.13.4"
dependencies = [
"browsergym-core==0.13.3",
"browsergym-miniwob==0.13.3",
"browsergym-webarena==0.13.3",
"browsergym-visualwebarena==0.13.3",
"browsergym-assistantbench==0.13.3",
"browsergym-experiments==0.13.3",
"browsergym-core==0.13.4",
"browsergym-miniwob==0.13.4",
"browsergym-webarena==0.13.4",
"browsergym-visualwebarena==0.13.4",
"browsergym-assistantbench==0.13.4",
"browsergym-experiments==0.13.4",
"browsergym-workarena>=0.4.1",
"weblinx-browsergym>=0.0.2",
]
Expand Down
2 changes: 1 addition & 1 deletion browsergym/visualwebarena/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
browsergym-core==0.13.3
browsergym-core==0.13.4
browsergym-webarena
libvisualwebarena==0.0.15
requests
Expand Down
2 changes: 1 addition & 1 deletion browsergym/webarena/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
browsergym-core==0.13.3
browsergym-core==0.13.4
libwebarena==0.0.4
Loading