Skip to content

Commit 6f19a37

Browse files
authored
Merge pull request #135 from SergeyOstrouhov/appstore-bag-pod-auth
Upgrade Python version to 3.12
2 parents 0763798 + eda2f33 commit 6f19a37

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/docker-hub-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222

2323
- name: Build the Docker image
2424

25-
run: docker build . --file Dockerfile -t mobilesecurity/mdast_cli:2026.03.01 -t mobilesecurity/mdast_cli:latest
25+
run: docker build . --file Dockerfile -t mobilesecurity/mdast_cli:2026.03.02 -t mobilesecurity/mdast_cli:latest
2626

2727

2828
- name: Docker Hub push latest image
2929
run: docker push mobilesecurity/mdast_cli:latest
3030

3131
- name: Docker Hub push tagged image
3232

33-
run: docker push mobilesecurity/mdast_cli:2026.03.01
33+
run: docker push mobilesecurity/mdast_cli:2026.03.02
3434

3535

3636

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@master
1414

15-
- name: Set up Python 3.9
15+
- name: Set up Python 3.12
1616
uses: actions/setup-python@v1
1717
with:
18-
python-version: 3.9
18+
python-version: 3.12
1919

2020
# - name: Linter flake8
2121
# uses: py-actions/flake8@v2.2.1

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ altgraph==0.17
22
beautifulsoup4==4.10.0
33
cachetools==4.1.1
44
certifi>=2023.7.22
5-
cffi==1.15.0
5+
cffi>=1.15.0
66
chardet>=3.0.4
77
charset-normalizer==2.0.12
88
cryptography>=37.0.2

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
setup(
77
name="mdast_cli",
88

9-
version='2026.03.01',
9+
version='2026.03.02',
1010

11-
python_requires='>=3.9',
11+
python_requires='>=3.12',
1212

1313
author="Dynamic-Mobile-Security",
1414
description="Dynamic-Mobile-Security",
@@ -23,7 +23,7 @@
2323
'beautifulsoup4==4.10.0',
2424
'cachetools==4.1.1',
2525
'certifi>=2023.7.22',
26-
'cffi==1.15.0',
26+
'cffi>=1.15.0',
2727
'chardet>=3.0.4',
2828
'charset-normalizer==2.0.12',
2929
'cryptography>=37.0.2',

0 commit comments

Comments
 (0)