Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin twine #188

Merged
merged 2 commits into from
Nov 7, 2024
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
4 changes: 3 additions & 1 deletion .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,10 @@ jobs:

- name: Build sdist
run: >
pip install build
pip install build twine check-manifest
&& python -m build --sdist . --outdir dist
&& twine check dist/*
&& check-manifest --verbose
- uses: actions/upload-artifact@v4
with:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,27 @@ on:
tags:
- "v*"

defaults:
run:
shell: bash

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
environment-name: TEST
init-shell: bash
create-args: >-
python=3 numpy --file requirements-dev.txt --channel conda-forge
python-version: "3.x"

- name: Install gsw
shell: bash -l {0}
run: |
python -m pip install -e . --no-deps --force-reinstall
run: >
python -m pip install -r requirements-dev.txt
&& python -m pip install -e .
- name: Build documentation
shell: bash -l {0}
run: >
set -e
&& pushd docs
Expand Down
27 changes: 0 additions & 27 deletions .github/workflows/tarball-tests.yml

This file was deleted.

2 changes: 0 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
check-manifest
dask
numpydoc
pandas>=2
Expand All @@ -7,5 +6,4 @@ scipy
setuptools_scm
sphinx
sphinx_rtd_theme
twine
xarray
Loading