home / github / issue_comments

Menu
  • GraphQL API
  • Search all tables

issue_comments: 581655351

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions performed_via_github_app issue
https://github.com/pydata/xarray/pull/3738#issuecomment-581655351 https://api.github.com/repos/pydata/xarray/issues/3738 581655351 MDEyOklzc3VlQ29tbWVudDU4MTY1NTM1MQ== 13301940 2020-02-03T22:44:52Z 2020-02-03T22:44:52Z MEMBER

Would it be of interest to automate the distribution build, and the PyPI upload via GitHub Workflow?

.github/workflows/publishtopypi.yaml:

```yaml

name: Publishing to PyPI on: release: types: [created, published, prereleased]

jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Python uses: actions/setup-python@v1 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install setuptools setuptools-scm wheel twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist bdist_wheel twine check dist twine upload dist/* ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  558241968
Powered by Datasette · Queries took 0.753ms · About: xarray-datasette