Skip to content

Commit 9ea8b6e

Browse files
committed
Change requirements and publish command
1 parent bc2c7a7 commit 9ea8b6e

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

.github/workflows/package.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ jobs:
3939
run: |
4040
poetry build
4141
42-
- name: Publish package
43-
if: github.event_name == 'release'
44-
uses: pypa/gh-action-pypi-publish@release/v1
45-
with:
46-
user: __token__
47-
password: ${{ secrets.PYPI_API_TOKEN }}
42+
- name: Publish python package
43+
run: |
44+
poetry publish
45+
env:
46+
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}

pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cirro"
3-
version = "0.6.4"
3+
version = "0.6.5"
44
description = "CLI tool and SDK for interacting with the Cirro platform"
55
authors = ["Fred Hutch <[email protected]>"]
66
license = "MIT"
@@ -11,18 +11,17 @@ packages = [{include = "cirro"}]
1111
[tool.poetry.dependencies]
1212
python = "^3.8"
1313
click = "^8.1.3"
14-
boto3 = "^1.20.0"
14+
boto3 = "^1.24.0"
1515
questionary = "^1.10.0"
1616
requests = "^2.28.0"
1717
requests_aws4auth = "^1.1.2"
18-
pycognito = "^2022.0.0"
18+
pycognito = "2022.12.0"
1919
tqdm = "^4.62.3"
20-
pygithub = "^1.55"
20+
pygithub = "1.55.0"
2121
jsonschema = "^4.6.1"
2222
gql = {extras = ["requests"], version = "^3.4.0"}
2323
pandas = "^1.5.0"
24-
s3fs = "^2023.0.0"
25-
fsspec = "^2023.0.0"
24+
s3fs = "2023.1.0"
2625
pyjwt = "^2.4.0"
2726
msal-extensions = "^1.0.0"
2827

0 commit comments

Comments
 (0)