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
7 changes: 3 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true

- uses: actions/setup-node@v4
with:
Expand All @@ -49,7 +46,9 @@ jobs:
run: |
# NOTE: put your own distribution build steps here.
python -m pip install build
python -m build
export SETUPTOOLS_SCM_PRETEND_VERSION=${GITHUB_REF}
export SETUPTOOLS_SCM_DEBUG=1
python -m build --sdist --wheel ./
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pypa/setuptools-scm#997 (comment)

Was seeing this "error" too...


- name: Upload distributions
uses: actions/upload-artifact@v4
Expand Down
5 changes: 0 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ name = "simple-repository-browser"
dynamic = ["version"]
description = "A web interface to browse and search packages in any simple package repository (PEP-503), inspired by PyPI / warehouse"
requires-python = ">=3.11"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
authors = [
{name = "Phil Elson"},
{name = "Francesco Iannaccone"},
Expand Down