Skip to content

Commit

Permalink
Merge branch 'main' of github.com:UCSB-VRL/bqapi into charvi/upgrade_…
Browse files Browse the repository at this point in the history
…python_version
  • Loading branch information
charvi-077 committed Jan 9, 2025
2 parents 9324e62 + 73d906d commit e63cecb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
Expand All @@ -32,8 +32,8 @@ jobs:
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@6f7e8d9c0b1a2c3d4e5f6a7b8c9d0e1f2a3b4c5d
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Bisque API for Python 3

[![Upload Python Package](https://github.com/UCSB-VRL/bqapi/actions/workflows/python-publish.yml/badge.svg)](https://github.com/UCSB-VRL/bqapi/actions/workflows/python-publish.yml)

[Full Documentation](https://github.com/UCSB-VRL/bisqueUCSB)

For development, follow [this guide](https://towardsdatascience.com/how-to-upload-your-python-package-to-pypi-de1b363a1b3) and [this repo](https://github.com/gmyrianthous/example-publish-pypi).
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

setup(
name='bqapi-ucsb',
version='1.0.1',
version='1.0.2',
author="Bisque Team",
author_email='manj@ucsb.edu',
author_email='amil@ucsb.edu',
description="""Python API for interacting with BisQue""",
packages=find_packages('src'),
package_dir={'': 'src'},
keywords='API Bisque',
url='https://github.com/UCSB-VRL/bisqueUCSB',
install_requires=[
'six', 'lxml', 'requests==2.32.3', 'requests-toolbelt',
],

)

0 comments on commit e63cecb

Please # to comment.