Skip to content
Snippets Groups Projects
Commit a7acbd8e authored by Martin Bergemann's avatar Martin Bergemann :speech_balloon:
Browse files

Support python version >= 3.6

parent 6e3ce3d7
No related branches found
No related tags found
1 merge request!4Tests
Pipeline #19051 failed
......@@ -16,19 +16,10 @@ lint:
- black --check src
- pylint --fail-under 8.5 src/rechunk_data/__init__.py
test_35:
<< : *py_test
before_script:
- conda create -q -n test python=3.5 pip -y
- conda run -n test python -m pip install .[test]
script:
- conda run -n test pytest -vv
test_36:
<< : *py_test
before_script:
- conda create -q -n test python=3.6 pip -y
- /tmp/test/python -m pip install .[test]
- conda run -n test python -m pip install .[test]
script:
- conda run -n test pytest -vv
......@@ -36,8 +27,7 @@ test_36:
test_37:
<< : *py_test
before_script:
- conda create -q -n test python=3.7 pip
- conda create -q -p /tmp/test python=3.10 pip -y
- conda create -q -n test python=3.7 pip -y
- conda run -n test python -m pip install .[test]
script:
- conda run -n test pytest -vv
......@@ -46,7 +36,6 @@ test_38:
<< : *py_test
before_script:
- conda create -q -n test python=3.8 pip
- conda create -q -p /tmp/test python=3.10 pip -y
- conda run -n test python -m pip install .[test]
script:
- conda run -n test pytest -vv
......@@ -55,7 +44,6 @@ test_39:
<< : *py_test
before_script:
- conda create -q -n test python=3.10 pip -y
- /tmp/test/python -m pip install .[test]
- conda run -n test python -m pip install .[test]
script:
- conda run -n test pytest -vv
......
......@@ -53,7 +53,7 @@ setup(
"types-mock",
],
},
python_requires=">=3.5",
python_requires=">=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
......
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