Skip to content
Snippets Groups Projects
Commit 214982c7 authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

MAINT: Remove support for Python 3.7

parent d17a6669
No related branches found
No related tags found
2 merge requests!100WIP: Filling XLSX: Seems to be working.,!96MAINT: REmove Python 3.7
Pipeline #49822 passed
...@@ -134,22 +134,16 @@ unittest_py39: ...@@ -134,22 +134,16 @@ unittest_py39:
- python3 -c "import linkahead; print('LinkAhead Version:', linkahead.__version__)" - python3 -c "import linkahead; print('LinkAhead Version:', linkahead.__version__)"
- tox - tox
unittest_py37: unittest_py38:
tags: [docker] tags: [docker]
stage: unittest stage: unittest
image: python:3.7 image: python:3.8
script: &python_test_script script: &python_test_script
- pip install nose pandas pytest pytest-cov gitignore-parser openpyxl>=3.0.7 xlrd==1.2 h5py - pip install pynose pandas pytest pytest-cov gitignore-parser openpyxl>=3.0.7 xlrd==1.2 h5py
- pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev - pip install git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev
- pip install . - pip install .
- pytest --cov=caosadvancedtools unittests - pytest --cov=caosadvancedtools unittests
unittest_py38:
tags: [docker]
stage: unittest
image: python:3.8
script: *python_test_script
unittest_py310: unittest_py310:
tags: [docker] tags: [docker]
stage: unittest stage: unittest
......
...@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* The deprecated `parent` keyword from the YAML datamodel specification. Use * The deprecated `parent` keyword from the YAML datamodel specification. Use
`inherit_from_{obligatory|recommended|suggested}` instead. `inherit_from_{obligatory|recommended|suggested}` instead.
* Support for Python 3.7
### Fixed ### ### Fixed ###
......
...@@ -154,7 +154,7 @@ def setup_package(): ...@@ -154,7 +154,7 @@ def setup_package():
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
author='Henrik tom Wörden', author='Henrik tom Wörden',
author_email='h.tomwoerden@indiscale.com', author_email='h.tomwoerden@indiscale.com',
python_requires='>=3.7', python_requires='>=3.8',
install_requires=["linkahead>=0.13.1", install_requires=["linkahead>=0.13.1",
"jsonref", "jsonref",
"jsonschema[format]>=4.4.0", "jsonschema[format]>=4.4.0",
......
[tox] [tox]
envlist=py37, py38, py39, py310, py311 envlist=py38, py39, py310, py311
skip_missing_interpreters = true skip_missing_interpreters = true
[testenv] [testenv]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment