Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Bring up to Prefect 0.14.11 (#26)
Browse files Browse the repository at this point in the history
* Update to prefect 0.14.11 requirements.txt
  • Loading branch information
staylorx authored Mar 8, 2021
1 parent 3a0ac00 commit 017b6d5
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 2 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
on: [push, release]

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.8]

steps:
- uses: actions/checkout@master

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install pypa/build
run: python -m pip install setuptools build wheel --user

- name: Build a binary wheel
run: python setup.py sdist bdist_wheel

- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true

- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ nose
pandas
pysftp
pygrok
prefect==0.14.5
prefect==0.14.11
sqlalchemy
cx_Oracle
pyarrow
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# This call to setup() does all the work
setuptools.setup(
name="cupyopt",
version="0.14.5.3",
version="0.14.11.1",
description="CU Python Opinionated Prefect Tasks",
long_description=README,
long_description_content_type="text/x-rst",
Expand Down

0 comments on commit 017b6d5

Please sign in to comment.