Skip to content

Commit

Permalink
Ready for v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewThe committed Aug 12, 2022
1 parent 30e0b82 commit 65ff319
Show file tree
Hide file tree
Showing 5 changed files with 1,974 additions and 1 deletion.
71 changes: 71 additions & 0 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Publish release

on:
push:
tags:
- 'rel-*'

jobs:
build:
name: Poetry build for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.8']
poetry-version: [1.1.11]
os: [ubuntu-20.04]

steps:
- uses: actions/checkout@v3
- run : |
rm -f dist/*.whl
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Build package
run: python3 setup.py sdist bdist_wheel
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*.whl
tag: ${{ github.ref }}
overwrite: false
file_glob: true
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os }}-py${{ matrix.python-version }}
path: "dist/*.whl"


publish:
name: Upload wheels to PyPI
runs-on: ubuntu-20.04
needs: build

steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- run : |
ls -R
mv -v */*.whl .
rmdir ubuntu-*
- name: Publish to TestPyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
verbose: true
print_hash: true
packages_dir: "."
- name: Publish to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true
print_hash: true
packages_dir: "."
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.06.3
* List comprehensions replaced with numpy methods for some quick gains (#16)
* Up the CSV field size limit (#16)

v0.06.2
* Added limit to number of cores for qvality (#13)

Expand Down
Binary file added admin/triqler_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 65ff319

Please sign in to comment.