Skip to content

Commit

Permalink
Fix setup.py long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
itskalvik committed Aug 17, 2024
1 parent 42827ed commit a1f1ab5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -42,7 +42,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
author_email='itskalvik@gmail.com',
author='Kalvik',
description='Software Suite for Sensor Placement and Informative Path Planning',
long_description='Software Suite for Sensor Placement and Informative Path Planning',
install_requires=['apricot-select',
'matplotlib',
'pandas',
Expand All @@ -24,8 +25,9 @@
'cma',
'bayesian-optimization',
'hkb_diamondsquare',
'tensorflow-probability>=0.21.0',
'tensorflow>=2.13.0',
'tensorflow-probability[tf]>=0.21.0',
'tensorflow>=2.13.0; platform_machine!="arm64"',
'tensorflow-aarch64>=2.13.0; platform_machine=="arm64"',
'typing_extensions',
'gpflow>=2.7.0'
]
Expand Down

0 comments on commit a1f1ab5

Please sign in to comment.