Skip to content

Commit

Permalink
Move test requirements, adjust and streamline CI YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
sgillies committed Oct 22, 2024
1 parent ef512ad commit a0f7041
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/tiledb-cloud-py.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
uses: actions/cache@v3
with:
path: ${{ matrix.path }}
key: ${{ runner.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles(format('./requirements-py{0}.txt', matrix.python-version)) }}
key: ${{ runner.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles(format('./ci/requirements-py{0}.txt', matrix.python-version)) }}
restore-keys: |
${{ runner.os }}-py${{ matrix.python-version }}-pip-
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Install pinned dependencies
if: ${{ matrix.dependencies == 'pinned' }}
run: |
pip install -r requirements-py${{ matrix.python-version }}.txt
pip install -r ci/requirements-py${{ matrix.python-version }}.txt
- name: Install TileDB-Cloud-Py
run: |
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
with:
python-version: "3.9"
cache: pip
cache-dependency-path: requirements-py3.9.txt
cache-dependency-path: ci/requirements-py3.9.txt

- name: Make fake version for Test PyPI
if: ${{ github.event_name != 'release' }}
Expand All @@ -233,8 +233,7 @@ jobs:
- name: Build wheel
run: |
pip install --upgrade pip build wheel setuptools setuptools-scm
pip install -r requirements-py3.9.txt
pip install --upgrade pip build
python -m build
- name: Publish to PyPI
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit a0f7041

Please sign in to comment.