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
6 changes: 3 additions & 3 deletions .github/workflows/py-unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
Expand All @@ -37,8 +37,8 @@ jobs:
- name: Run unittest
run: pytest ./tests
- name: Install Jax
if: ${{ matrix.os != 'windows-latest' && matrix.python-version != '3.9' }}
if: ${{ matrix.os != 'windows-latest' && matrix.python-version != '3.10' }}
run: pip install ".[jaxcpu]"
- name: Run unittest with Jax
if: ${{ matrix.os != 'windows-latest' && matrix.python-version != '3.9' }}
if: ${{ matrix.os != 'windows-latest' && matrix.python-version != '3.10' }}
run: pytest ./scripts/tests
2 changes: 1 addition & 1 deletion .github/workflows/style-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: '3.10'
python-version: '3.12'
- name: Install dependencies
run: |
pip install --upgrade pip
Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ classifiers =
Development Status :: 3 - Alpha
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
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

[options]
python_requires= >= 3.9
python_requires= >= 3.10
packages = find:
include_package_data = True
test_suite = tests
Expand All @@ -40,7 +39,7 @@ dev =
yapf

jaxcpu =
jax==0.5.2
jax==0.8.0

[options.entry_points]
console_scripts =
Expand Down
Loading