Skip to content

Commit e959bf3

Browse files
committed
chore/release (#265)
1 parent 1556cd9 commit e959bf3

File tree

4 files changed

+23
-12
lines changed

4 files changed

+23
-12
lines changed

.github/workflows/docs_deploy.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,26 @@ jobs:
99
docs:
1010
runs-on: ubuntu-latest
1111
container:
12-
image: python:3.8.10
12+
image: python:3.12.6
1313
steps:
1414
- name: Install dependencies for deploy
1515
run: apt-get update && apt-get install -y rsync
16+
1617
- name: Checkout jumanji 🐍
1718
uses: actions/checkout@v3
19+
1820
- name: Install python dependencies 🔧
1921
run: pip install .[dev]
22+
23+
- name: Git trust site directory 🤝
24+
run: |
25+
git config --global --add safe.directory /__w/jumanji/jumanji
26+
git config --global --add safe.directory /docs
27+
git config --global --add safe.directory /docs_public
28+
2029
- name: Build docs 📖
2130
run: mkdocs build --verbose --site-dir docs_public
31+
2232
- name: Deploy 🚀
2333
uses: JamesIves/github-pages-deploy-action@v4
2434
with:

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
timeout-minutes: 30
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
13+
1314
- name: Set up Python
14-
uses: actions/setup-python@v1
15+
uses: actions/setup-python@v5
1516
with:
1617
python-version: "3.x"
1718
- name: Install dependencies
@@ -23,4 +24,4 @@ jobs:
2324
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
2425
run: |
2526
hatch build
26-
twine upload dist/*
27+
twine upload dist/* --verbose

jumanji/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.0.1"
15+
__version__ = "1.1.0"

requirements/requirements-dev.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
coverage
22
livereload
3-
mkdocs==1.2.3
3+
mkdocs==1.6.1
44
mkdocs-git-revision-date-plugin==0.3.2
5-
mkdocs-include-markdown-plugin==4.0.4
6-
mkdocs-material==8.2.7
7-
mkdocs-mermaid2-plugin==0.6.0
8-
mkdocs_autorefs<1.0
9-
mkdocstrings==0.18.0
10-
mknotebooks==0.7.1
5+
mkdocs-include-markdown-plugin==7.1.1
6+
mkdocs-material==9.5.45
7+
mkdocs-mermaid2-plugin==1.1.0
8+
mkdocs_autorefs==1.2.0
9+
mkdocstrings[python]==0.27.0
10+
mknotebooks==0.8.0
1111
mypy
1212
pre-commit
1313
promise

0 commit comments

Comments
 (0)