Skip to content

Commit 8c8b355

Browse files
authored
chore: move rdflib to semantics group
2 parents 4bccfcf + 81aaa8a commit 8c8b355

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
run: |
106106
python -m pip install --upgrade pip
107107
pip install setuptools wheel
108-
pip install . # Install current package
108+
pip install .[semantics] # Install current package
109109
pip install pytest
110110
if [[ "${{ matrix.run_coverage }}" == "true" ]]; then
111111
pip install coverage coverage-badge

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
stages:
2-
- test
2+
# - test
33
- doc
44
- code_quality
55
- build
@@ -37,8 +37,8 @@ include:
3737
#- project: 'EBC/EBC_all/gitlab_ci/fiware_templates'
3838
# file: 'unittest_fiware/fiware_tests.gitlab-ci.yml'
3939
# The new template to test coverage in an all-in-one pipeline
40-
- project: 'EBC/EBC_all/gitlab_ci/fiware_templates'
41-
file: 'unittest_fiware/fiware_tests_coverage.gitlab-ci.yml'
40+
#- project: 'EBC/EBC_all/gitlab_ci/fiware_templates'
41+
# file: 'unittest_fiware/fiware_tests_coverage.gitlab-ci.yml'
4242
- project: 'EBC/EBC_all/gitlab_ci/templates'
4343
file: 'python/pypi-release/release.gitlab-ci.yml'
4444
- project: 'EBC/EBC_all/gitlab_ci/templates'

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"pydantic-settings>=2.0.0,<2.3.0",
1919
"geojson_pydantic~=1.0.2",
2020
"stringcase>=1.2.0",
21-
"rdflib>=6.0.0,<=6.1.1",
2221
"regex~=2023.10.3",
2322
"requests~=2.32.0",
2423
"rapidfuzz~=3.4.0",
@@ -83,7 +82,7 @@ def get_version():
8382
# optional modules
8483
extras_require={
8584
"development": ["pre-commit~=4.0.1"],
86-
"semantics": ["igraph~=0.11.2"],
85+
"semantics": ["igraph~=0.11.2", "rdflib>=6.0.0,<=6.1.1"],
8786
"tutorials": ["plotly==5.24.1", "matplotlib~=3.4.3"],
8887
":python_version < '3.9'": ["pandas~=1.3.5"],
8988
":python_version >= '3.9'": ["pandas>=2.1.4,<2.4.0"],

0 commit comments

Comments
 (0)