iker-python-setup 1.0.18__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.18 → iker_python_setup-1.0.19}/PKG-INFO +1 -1
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/README.md +5 -5
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/PKG-INFO +1 -1
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/.editorconfig +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/.github/workflows/pr.yml +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/.github/workflows/push.yml +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/.gitignore +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/MANIFEST.in +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/VERSION +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/pyproject.toml +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION_EXCESSIVE_PATCH +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION_NO_PATCH +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/setup.cfg +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/setup.py +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker/setup/__init__.py +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/SOURCES.txt +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/dependency_links.txt +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/not-zip-safe +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/requires.txt +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/top_level.txt +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/test/iker_test.py +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/test/iker_tests/__init__.py +0 -0
- {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/test/iker_tests/setup_test.py +0 -0
|
@@ -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 .
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iker_python_setup-1.0.18 → 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.18 → 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.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/requires.txt
RENAMED
|
File without changes
|
{iker_python_setup-1.0.18 → 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
|
|
File without changes
|