Skip to content

Commit c636b3f

Browse files
authored
v0.2.1 (#9)
* pypi workflow update * version bump
1 parent 4e9521c commit c636b3f

File tree

7 files changed

+15
-12
lines changed

7 files changed

+15
-12
lines changed

.github/workflows/pypi.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: Build and Publish
2+
# based on official doc
3+
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
24

35
on: [push, workflow_dispatch]
46

@@ -57,10 +59,11 @@ jobs:
5759
uses: pypa/gh-action-pypi-publish@release/v1
5860

5961
github-release:
60-
name: Sign with Sigstore and upload them to GitHub Release
62+
name: Sign packages with Sigstore and upload them to GitHub Release
6163
needs:
6264
- publish-to-pypi
6365
runs-on: ubuntu-latest
66+
6467
permissions:
6568
contents: write # IMPORTANT: mandatory for making GitHub Releases
6669
id-token: write # IMPORTANT: mandatory for sigstore
@@ -73,7 +76,7 @@ jobs:
7376
path: dist/
7477

7578
- name: Sign the dists with Sigstore
76-
uses: sigstore/gh-action-sigstore-python@v1.2.3
79+
uses: sigstore/gh-action-sigstore-python@v2.1.1
7780
with:
7881
inputs: >-
7982
./dist/*.tar.gz

core/src/browsergym/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.2.1"
22

33
import playwright.sync_api
44

miniwob/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
browsergym-core==0.2.0
1+
browsergym-core==0.2.1

miniwob/src/browsergym/miniwob/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.2.1"
22

33
from browsergym.core.registration import register_task
44

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ classifiers = [
2525
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2626
"License :: OSI Approved :: Apache Software License",
2727
]
28-
version="0.2.0"
28+
version="0.2.1"
2929
dependencies = [
30-
"browsergym-core==0.2.0",
31-
"browsergym-miniwob==0.2.0",
32-
"browsergym-webarena==0.2.0",
33-
"browsergym-workarena==0.2.0",
30+
"browsergym-core==0.2.1",
31+
"browsergym-miniwob==0.2.1",
32+
"browsergym-webarena==0.2.1",
33+
"browsergym-workarena==0.2.1",
3434
]
3535

3636
[tool.setuptools]

webarena/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
browsergym-core==0.2.0
1+
browsergym-core==0.2.1
22
libwebarena==0.0.2

webarena/src/browsergym/webarena/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.2.1"
22

33
from browsergym.core.registration import register_task
44

0 commit comments

Comments
 (0)