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.
Files changed (24) hide show
  1. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/PKG-INFO +1 -1
  2. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/README.md +5 -5
  3. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/PKG-INFO +1 -1
  4. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/.editorconfig +0 -0
  5. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/.github/workflows/pr.yml +0 -0
  6. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/.github/workflows/push.yml +0 -0
  7. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/.gitignore +0 -0
  8. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/MANIFEST.in +0 -0
  9. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/VERSION +0 -0
  10. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/pyproject.toml +0 -0
  11. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION +0 -0
  12. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION_EXCESSIVE_PATCH +0 -0
  13. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/resources/unittest/setup/VERSION_NO_PATCH +0 -0
  14. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/setup.cfg +0 -0
  15. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/setup.py +0 -0
  16. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker/setup/__init__.py +0 -0
  17. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/SOURCES.txt +0 -0
  18. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/dependency_links.txt +0 -0
  19. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/not-zip-safe +0 -0
  20. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/requires.txt +0 -0
  21. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/src/iker_python_setup.egg-info/top_level.txt +0 -0
  22. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/test/iker_test.py +0 -0
  23. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/test/iker_tests/__init__.py +0 -0
  24. {iker_python_setup-1.0.18 → iker_python_setup-1.0.19}/test/iker_tests/setup_test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iker-python-setup
3
- Version: 1.0.18
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
@@ -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>=68.0",
33
- "setuptools-scm>=8.0",
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 12-character digest of the current commit will be appended to the version string. Additionally, if
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.13
84
+ conda create -n iker python=3.14
85
85
  conda activate iker
86
86
 
87
87
  pip install .
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iker-python-setup
3
- Version: 1.0.18
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