Skip to content

Commit

Permalink
Remove Python 3.8 EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
Baekalfen committed Nov 23, 2024
1 parent 3c4bd4a commit 36b4b63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13]
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -177,10 +177,10 @@ jobs:
echo "Dists built:"
ls -lah dist/
- name: Set up Python 3.8 (just for PyPi upload)
- name: Set up Python 3.11 (just for PyPi upload)
uses: actions/setup-python@v3
with:
python-version: 3.8
python-version: 3.11
- name: Upload wheel
if: ${{ github.event_name == 'release' && github.event.action == 'published' && !github.event.release.prerelease }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Emulators",
]
requires-python = ">=3.8"
requires-python = ">=3.9"

dependencies = [
"numpy",
Expand Down

0 comments on commit 36b4b63

Please sign in to comment.