iker-python-setup 1.0.3__tar.gz → 1.0.4__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 (21) hide show
  1. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/PKG-INFO +6 -6
  2. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/pyproject.toml +7 -7
  3. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/src/iker/setup/__init__.py +2 -3
  4. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/src/iker_python_setup.egg-info/PKG-INFO +6 -6
  5. iker_python_setup-1.0.4/src/iker_python_setup.egg-info/requires.txt +7 -0
  6. iker_python_setup-1.0.3/src/iker_python_setup.egg-info/requires.txt +0 -7
  7. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/.editorconfig +0 -0
  8. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/.github/workflows/pr.yml +0 -0
  9. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/.github/workflows/push.yml +0 -0
  10. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/.gitignore +0 -0
  11. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/MANIFEST.in +0 -0
  12. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/README.md +0 -0
  13. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/VERSION +0 -0
  14. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/setup.cfg +0 -0
  15. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/setup.py +0 -0
  16. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/src/iker_python_setup.egg-info/SOURCES.txt +0 -0
  17. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/src/iker_python_setup.egg-info/dependency_links.txt +0 -0
  18. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/src/iker_python_setup.egg-info/not-zip-safe +0 -0
  19. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/src/iker_python_setup.egg-info/top_level.txt +0 -0
  20. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/test/iker_tests/__init__.py +0 -0
  21. {iker_python_setup-1.0.3 → iker_python_setup-1.0.4}/test/iker_tests/iker_test.py +0 -0
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: iker-python-setup
3
- Version: 1.0.3
3
+ Version: 1.0.4
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
  Requires-Python: <3.13,>=3.11
8
- Requires-Dist: setuptools~=75.0
9
- Requires-Dist: setuptools-scm~=8.0
8
+ Requires-Dist: setuptools>=75.0
9
+ Requires-Dist: setuptools-scm>=8.0
10
10
  Provides-Extra: test
11
- Requires-Dist: pytest-cov~=5.0; extra == "test"
12
- Requires-Dist: pytest-order~=1.3; extra == "test"
13
- Requires-Dist: pytest~=8.3; extra == "test"
11
+ Requires-Dist: pytest-cov>=5.0; extra == "test"
12
+ Requires-Dist: pytest-order>=1.3; extra == "test"
13
+ Requires-Dist: pytest>=8.3; extra == "test"
@@ -1,7 +1,7 @@
1
1
  [build-system]
2
2
  requires = [
3
- "setuptools~=75.0",
4
- "setuptools-scm~=8.0",
3
+ "setuptools>=75.0",
4
+ "setuptools-scm>=8.0",
5
5
  ]
6
6
  build-backend = "setuptools.build_meta"
7
7
 
@@ -15,15 +15,15 @@ classifiers = [
15
15
  "Programming Language :: Python :: 3.12",
16
16
  ]
17
17
  dependencies = [
18
- "setuptools~=75.0",
19
- "setuptools-scm~=8.0",
18
+ "setuptools>=75.0",
19
+ "setuptools-scm>=8.0",
20
20
  ]
21
21
 
22
22
  [project.optional-dependencies]
23
23
  test = [
24
- "pytest-cov~=5.0",
25
- "pytest-order~=1.3",
26
- "pytest~=8.3",
24
+ "pytest-cov>=5.0",
25
+ "pytest-order>=1.3",
26
+ "pytest>=8.3",
27
27
  ]
28
28
 
29
29
  [tool.setuptools]
@@ -69,10 +69,9 @@ def version_string_scm(cwd: str | None = None) -> str:
69
69
  def local_scheme_callback(scm_version: ScmVersion) -> str:
70
70
  if scm_version.branch == "master" or os.getenv("GIT_BRANCH", "") == "master":
71
71
  return ""
72
- node_datetime = scm_version.time.strftime("%Y%m%d%H%M%S")
73
72
  if scm_version.dirty:
74
- return scm_version.format_with("+{node_datetime}.{node}.dirty", node_datetime=node_datetime)
75
- return scm_version.format_with("+{node_datetime}.{node}", node_datetime=node_datetime)
73
+ return scm_version.format_with("+{node}.dirty")
74
+ return scm_version.format_with("+{node}")
76
75
 
77
76
  return get_version(root=find_scm_root(cwd),
78
77
  version_scheme=version_scheme_callback,
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: iker-python-setup
3
- Version: 1.0.3
3
+ Version: 1.0.4
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
  Requires-Python: <3.13,>=3.11
8
- Requires-Dist: setuptools~=75.0
9
- Requires-Dist: setuptools-scm~=8.0
8
+ Requires-Dist: setuptools>=75.0
9
+ Requires-Dist: setuptools-scm>=8.0
10
10
  Provides-Extra: test
11
- Requires-Dist: pytest-cov~=5.0; extra == "test"
12
- Requires-Dist: pytest-order~=1.3; extra == "test"
13
- Requires-Dist: pytest~=8.3; extra == "test"
11
+ Requires-Dist: pytest-cov>=5.0; extra == "test"
12
+ Requires-Dist: pytest-order>=1.3; extra == "test"
13
+ Requires-Dist: pytest>=8.3; extra == "test"
@@ -0,0 +1,7 @@
1
+ setuptools>=75.0
2
+ setuptools-scm>=8.0
3
+
4
+ [test]
5
+ pytest-cov>=5.0
6
+ pytest-order>=1.3
7
+ pytest>=8.3
@@ -1,7 +0,0 @@
1
- setuptools~=75.0
2
- setuptools-scm~=8.0
3
-
4
- [test]
5
- pytest-cov~=5.0
6
- pytest-order~=1.3
7
- pytest~=8.3