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
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.10', '3.11']
numpy_version: ['>=1.22.0', '==1.20.*']
exclude:
- python-version: '3.10'
Expand Down
17 changes: 4 additions & 13 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,14 @@ jobs:
- uses: actions/[email protected]
name: Install Python
with:
python-version: '3.8'
python-version: '3.11'

- name: Install PyBuild
run: |
python -m pip install 'build!=0.1' setuptools-scm

python -m pip install --upgrade pip
pip install hatch
- name: Build wheel and sdist
run: |
python -m build
git describe
pwd
if [ -f dist/zarr-0.0.0.tar.gz ]; then
echo "WRONG VERSION NUMBER"
exit 1
else
echo "All seem good"
fi
run: hatch build
- uses: actions/upload-artifact@v3
with:
name: releases
Expand Down
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ repos:
hooks:
- id: mypy
files: src
exclude: ^src/zarr/v3
args: []
additional_dependencies:
- types-redis
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-20.04
tools:
python: "3.9"
python: "3.10"

sphinx:
configuration: docs/conf.py
Expand Down