Skip to content

Commit

Permalink
Remove python 3.8 references
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Jun 30, 2024
1 parent 28b8b3c commit c565343
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.10"
- run: pip install .[testing]
name: Install
- run: pytest --durations 10
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.10
- name: Install
run: pip install .[docs]
- name: Build docs
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.10

- name: Setup java
uses: actions/setup-java@v4
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
urls = {Homepage = "https://github.com/angr/archinfo"}
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = ["backports.strenum>=1.2.8;python_version<'3.11'"]
dynamic = ["version"]

Expand Down

0 comments on commit c565343

Please sign in to comment.