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