From 6e340240decafd6738bf78b7e5052d9636d74df9 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Wed, 26 Apr 2023 11:37:34 -0400 Subject: [PATCH] Update github actions (#51) Update workflows, update readme and manifest --- .github/workflows/release.yml | 41 +++++++++++++++++++++++++++++++++++ .github/workflows/test.yml | 2 +- README.rst | 4 ++-- 3 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..8f3f0d3 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,41 @@ +name: release + +on: + pull_request: + types: + - closed + branches: + - master + paths: + - 'pyproject.toml' + workflow_dispatch: + +env: + POETRY_VERSION: "1.3.1" + +jobs: + if_release: + if: | + ${{ github.event.pull_request.merged == true }} + && ${{ contains(github.event.pull_request.labels.*.name, 'release') }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install poetry + run: pipx install poetry==$POETRY_VERSION + - name: Set up Python 3.10 + uses: actions/setup-python@v4 + with: + python-version: "3.10" + cache: "poetry" + - name: Build project for distribution + run: poetry build + - name: Check Version + id: check-version + run: | + echo version=$(poetry version --short) >> $GITHUB_OUTPUT + - name: Publish to PyPI + env: + POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }} + run: | + poetry publish diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d0f4693..cb6bfb5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,7 @@ name: test on: push: - branches: [main] + branches: [master] pull_request: env: diff --git a/README.rst b/README.rst index e373d4c..864266a 100644 --- a/README.rst +++ b/README.rst @@ -30,7 +30,7 @@ A more detailed example can be found here: http://nbviewer.ipython.org/github/ey Features =================== -- **python**: 2.7, 3.3, 3.4 +- **python**: 3.8, 3.9, 3.10, 3.11 - **FCS Formats**: Supports FCS 2.0, 3.0, and 3.1 - **FCS Machines**: BD FACSCalibur, BD LSRFortessa, BD LSR-II, MiltenyiBiotec MACSQuant VYB, Sony SH800 @@ -56,7 +56,7 @@ LICENSE The MIT License (MIT) -Copyright (c) 2013-2015 Eugene Yurtsev +Copyright (c) 2013-2023 Eugene Yurtsev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal