Skip to content

Commit 6c77ebd

Browse files
authored
Merge pull request #5 from huntdatacenter/fix-build
Fix build
2 parents 16025d3 + 6fa6dd2 commit 6c77ebd

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@ jobs:
1818
python-version: '3.10'
1919
# architecture: 'x64'
2020

21-
- name: Setup pip cache
22-
uses: actions/cache@v3
23-
with:
24-
path: ~/.cache/pip
25-
key: ${{ runner.os }}-pip-3.10-${{ hashFiles('pyproject.toml') }}
26-
restore-keys: |
27-
${{ runner.os }}-pip-3.10-
2821
- name: Build extension package
2922
run: |
3023
python3 -m pip install hatch
@@ -34,5 +27,5 @@ jobs:
3427
# if: startsWith(github.ref, 'refs/tags')
3528
uses: pypa/gh-action-pypi-publish@release/v1
3629
with:
37-
user: __token__
30+
# user: __token__
3831
password: ${{ secrets.PYPI_API_TOKEN }}

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "jupyter-pgadmin-proxy"
7-
version = "0.0.2"
7+
version = "0.0.3"
88
authors = [
99
{ name="Matus Kosut", email="[email protected]" },
1010
{ name="Diepiriye Okujagu", email="[email protected]" },
@@ -30,6 +30,7 @@ classifiers = [
3030
"Programming Language :: Python :: 3.8",
3131
"Programming Language :: Python :: 3.9",
3232
"Programming Language :: Python :: 3.10",
33+
"Programming Language :: Python :: 3.11",
3334
]
3435
keywords = [
3536
"Jupyter Proxy",

0 commit comments

Comments
 (0)