Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@ jobs:
python-version: '3.10'
# architecture: 'x64'

- name: Setup pip cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-3.10-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-3.10-
- name: Build extension package
run: |
python3 -m pip install hatch
Expand All @@ -34,5 +27,5 @@ jobs:
# if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
# user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "jupyter-pgadmin-proxy"
version = "0.0.2"
version = "0.0.3"
authors = [
{ name="Matus Kosut", email="matus.kosut@ntnu.no" },
{ name="Diepiriye Okujagu", email="diepiriye.d.okujagu@ntnu.no" },
Expand All @@ -30,6 +30,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = [
"Jupyter Proxy",
Expand Down