Skip to content
Snippets Groups Projects
Commit 5aa45f4e authored by Daniel Hornung's avatar Daniel Hornung
Browse files

Merge branch 'f-remove-python37' into 'dev'

MAINT: REmove Python 3.7

See merge request !96
parents d17a6669 214982c7
No related branches found
No related tags found
2 merge requests!100WIP: Filling XLSX: Seems to be working.,!96MAINT: REmove Python 3.7
Pipeline #49881 passed
......@@ -134,22 +134,16 @@ unittest_py39:
- python3 -c "import linkahead; print('LinkAhead Version:', linkahead.__version__)"
- tox
unittest_py37:
unittest_py38:
tags: [docker]
stage: unittest
image: python:3.7
image: python:3.8
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 .
- pytest --cov=caosadvancedtools unittests
unittest_py38:
tags: [docker]
stage: unittest
image: python:3.8
script: *python_test_script
unittest_py310:
tags: [docker]
stage: unittest
......
......@@ -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
`inherit_from_{obligatory|recommended|suggested}` instead.
* Support for Python 3.7
### Fixed ###
......
......@@ -154,7 +154,7 @@ def setup_package():
long_description_content_type="text/markdown",
author='Henrik tom Wörden',
author_email='h.tomwoerden@indiscale.com',
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=["linkahead>=0.13.1",
"jsonref",
"jsonschema[format]>=4.4.0",
......
[tox]
envlist=py37, py38, py39, py310, py311
envlist=py38, py39, py310, py311
skip_missing_interpreters = true
[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