Skip to content

Commit

Permalink
Drop support of py36 and py37
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien-berchet committed Nov 29, 2021
1 parent b8e0b79 commit 62ed321
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 13 deletions.
1 change: 0 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ include:
file:
- /ci/jobs/auto-release.yml
- /ci/lib/pytest-template.yml
- /ci/jobs/py37.yml
- /ci/jobs/py38.yml
- /ci/jobs/coverage.yml

Expand Down
6 changes: 0 additions & 6 deletions .gitreview

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# BLACK
[tool.black]
line-length = 100
target-version = ["py36"]
target-version = ["py38"]

# PYLINT
[tool.pylint.messages-control]
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
license="BBP-internal-confidential",
packages=find_packages("src", exclude=["tests"]),
package_dir={"": "src"},
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=reqs,
test_requires=test_reqs,
extras_require={"docs": doc_reqs, "test": test_reqs},
Expand All @@ -52,9 +52,8 @@
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package version."""
VERSION = "0.1.0.dev1"
VERSION = "0.1.0.dev2"
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ commands =
twine check {envtmpdir}/dist/*

[testenv:lint]
basepython=python3.6
basepython=python3.8
deps =
black==21.5b0
pycodestyle
Expand Down

0 comments on commit 62ed321

Please sign in to comment.