File tree 4 files changed +50
-36
lines changed
4 files changed +50
-36
lines changed Original file line number Diff line number Diff line change @@ -35,18 +35,20 @@ jobs:
35
35
run : |
36
36
pip install --upgrade setuptools wheel twine
37
37
- name : Publish vcap
38
+ working-directory : ./vcap
38
39
env :
39
40
TWINE_USERNAME : __token__
40
41
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
41
42
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
43
45
python3 -m twine upload dist/*
44
46
- name : Publish vcap-utils
47
+ working-directory : ./vcap_utils
45
48
env :
46
49
TWINE_USERNAME : __token__
47
50
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
48
51
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
52
54
python3 -m twine upload dist/*
Original file line number Diff line number Diff line change
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 ("" )
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
+ import os
3
+
2
4
from setuptools import setup , find_namespace_packages
3
5
4
6
test_packages = ["pytest" , "mock" ]
5
7
8
+ PRE_RELEASE_SUFFIX = os .environ .get ("PRE_RELEASE_SUFFIX" , "" )
9
+
6
10
setup (
7
11
name = 'vcap' ,
8
12
description = "A library for creating OpenVisionCapsules in Python" ,
9
13
author = "Dilili Labs" ,
10
14
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 ,
26
16
27
17
install_requires = [
28
18
"pycryptodomex==3.9.7" ,
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
+ import os
3
+
2
4
from setuptools import setup , find_namespace_packages
3
5
4
6
test_packages = ["pytest" , "mock" ]
5
7
8
+ PRE_RELEASE_SUFFIX = os .environ .get ("PRE_RELEASE_SUFFIX" , "" )
9
+
6
10
setup (
7
11
name = 'vcap-utils' ,
8
12
description = "Utilities for creating OpenVisionCapsules easily in Python" ,
9
13
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 ,
27
16
28
17
install_requires = [
29
18
"vcap" ,
You can’t perform that action at this time.
0 commit comments