Skip to content

Commit

Permalink
Tests fail on 3.8, so don't build on 3.8 either
Browse files Browse the repository at this point in the history
  • Loading branch information
tpgillam committed Aug 5, 2024
1 parent 6ac1301 commit d7f5a65
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand All @@ -37,7 +37,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python: [38, 39, 310, 311, 312]
python: [39, 310, 311, 312]
arch: [auto64, auto32, universal2]
build: ["cp"]
exclude:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
requires = [
"setuptools",
"wheel",
"numpy>=1.17.3",
"numpy>=1.19.3",
]
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip
numpy>=1.17.3
numpy>=1.19.3
bump2version
wheel
watchdog
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,13 @@
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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",
],
description="Stransverse mass computation as a numpy ufunc.",
install_requires=["numpy>=1.17.3"],
install_requires=["numpy>=1.19.3"],
license="MIT license",
long_description=readme + "\n\n" + history,
include_package_data=True,
Expand Down

0 comments on commit d7f5a65

Please sign in to comment.