oscar-python 1.3.3b3__tar.gz → 1.3.3b4__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 (39) hide show
  1. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/.github/workflows/release-build.yaml +12 -2
  2. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/.github/workflows/tests.yaml +3 -1
  3. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/PKG-INFO +8 -8
  4. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python.egg-info/PKG-INFO +8 -8
  5. oscar_python-1.3.3b4/oscar_python.egg-info/requires.txt +10 -0
  6. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/pyproject.toml +7 -7
  7. oscar_python-1.3.3b3/oscar_python.egg-info/requires.txt +0 -10
  8. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/.gitignore +0 -0
  9. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/LICENSE +0 -0
  10. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/README.md +0 -0
  11. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/jupyter_example/oscar_notebook.ipynb +0 -0
  12. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/jupyter_example/services/cowsay_example/cowsay.yaml +0 -0
  13. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/jupyter_example/services/cowsay_example/script.sh +0 -0
  14. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/__init__.py +0 -0
  15. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/_oidc.py +0 -0
  16. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/_providers/_minio.py +0 -0
  17. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/_providers/_onedata.py +0 -0
  18. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/_providers/_providers_base.py +0 -0
  19. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/_providers/_s3.py +0 -0
  20. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/_providers/_webdav.py +0 -0
  21. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/_utils.py +0 -0
  22. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/client.py +0 -0
  23. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/client_anon.py +0 -0
  24. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/default_client.py +0 -0
  25. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/local_test.py +0 -0
  26. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python/storage.py +0 -0
  27. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python.egg-info/SOURCES.txt +0 -0
  28. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python.egg-info/dependency_links.txt +0 -0
  29. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/oscar_python.egg-info/top_level.txt +0 -0
  30. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/setup.cfg +0 -0
  31. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/setup.py +0 -0
  32. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/tests/test_client.py +0 -0
  33. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/tests/test_default_client.py +0 -0
  34. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/tests/test_oidc.py +0 -0
  35. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/tests/test_onedata.py +0 -0
  36. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/tests/test_s3.py +0 -0
  37. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/tests/test_storage.py +0 -0
  38. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/tests/test_utils.py +0 -0
  39. {oscar_python-1.3.3b3 → oscar_python-1.3.3b4}/tests/test_webdav.py +0 -0
@@ -13,6 +13,8 @@ permissions:
13
13
  jobs:
14
14
  release-build:
15
15
  runs-on: ubuntu-latest
16
+ outputs:
17
+ version: ${{ steps.get_version.outputs.version }}
16
18
 
17
19
  steps:
18
20
  - name: Checkout
@@ -27,6 +29,14 @@ jobs:
27
29
  with:
28
30
  python-version: "3.12"
29
31
 
32
+ - name: Get version from setuptools-scm
33
+ id: get_version
34
+ run: |
35
+ python -m pip install setuptools-scm
36
+ version=$(python -m setuptools_scm)
37
+ echo "version=$version" >> $GITHUB_OUTPUT
38
+ echo "Package version: $version"
39
+
30
40
  - name: Build release distributions
31
41
  run: |
32
42
  python -m pip install build
@@ -50,8 +60,8 @@ jobs:
50
60
  # For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules
51
61
  environment:
52
62
  name: pypi
53
- # PyPI project URL
54
- url: https://pypi.org/project/oscar-python/${{ github.event.release.name }}
63
+ # PyPI project URL with the exact version (e.g., 1.3.3 or 1.3.3b3)
64
+ url: https://pypi.org/project/oscar-python/${{ needs.release-build.outputs.version }}/
55
65
 
56
66
  steps:
57
67
  - name: Retrieve release distributions
@@ -19,7 +19,9 @@ jobs:
19
19
  python-version: '3.12'
20
20
 
21
21
  - name: Install dependencies
22
- run: python -m pip install pytest pytest-cov webdavclient3 requests boto3 pyyaml aiohttp liboidcagent
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ python -m pip install -e .[dev]
23
25
 
24
26
  - name: Run tests
25
27
  run: python -m pytest tests --cov=oscar_python
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: oscar-python
3
- Version: 1.3.3b3
3
+ Version: 1.3.3b4
4
4
  Summary: Python client for OSCAR clusters
