Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@ jobs:
fail-fast: false
matrix:
platform: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
# macos-latest is ARM-based and python 3.7 is not present
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
exclude:
# macos-latest is ARM-based and python 3.7 is not present
- platform: macos-latest
python-version: 3.7
# python 3.7 is not present on ubuntu 24.04
- platform: ubuntu-latest
python-version: 3.7
include:
- platform: ubuntu-22.04
python-version: 3.7
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "androidemu"
version = "0.0.3"
requires-python = ">=3.7, <3.12"
requires-python = ">=3.7"
authors = [
{ name = "AeonLucid", email = "aeonlucid@gmail.com" },
]
Expand All @@ -22,9 +22,11 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
]
dependencies = [
"unicorn==2.1.0",
"unicorn==2.1.2",
"pyelftools==0.31",
"hexdump==3.3",
"keystone-engine==0.9.2"
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox:tox]
envlist = py{37,38,39,310,311}-{linux,macos,windows}
envlist = py{37,38,39,310,311,312,313}-{linux,macos,windows}

[gh-actions]
python =
Expand All @@ -8,6 +8,8 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[testenv]
deps = pytest
Expand Down
Loading