iker-python-setup 1.0.14__tar.gz → 1.0.16__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.16/.github/workflows/pr.yml +31 -0
  2. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/.github/workflows/push.yml +4 -3
  3. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/PKG-INFO +2 -2
  4. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/src/iker_python_setup.egg-info/PKG-INFO +2 -2
  5. iker_python_setup-1.0.14/.github/workflows/pr.yml +0 -63
  6. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/.editorconfig +0 -0
  7. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/.gitignore +0 -0
  8. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/MANIFEST.in +0 -0
  9. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/README.md +0 -0
  10. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/VERSION +0 -0
  11. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/pyproject.toml +0 -0
  12. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/resources/unittest/setup/VERSION +0 -0
  13. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/resources/unittest/setup/VERSION_EXCESSIVE_PATCH +0 -0
  14. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/resources/unittest/setup/VERSION_NO_PATCH +0 -0
  15. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/setup.cfg +0 -0
  16. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/setup.py +0 -0
  17. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/src/iker/setup/__init__.py +0 -0
  18. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/src/iker_python_setup.egg-info/SOURCES.txt +0 -0
  19. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/src/iker_python_setup.egg-info/dependency_links.txt +0 -0
  20. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/src/iker_python_setup.egg-info/not-zip-safe +0 -0
  21. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/src/iker_python_setup.egg-info/requires.txt +0 -0
  22. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/src/iker_python_setup.egg-info/top_level.txt +0 -0
  23. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/test/iker_test.py +0 -0
  24. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/test/iker_tests/__init__.py +0 -0
  25. {iker_python_setup-1.0.14 → iker_python_setup-1.0.16}/test/iker_tests/setup_test.py +0 -0
@@ -0,0 +1,31 @@
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
+ strategy:
14
+ matrix:
15
+ python-version: [ "3.11", "3.12", "3.13" ]
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+
20
+ - name: Setup Python
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version: "${{ matrix.python-version }}"
24
+
25
+ - name: Build and Test
26
+ run: |
27
+ sudo apt-get update
28
+ sudo apt-get install libxml2-dev libxslt1-dev llvm-14-dev
29
+ python -m pip install --upgrade pip
30
+ python -m pip install .[test]
31
+ python -m pytest . --cov --cov-report xml --cov-config pyproject.toml
@@ -11,16 +11,17 @@ jobs:
11
11
  push:
12
12
  runs-on: ubuntu-latest
13
13
  steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
+
14
17
  - name: Setup Python
15
18
  uses: actions/setup-python@v5
16
19
  with:
17
20
  python-version: "3.13"
18
21
 
19
- - name: Checkout
20
- uses: actions/checkout@v4
21
-
22
22
  - name: Build and Upload
23
23
  run: |
24
+ sudo apt-get update
24
25
  sudo apt-get install libxml2-dev libxslt1-dev llvm-14-dev
25
26
  python -m pip install --upgrade pip build twine
26
27
  python -m pip install .[test]
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: iker-python-setup
3
- Version: 1.0.14
3
+ Version: 1.0.16
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Python :: 3.11
6
6
  Classifier: Programming Language :: Python :: 3.12
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: iker-python-setup
3
- Version: 1.0.14
3
+ Version: 1.0.16
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Programming Language :: Python :: 3.11
6
6
  Classifier: Programming Language :: Python :: 3.12
@@ -1,63 +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 install libxml2-dev libxslt1-dev llvm-14-dev
25
- python -m pip install --upgrade pip
26
- python -m pip install .[test]
27
- python -m pytest . --cov --cov-report xml --cov-config pyproject.toml
28
-
29
- build-python312:
30
- runs-on: ubuntu-latest
31
- steps:
32
- - name: Setup Python
33
- uses: actions/setup-python@v5
34
- with:
35
- python-version: "3.12"
36
-
37
- - name: Checkout
38
- uses: actions/checkout@v4
39
-
40
- - name: Build and Test
41
- run: |
42
- sudo apt-get install libxml2-dev libxslt1-dev llvm-14-dev
43
- python -m pip install --upgrade pip
44
- python -m pip install .[test]
45
- python -m pytest . --cov --cov-report xml --cov-config pyproject.toml
46
-
47
- build-python313:
48
- runs-on: ubuntu-latest
49
- steps:
50
- - name: Setup Python
51
- uses: actions/setup-python@v5
52
- with:
53
- python-version: "3.13"
54
-
55
- - name: Checkout
56
- uses: actions/checkout@v4
57
-
58
- - name: Build and Test
59
- run: |
60
- sudo apt-get install libxml2-dev libxslt1-dev llvm-14-dev
61
- python -m pip install --upgrade pip
62
- python -m pip install .[test]
63
- python -m pytest . --cov --cov-report xml --cov-config pyproject.toml