iker-python-setup 1.0.15__tar.gz → 1.0.17__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 (25) hide show
  1. iker_python_setup-1.0.17/.github/workflows/pr.yml +32 -0
  2. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/.github/workflows/push.yml +7 -6
  3. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/PKG-INFO +3 -1
  4. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/pyproject.toml +14 -0
  5. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/src/iker_python_setup.egg-info/PKG-INFO +3 -1
  6. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/src/iker_python_setup.egg-info/requires.txt +3 -0
  7. iker_python_setup-1.0.15/.github/workflows/pr.yml +0 -66
  8. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/.editorconfig +0 -0
  9. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/.gitignore +0 -0
  10. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/MANIFEST.in +0 -0
  11. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/README.md +0 -0
  12. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/VERSION +0 -0
  13. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/resources/unittest/setup/VERSION +0 -0
  14. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/resources/unittest/setup/VERSION_EXCESSIVE_PATCH +0 -0
  15. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/resources/unittest/setup/VERSION_NO_PATCH +0 -0
  16. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/setup.cfg +0 -0
  17. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/setup.py +0 -0
  18. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/src/iker/setup/__init__.py +0 -0
  19. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/src/iker_python_setup.egg-info/SOURCES.txt +0 -0
  20. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/src/iker_python_setup.egg-info/dependency_links.txt +0 -0
  21. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/src/iker_python_setup.egg-info/not-zip-safe +0 -0
  22. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/src/iker_python_setup.egg-info/top_level.txt +0 -0
  23. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/test/iker_test.py +0 -0
  24. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/test/iker_tests/__init__.py +0 -0
  25. {iker_python_setup-1.0.15 → iker_python_setup-1.0.17}/test/iker_tests/setup_test.py +0 -0
@@ -0,0 +1,32 @@
1
+ name: Pull Request
2
+
3
+ on:
4
+ pull_request:
5
+ branches: [ "master" ]
6
+
7
+ env:
8
+ BUILD_NUMBER: ${{ github.run_number }}
9
+
10
+ jobs:
11
+ build-python:
12
+ runs-on: ubuntu-latest
13
+ container:
14
+ image: ruyangshou/iker-basedev-dev:latest
15
+ options: --user github
16
+ strategy:
17
+ matrix:
18
+ python-version: [ "3.11", "3.12", "3.13" ]
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
+
23
+ - name: Setup Python
24
+ uses: actions/setup-python@v5
25
+ with:
26
+ python-version: "${{ matrix.python-version }}"
27
+
28
+ - name: Build and Test
29
+ run: |
30
+ python -m pip install --upgrade pip
31
+ python -m pip install .[test,all]
32
+ python -m pytest . --cov --cov-report xml --cov-config pyproject.toml
@@ -10,21 +10,22 @@ env:
10
10
  jobs:
11
11
  push:
12
12
  runs-on: ubuntu-latest
13
+ container:
14
+ image: ruyangshou/iker-basedev-dev:latest
15
+ options: --user github
13
16
  steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+
14
20
  - name: Setup Python
15
21
  uses: actions/setup-python@v5
16
22
  with:
17
23
  python-version: "3.13"
18
24
 
19
- - name: Checkout
20
- uses: actions/checkout@v4
21
-
22
25
  - name: Build and Upload
23
26
  run: |
24
- sudo apt-get update
25
- sudo apt-get install libxml2-dev libxslt1-dev llvm-14-dev
26
27
  python -m pip install --upgrade pip build twine
27
- python -m pip install .[test]
28
+ python -m pip install .[test,all]
28
29
  python -m pytest . --cov --cov-report xml --cov-config pyproject.toml
29
30
  python -m build -sw .
