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

MAINT: Remove support for Python 3.7

parent ffe438d8
Branches
Tags
2 merge requests!143Release 0.15.0,!136Remove Python 3.7
Pipeline #49730 passed with warnings
This commit is part of merge request !136. Comments created here will be created in the context of that merge request.
......@@ -62,11 +62,11 @@ mypy:
allow_failure: true
# run unit tests
unittest_py3.7:
unittest_py3.8:
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.7
image: python:3.8
script: &python_test_script
# Python docker has problems with tox and pip so use plain pytest here
- touch ~/.pylinkahead.ini
......@@ -74,13 +74,6 @@ unittest_py3.7:
- pip install .
- python -m pytest unittests
unittest_py3.8:
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.8
script: *python_test_script
# This needs to be changed once Python 3.9 isn't the standard Python in Debian
# anymore.
unittest_py3.9:
......
......@@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed ###
* Support for Python 3.7
### Fixed ###
* [#104](https://gitlab.com/linkahead/linkahead-pylib/-/issues/104) Selecting
......
......@@ -179,7 +179,7 @@ def setup_package():
"Topic :: Scientific/Engineering :: Information Analysis",
],
packages=find_packages('src'),
python_requires='>=3.7',
python_requires='>=3.8',
package_dir={'': 'src'},
install_requires=['lxml>=4.6.3',
"requests[socks]>=2.26",
......
[tox]
envlist=py37, py38, py39, py310, py311, py312, py313
envlist=py38, py39, py310, py311, py312, py313
skip_missing_interpreters = true
[testenv]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment