Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove 37 and add 311 to test #240

Merged
merged 5 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ stages:
- deploy

variables:
EXCLUDE_PYTHON: 311, 312
EXCLUDE_PYTHON: 37
PYTHON_VERSION: "registry.git.rwth-aachen.de/ebc/ebc_all/gitlab_ci/templates:python_3.9"
PAGES_BRANCH: master
PYTHON_PACKAGE_NAME: "filip"
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ stringcase~=1.2.0
paho-mqtt~=1.6.1
datamodel_code_generator[http]~=0.25.0
# tutorials
matplotlib~=3.5.3
matplotlib~=3.5.3; python_version < '3.9'
matplotlib~=3.8.0; python_version >='3.9'
# semantics
rdflib~=6.0.0
# igraph~=0.9.8
# igraph~=0.11.2
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,10 @@
classifiers=['Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
"License :: OSI Approved :: BSD License"],
keywords=['iot', 'fiware', 'semantic'],
packages=setuptools.find_packages(exclude=['tests',
Expand All @@ -61,11 +62,11 @@
setup_requires=SETUP_REQUIRES,
# optional modules
extras_require={
"semantics": ["igraph~=0.9.8"],
"semantics": ["igraph~=0.11.2"],
":python_version < '3.9'": ["pandas~=1.3.5"],
":python_version >= '3.9'": ["pandas~=2.1.4"]
},
install_requires=INSTALL_REQUIRES,
python_requires=">=3.7",
python_requires=">=3.8",

)