30
31
  python -m twine upload --username __token__ --password ${{ secrets.PYPI_TOKEN }} dist/*
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iker-python-setup
3
- Version: 1.0.15
3
+ Version: 1.0.17
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Python :: 3.11
6
6
  Classifier: Programming Language :: Python :: 3.12
@@ -8,6 +8,8 @@ Classifier: Programming Language :: Python :: 3.13
8
8
  Requires-Python: <3.14,>=3.11
9
9
  Requires-Dist: setuptools>=75.0
10
10
  Requires-Dist: setuptools-scm>=8.0
11
+ Provides-Extra: all
12
+ Requires-Dist: iker-python-setup; extra == "all"
11
13
  Provides-Extra: test
12
14
  Requires-Dist: pytest-cov>=5.0; extra == "test"
13
15
  Requires-Dist: pytest-order>=1.3; extra == "test"
@@ -5,6 +5,17 @@ requires = [
5
5
  ]
6
6
  build-backend = "setuptools.build_meta"
7
7
 
8
+ [dependency-groups]
9
+ dev = [
10
+ "setuptools>=75.0",
11
+ "setuptools-scm>=8.0",
12
+ ]
13
+ test = [
14
+ "pytest-cov>=5.0",
15
+ "pytest-order>=1.3",
16
+ "pytest>=8.3",
17
+ ]
18
+
8
19
  [project]
9
20
  name = "iker-python-setup"
10
21
  dynamic = ["version"]
@@ -21,6 +32,9 @@ dependencies = [
21
32
  ]
22
33
 
23
34
  [project.optional-dependencies]
35
+ all = [
36
+ "iker-python-setup",
37
+ ]
24
38
  test = [
25
39
  "pytest-cov>=5.0",
26
40
  "pytest-order>=1.3",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iker-python-setup
3
- Version: 1.0.15
3
+ Version: 1.0.17
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Python :: 3.11
6
6
  Classifier: Programming Language :: Python :: 3.12
@@ -8,6 +8,8 @@ Classifier: Programming Language :: Python :: 3.13
8
8
  Requires-Python: <3.14,>=3.11
9
9
  Requires-Dist: setuptools>=75.0
10
10
  Requires-Dist: setuptools-scm>=8.0
11
+ Provides-Extra: all
12
+ Requires-Dist: iker-python-setup; extra == "all"
11
13
  Provides-Extra: test
12
14
  Requires-Dist: pytest-cov>=5.0; extra == "test"
13
15
  Requires-Dist: pytest-order>=1.3; extra == "test"
@@ -1,6 +1,9 @@
1
1
  setuptools>=75.0
2
2
  setuptools-scm>=8.0
3
3
 
4
+ [all]
5
+ iker-python-setup
6
+
4
7
  [test]
5
8
  pytest-cov>=5.0
6
9
  pytest-order>=1.3
@@ -1,66 +0,0 @@
1
- name: Pull Request
2
-
3
- on:
4
- pull_request:
5
- branches: [ "master" ]
6
-
7
- env:
8
- BUILD_NUMBER: ${{ github.run_number }}
9
-
10
- jobs:
11
- build-python311:
12
- runs-on: ubuntu-latest
13
- steps:
14
- - name: Setup Python
15
- uses: actions/setup-python@v5
16
- with:
17
- python-version: "3.11"
18
-
19
- - name: Checkout
20
- uses: actions/checkout@v4
21
-
22
- - name: Build and Test
23
- run: |
24
- sudo apt-get update
25
- sudo apt-get install libxml2-dev libxslt1-dev llvm-14-dev
26
- python -m pip install --upgrade pip
27
- python -m pip install .[test]
28
- python -m pytest . --cov --cov-report xml --cov-config pyproject.toml
29
-
30
- build-python312:
31
- runs-on: ubuntu-latest
32
- steps:
33
- - name: Setup Python
34
- uses: actions/setup-python@v5
35
- with:
36
- python-version: "3.12"
37
-
38
- - name: Checkout
39
- uses: actions/checkout@v4
40
-
41
- - name: Build and Test
42
- run: |
43
- sudo apt-get update
44
- sudo apt-get install libxml2-dev libxslt1-dev llvm-14-dev
45
- python -m pip install --upgrade pip
46
- python -m pip install .[test]
47
- python -m pytest . --cov --cov-report xml --cov-config pyproject.toml
48
-
49
- build-python313:
50
- runs-on: ubuntu-latest
51
- steps:
52
- - name: Setup Python
53
- uses: actions/setup-python@v5
54
- with:
55
- python-version: "3.13"
56
-
57
- - name: Checkout
58
- uses: actions/checkout@v4
59
-
60
- - name: Build and Test
61
- run: |
62
- sudo apt-get update
63
- sudo apt-get install libxml2-dev libxslt1-dev llvm-14-dev
64
- python -m pip install --upgrade pip
65
- python -m pip install .[test]
66
- python -m pytest . --cov --cov-report xml --cov-config pyproject.toml