iker-python-setup 1.0.17__tar.gz → 1.0.19__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/.github/workflows/pr.yml +1 -1
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/.github/workflows/push.yml +1 -1
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/PKG-INFO +5 -4
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/README.md +5 -5
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/pyproject.toml +8 -7
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/PKG-INFO +5 -4
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/requires.txt +2 -2
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/test/iker_tests/setup_test.py +3 -3
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/.editorconfig +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/.gitignore +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/MANIFEST.in +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/VERSION +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION_EXCESSIVE_PATCH +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION_NO_PATCH +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/setup.cfg +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/setup.py +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker/setup/__init__.py +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/SOURCES.txt +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/dependency_links.txt +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/not-zip-safe +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/top_level.txt +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/test/iker_test.py +0 -0
- {iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/test/iker_tests/__init__.py +0 -0
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: iker-python-setup
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.19
|
|
4
4
|
Classifier: Programming Language :: Python :: 3
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.11
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.12
|
|
7
7
|
Classifier: Programming Language :: Python :: 3.13
|
|
8
|
-
|
|
9
|
-
Requires-
|
|
10
|
-
Requires-Dist: setuptools
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
9
|
+
Requires-Python: <3.15,>=3.11
|
|
10
|
+
Requires-Dist: setuptools>=80.0
|
|
11
|
+
Requires-Dist: setuptools-scm>=9.0
|
|
11
12
|
Provides-Extra: all
|
|
12
13
|
Requires-Dist: iker-python-setup; extra == "all"
|
|
13
14
|
Provides-Extra: test
|
|
@@ -29,8 +29,8 @@ To use this tool for managing the versioning of your Python package, follow thes
|
|
|
29
29
|
```toml
|
|
30
30
|
[build-system]
|
|
31
31
|
requires = [
|
|
32
|
-
"setuptools>=
|
|
33
|
-
"setuptools-scm>=
|
|
32
|
+
"setuptools>=80.0",
|
|
33
|
+
"setuptools-scm>=9.0",
|
|
34
34
|
"iker-python-setup>=1.0" # This is required
|
|
35
35
|
]
|
|
36
36
|
|
|
@@ -52,9 +52,9 @@ patch version number is sourced from the `BUILD_NUMBER` environment variable. Th
|
|
|
52
52
|
set by the CI system.
|
|
53
53
|
|
|
54
54
|
For SCM settings, if the code is on the specified "base" branch, no additional segments will be appended to the version
|
|
55
|
-
string. Otherwise, a
|
|
55
|
+
string. Otherwise, a 9-character digest of the current commit will be appended to the version string. Additionally, if
|
|
56
56
|
there are uncommitted changes in the workspace, a `dirty` label will also be added, resulting in a final version string
|
|
57
|
-
format like `{major}.{minor}.{patch}+{digest}.dirty`.
|
|
57
|
+
format like `{major}.{minor}.{patch}+g{digest}.dirty`.
|
|
58
58
|
|
|
59
59
|
An alternative approach for detecting the "base" branch is to use an environment variable specified by
|
|
60
60
|
`scm_branch_env_var`, which defaults to `GIT_BRANCH`. The "base" branch name, defaulting to `master`, is also
|
|
@@ -81,7 +81,7 @@ the [official site](https://www.anaconda.com/products/distribution)
|
|
|
81
81
|
Create a Conda environment and install the modules and their dependencies in it
|
|
82
82
|
|
|
83
83
|
```shell
|
|
84
|
-
conda create -n iker python=3.
|
|
84
|
+
conda create -n iker python=3.14
|
|
85
85
|
conda activate iker
|
|
86
86
|
|
|
87
87
|
pip install .
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
requires = [
|
|
3
|
-
"setuptools>=
|
|
4
|
-
"setuptools-scm>=
|
|
3
|
+
"setuptools>=80.0",
|
|
4
|
+
"setuptools-scm>=9.0",
|
|
5
5
|
]
|
|
6
6
|
build-backend = "setuptools.build_meta"
|
|
7
7
|
|
|
8
8
|
[dependency-groups]
|
|
9
9
|
dev = [
|
|
10
|
-
"setuptools>=
|
|
11
|
-
"setuptools-scm>=
|
|
10
|
+
"setuptools>=80.0",
|
|
11
|
+
"setuptools-scm>=9.0",
|
|
12
12
|
]
|
|
13
13
|
test = [
|
|
14
14
|
"pytest-cov>=5.0",
|
|
@@ -19,16 +19,17 @@ test = [
|
|
|
19
19
|
[project]
|
|
20
20
|
name = "iker-python-setup"
|
|
21
21
|
dynamic = ["version"]
|
|
22
|
-
requires-python = ">=3.11,<3.
|
|
22
|
+
requires-python = ">=3.11,<3.15"
|
|
23
23
|
classifiers = [
|
|
24
24
|
"Programming Language :: Python :: 3",
|
|
25
25
|
"Programming Language :: Python :: 3.11",
|
|
26
26
|
"Programming Language :: Python :: 3.12",
|
|
27
27
|
"Programming Language :: Python :: 3.13",
|
|
28
|
+
"Programming Language :: Python :: 3.14",
|
|
28
29
|
]
|
|
29
30
|
dependencies = [
|
|
30
|
-
"setuptools>=
|
|
31
|
-
"setuptools-scm>=
|
|
31
|
+
"setuptools>=80.0",
|
|
32
|
+
"setuptools-scm>=9.0",
|
|
32
33
|
]
|
|
33
34
|
|
|
34
35
|
[project.optional-dependencies]
|
{iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/PKG-INFO
RENAMED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: iker-python-setup
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.19
|
|
4
4
|
Classifier: Programming Language :: Python :: 3
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.11
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.12
|
|
7
7
|
Classifier: Programming Language :: Python :: 3.13
|
|
8
|
-
|
|
9
|
-
Requires-
|
|
10
|
-
Requires-Dist: setuptools
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
9
|
+
Requires-Python: <3.15,>=3.11
|
|
10
|
+
Requires-Dist: setuptools>=80.0
|
|
11
|
+
Requires-Dist: setuptools-scm>=9.0
|
|
11
12
|
Provides-Extra: all
|
|
12
13
|
Requires-Dist: iker-python-setup; extra == "all"
|
|
13
14
|
Provides-Extra: test
|
|
@@ -99,7 +99,7 @@ class Test(unittest.TestCase):
|
|
|
99
99
|
scm_branch_name="dummy_branch",
|
|
100
100
|
scm_branch_env_var="DUMMY_BRANCH")
|
|
101
101
|
self.assertTrue(version_string.startswith("1.2.0"))
|
|
102
|
-
self.assertTrue(re.match(r"^\d+\.\d+\.\d+(\+g[0-9a-f]{
|
|
102
|
+
self.assertTrue(re.match(r"^\d+\.\d+\.\d+(\+g[0-9a-f]{9}(\.dirty)?)?$", version_string))
|
|
103
103
|
|
|
104
104
|
def test_version_string_scm__none_cwd(self):
|
|
105
105
|
with unittest.mock.patch("os.getcwd", return_value=os.path.join(resources_directory, "unittest/setup")):
|
|
@@ -109,7 +109,7 @@ class Test(unittest.TestCase):
|
|
|
109
109
|
scm_branch_name="dummy_branch",
|
|
110
110
|
scm_branch_env_var="DUMMY_BRANCH")
|
|
111
111
|
self.assertTrue(version_string.startswith("1.2.0"))
|
|
112
|
-
self.assertTrue(re.match(r"^\d+\.\d+\.\d+(\+g[0-9a-f]{
|
|
112
|
+
self.assertTrue(re.match(r"^\d+\.\d+\.\d+(\+g[0-9a-f]{9}(\.dirty)?)?$", version_string))
|
|
113
113
|
|
|
114
114
|
def test_version_string_scm__env_branch(self):
|
|
115
115
|
with unittest.mock.patch.dict(os.environ, {"DUMMY_BRANCH": "dummy_branch"}):
|
|
@@ -138,7 +138,7 @@ class Test(unittest.TestCase):
|
|
|
138
138
|
scm_branch_name="dummy_branch",
|
|
139
139
|
scm_branch_env_var="DUMMY_BRANCH")
|
|
140
140
|
self.assertTrue(version_string.startswith("1.2.0"))
|
|
141
|
-
self.assertTrue(re.match(r"^\d+\.\d+\.\d+(\+g[0-9a-f]{
|
|
141
|
+
self.assertTrue(re.match(r"^\d+\.\d+\.\d+(\+g[0-9a-f]{9}(\.dirty)?)?$", version_string))
|
|
142
142
|
|
|
143
143
|
def test_version_string__env_branch(self):
|
|
144
144
|
with unittest.mock.patch.dict(os.environ, {"DUMMY_BRANCH": "dummy_branch"}):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION_NO_PATCH
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{iker_python_setup-1.0.17 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|