Skip to content

Commit

Permalink
Drop Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaudiuGeorgiu committed Nov 18, 2023
1 parent 70429a3 commit ab846ea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.8, 3.9, '3.10', '3.11', '3.12' ]
python-version: [ 3.9, '3.10', '3.11', '3.12' ]
os: [ ubuntu-latest, windows-latest ]

steps:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM python:3.11-slim-bullseye
FROM python:3.12-slim-bookworm

# Install the needed tools.
RUN apt update && apt install --no-install-recommends -y \
openjdk-11-jre-headless nginx supervisor p7zip-full gcc libc6-dev && \
openjdk-17-jre-headless nginx supervisor p7zip-full gcc libc6-dev && \
apt clean && rm -rf /var/lib/apt/lists/*

# Setup Supervisor.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RiskInDroid · [![Codacy](https://app.codacy.com/project/badge/Grade/13be50b318c74ac88fba3e13bd620f9c)](https://www.codacy.com/gh/ClaudiuGeorgiu/RiskInDroid) [![Actions Status](https://github.com/ClaudiuGeorgiu/RiskInDroid/workflows/Build/badge.svg)](https://github.com/ClaudiuGeorgiu/RiskInDroid/actions?query=workflow%3ABuild) [![Python Version](https://img.shields.io/badge/Python-3.8%2B-green.svg?logo=python&logoColor=white)](https://www.python.org/downloads/) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ClaudiuGeorgiu/RiskInDroid/blob/master/LICENSE)
# RiskInDroid · [![Codacy](https://app.codacy.com/project/badge/Grade/13be50b318c74ac88fba3e13bd620f9c)](https://www.codacy.com/gh/ClaudiuGeorgiu/RiskInDroid) [![Actions Status](https://github.com/ClaudiuGeorgiu/RiskInDroid/workflows/Build/badge.svg)](https://github.com/ClaudiuGeorgiu/RiskInDroid/actions?query=workflow%3ABuild) [![Python Version](https://img.shields.io/badge/Python-3.9%2B-green.svg?logo=python&logoColor=white)](https://www.python.org/downloads/) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ClaudiuGeorgiu/RiskInDroid/blob/master/LICENSE)

> A tool for quantitative risk analysis of Android applications based on machine
> learning techniques.
Expand Down Expand Up @@ -150,7 +150,7 @@ the uploaded applications in the current directory).

#### Prerequisites

To use RiskInDroid you need `Python 3` (at least `3.8`), `Java` (at least version `8`)
To use RiskInDroid you need `Python 3` (at least `3.9`), `Java` (at least version `8`)
and a tool to extract the content of `RiskInDroid/app/database/permission_db.7z`
archive (e.g., `p7zip-full` can be used for this task in Ubuntu).

Expand Down

0 comments on commit ab846ea

Please sign in to comment.