Skip to content

Commit 41c559d

Browse files
authored
Merge pull request #624 from 1nv0k32/bugfix/pep440
Remove local versioning for PEP440 compat
2 parents 7e10afc + dab3f6d commit 41c559d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/release-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: Release Dev
22

33
on:
44
push:

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ jobs:
1010
name: Release
1111
runs-on: ubuntu-latest
1212
steps:
13-
- name: Check out the repository and set tag env
13+
- name: Check out the repository
1414
uses: actions/checkout@v3
1515
with:
1616
fetch-depth: 0
17+
18+
- name: Set Tag env
1719
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
1820

1921
- name: Set up Python

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ dependencies = []
2020
[tool.hatch.version]
2121
source = "vcs"
2222

23+
[tool.hatch.version.raw-options]
24+
local_scheme = "no-local-version"
25+
2326
[project.urls]
2427
homepage = "https://github.com/staticdev/human-readable"
2528
repository = "https://github.com/staticdev/human-readable"

0 commit comments

Comments
 (0)