Skip to content

Commit

Permalink
adds dependencies and updates CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fabricebrito committed Sep 26, 2024
1 parent 5660d9a commit f70ab5d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,15 @@ jobs:
run: hatch build
- name: Test package
run: hatch -e test run nose2 --verbose
- name: Publish package distributions to Test PyPI
if: github.ref != 'refs/heads/main'
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
repository-url: https://test.pypi.org/legacy/
- name: Publish package distributions to PyPI
if: github.ref == 'refs/heads/main'
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
skip-existing: true
repository-url: https://upload.pypi.org/legacy/
12 changes: 11 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,17 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = []
dependencies = [
"urllib3==1.26.18",
"kubernetes==28.1.0",
"cwltool==3.1.20240708091337",
"tenacity==8.2.3",
"importlib-metadata==6.8.0",
"msgpack==1.0.7",
"typing-extensions==4.8.0",
"freezegun==1.2.2",
"setuptools==70.0.0"
]

[project.urls]
Documentation = "https://github.com/Duke-GCB/calrissian#readme"
Expand Down

0 comments on commit f70ab5d

Please sign in to comment.