5
5
  Author: GRyCAP - I3M - UPV
6
6
  License: Apache-2.0
@@ -10,15 +10,15 @@ Keywords: oscar,faas,serverless
10
10
  Requires-Python: >=3.8
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
- Requires-Dist: requests>=2.31.0
13
+ Requires-Dist: requests
14
14
  Requires-Dist: webdavclient3>=3.14.6
15
- Requires-Dist: boto3>=1.28.0
16
- Requires-Dist: pyyaml>=6.0
17
- Requires-Dist: aiohttp>=3.9.0
18
- Requires-Dist: liboidcagent>=1.0.0
15
+ Requires-Dist: boto3
16
+ Requires-Dist: pyyaml
17
+ Requires-Dist: aiohttp
18
+ Requires-Dist: liboidcagent
19
19
  Provides-Extra: dev
20
- Requires-Dist: pytest>=7.4.0; extra == "dev"
21
- Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
20
+ Requires-Dist: pytest; extra == "dev"
21
+ Requires-Dist: pytest-cov; extra == "dev"
22
22
  Dynamic: license-file
23
23
 
24
24
  ## Python OSCAR client
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: oscar-python
3
- Version: 1.3.3b3
3
+ Version: 1.3.3b4
4
4
  Summary: Python client for OSCAR clusters
5
5
  Author: GRyCAP - I3M - UPV
6
6
  License: Apache-2.0
@@ -10,15 +10,15 @@ Keywords: oscar,faas,serverless
10
10
  Requires-Python: >=3.8
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
- Requires-Dist: requests>=2.31.0
13
+ Requires-Dist: requests
14
14
  Requires-Dist: webdavclient3>=3.14.6
15
- Requires-Dist: boto3>=1.28.0
16
- Requires-Dist: pyyaml>=6.0
17
- Requires-Dist: aiohttp>=3.9.0
18
- Requires-Dist: liboidcagent>=1.0.0
15
+ Requires-Dist: boto3
16
+ Requires-Dist: pyyaml
17
+ Requires-Dist: aiohttp
18
+ Requires-Dist: liboidcagent
19
19
  Provides-Extra: dev
20
- Requires-Dist: pytest>=7.4.0; extra == "dev"
21
- Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
20
+ Requires-Dist: pytest; extra == "dev"
21
+ Requires-Dist: pytest-cov; extra == "dev"
22
22
  Dynamic: license-file
23
23
 
24
24
  ## Python OSCAR client
@@ -0,0 +1,10 @@
1
+ requests
2
+ webdavclient3>=3.14.6
3
+ boto3
4
+ pyyaml
5
+ aiohttp
6
+ liboidcagent
7
+
8
+ [dev]
9
+ pytest
10
+ pytest-cov
@@ -13,18 +13,18 @@ authors = [{name = "GRyCAP - I3M - UPV"}]
13
13
  keywords = ["oscar", "faas", "serverless"]
14
14
 
15
15
  dependencies = [
16
- "requests>=2.31.0",
16
+ "requests",
17
17
  "webdavclient3>=3.14.6",
18
- "boto3>=1.28.0",
19
- "pyyaml>=6.0",
20
- "aiohttp>=3.9.0",
21
- "liboidcagent>=1.0.0",
18
+ "boto3",
19
+ "pyyaml",
20
+ "aiohttp",
21
+ "liboidcagent",
22
22
  ]
23
23
 
24
24
  [project.optional-dependencies]
25
25
  dev = [
26
- "pytest>=7.4.0",
27
- "pytest-cov>=4.1.0",
26
+ "pytest",
27
+ "pytest-cov",
28
28
  ]
29
29
 
30
30
  [project.urls]
@@ -1,10 +0,0 @@
1
- requests>=2.31.0
2
- webdavclient3>=3.14.6
3
- boto3>=1.28.0
4
- pyyaml>=6.0
5
- aiohttp>=3.9.0
6
- liboidcagent>=1.0.0
7
-
8
- [dev]
9
- pytest>=7.4.0
10
- pytest-cov>=4.1.0
File without changes
File without changes
File without changes
File without changes