Skip to content

Commit d46dd8c

Browse files
committed
Bump version and update Docker image references.
Update project version to 0.1a8 in pyproject.toml. Correct Docker image references in README.md and script to remove the `.py` suffix for consistency.
1 parent eae9895 commit d46dd8c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Radiant-Wrapper is a Docker image that allows you to generate APKs for Android.
1111
Pull the Docker image that includes the [Android NDK](https://developer.android.com/studio/projects/install-ndk) and [SDK](https://developer.android.com/studio):
1212

1313
```bash
14-
docker pull dunderlab/radiant_p4a.py
14+
docker pull dunderlab/radiant_p4a
1515
```
1616

1717
Then install the Python package to use the wrapper command:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "radiant-wrapper"
7-
version = "0.1a7"
7+
version = "0.1a8"
88
description = "Radiant-Wrapper"
99
readme = "README.md"
1010
requires-python = ">=3.10"

radiant/wrapper/scripts/radiant_p4a.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
import sys
55

6-
IMAGE = 'dunderlab/radiant_p4a.py:latest'
6+
IMAGE = 'dunderlab/radiant_p4a:latest'
77
SOURCE = os.path.abspath(os.curdir)
88
APP = os.path.split(SOURCE)[-1].replace('_', '')
99

0 commit comments

Comments
 (0)