Skip to content

Commit c0b607b

Browse files
authored
Replace setuptools_scm with our own solution (#12)
Unfortunately, setuptools_scm can't work with repositories that have multiple packages right now. Relevant issue: pypa/setuptools-scm#357 Instead, we'll use a workflow that pulls the semver from each package's setup.py with a "dev{revision}" suffix. The revision number is retrieved from git describe --tags using the same process that setuptools_scm uses. When a commit has a tag associated with it, there will be no "dev{revision}" suffix applied. This means we need to remember to increment the setup.py version number after each full release. If someone forgets to do this, pre-releases will be made for the previous version. Not ideal, but it won't break the existing stable release.
1 parent 22d057b commit c0b607b

File tree

4 files changed

+50
-36
lines changed

4 files changed

+50
-36
lines changed

.github/workflows/deploy.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,20 @@ jobs:
3535
run: |
3636
pip install --upgrade setuptools wheel twine
3737
- name: Publish vcap
38+
working-directory: ./vcap
3839
env:
3940
TWINE_USERNAME: __token__
4041
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
4142
run: |
42-
python3 vcap/setup.py sdist bdist_wheel
43+
PRE_RELEASE_SUFFIX=$(python3 ../.github/workflows/pre_release_suffix.py) \
44+
python3 setup.py sdist bdist_wheel
4345
python3 -m twine upload dist/*
4446
- name: Publish vcap-utils
47+
working-directory: ./vcap_utils
4548
env:
4649
TWINE_USERNAME: __token__
4750
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
4851
run: |
49-
# Clean up from vcap packaging
50-
rm -r dist
51-
python3 vcap_utils/setup.py sdist bdist_wheel
52+
PRE_RELEASE_SUFFIX=$(python3 ../.github/workflows/pre_release_suffix.py) \
53+
python3 setup.py sdist bdist_wheel
5254
python3 -m twine upload dist/*
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
"""Prints a suffix that will be appended to the end of the version strings
2+
for the vcap and vcap-utils packages.
3+
4+
For example, if there have been 3 commits since the last tagged release and the
5+
current version string in the setup.py is '0.1.3', the suffix will be '.dev3'.
6+
The resulting package version will then become '0.1.3.dev3'.
7+
8+
For commits that have a tag, this script will print nothing. That way, the
9+
resulting package will have no pre-release suffix.
10+
11+
Ideally, we would be using setuptools_scm to manage all of this for us.
12+
Unfortunately, setuptools_scm doesn't work for repositories with multiple
13+
packages. See: https://github.com/pypa/setuptools_scm/issues/357
14+
"""
15+
16+
import subprocess
17+
import re
18+
import sys
19+
20+
TAG_PATTERN = r"^v\d+\.\d+\.+\d+-?(\d+)?-?(.+)?$"
21+
22+
result = subprocess.run(["git", "describe", "--tags"],
23+
check=True, stdout=subprocess.PIPE, encoding="utf-8")
24+
25+
match = re.match(TAG_PATTERN, result.stdout)
26+
if match is None:
27+
print(f"Could not match tag: '{result.stdout}'", file=sys.stderr)
28+
sys.exit(1)
29+
30+
if match.group(1) is not None:
31+
print(f".dev{match.group(1)}")
32+
else:
33+
print("")

vcap/setup.py

+5-15
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,18 @@
11
#!/usr/bin/env python3
2+
import os
3+
24
from setuptools import setup, find_namespace_packages
35

46
test_packages = ["pytest", "mock"]
57

8+
PRE_RELEASE_SUFFIX = os.environ.get("PRE_RELEASE_SUFFIX", "")
9+
610
setup(
711
name='vcap',
812
description="A library for creating OpenVisionCapsules in Python",
913
author="Dilili Labs",
1014
packages=find_namespace_packages(include=["vcap*"]),
11-
12-
# Pull the package version from Git tags
13-
use_scm_version={
14-
# Helps setuptools_scm find the repository root
15-
"root": "..",
16-
"relative_to": __file__,
17-
# We want to be able to push these releases to PyPI, which doesn't
18-
# support local versions. Local versions are anything after the "+" in
19-
# a version string like "0.1.4.dev16+heyguys".
20-
"local_scheme": "no-local-version",
21-
},
22-
23-
setup_requires=[
24-
"setuptools_scm",
25-
],
15+
version="0.1.4" + PRE_RELEASE_SUFFIX,
2616

2717
install_requires=[
2818
"pycryptodomex==3.9.7",

vcap_utils/setup.py

+6-17
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,18 @@
11
#!/usr/bin/env python3
2+
import os
3+
24
from setuptools import setup, find_namespace_packages
35

46
test_packages = ["pytest", "mock"]
57

8+
PRE_RELEASE_SUFFIX = os.environ.get("PRE_RELEASE_SUFFIX", "")
9+
610
setup(
711
name='vcap-utils',
812
description="Utilities for creating OpenVisionCapsules easily in Python",
913
author="Dilili Labs",
10-
packages=find_namespace_packages(
11-
include=["vcap_utils*"],
12-
exclude=["vcap_utils.tests*"]),
13-
14-
# Pull the package version from Git tags
15-
use_scm_version={
16-
"root": "..",
17-
"relative_to": __file__,
18-
# We want to be able to push these releases to PyPI, which doesn't
19-
# support local versions. Local versions are anything after the "+" in
20-
# a version string like "0.1.4.dev16+heyguys".
21-
"local_scheme": "no-local-version",
22-
},
23-
24-
setup_requires=[
25-
"setuptools_scm",
26-
],
14+
packages=find_namespace_packages(include=["vcap_utils*"]),
15+
version="0.1.4" + PRE_RELEASE_SUFFIX,
2716

2817
install_requires=[
2918
"vcap",

0 commit comments

Comments
 (0)