Skip to content

Commit e68536c

Browse files
authored
fix: drop support for python3.6 (#505)
1 parent ac4edeb commit e68536c

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
python-version: [3.6, "3.10"]
35+
python-version: [3.7, "3.10"]
3636
os: [ubuntu-latest, windows-latest]
3737
steps:
3838
- name: Checkout the repo

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ To run the entire tests (units, integraton and end-to-end):
7575
you, please `install <https://pandoc.org/installing.html>`_ pandoc and try
7676
again.
7777

78-
* eodag is tested against python versions 3.6, 3.7, 3.8, 3.9 and 3.10. Ensure you have
78+
* eodag is tested against python versions 3.7, 3.8, 3.9 and 3.10. Ensure you have
7979
these versions installed before you run tox. You can use
8080
`pyenv <https://github.com/pyenv/pyenv>`_ to manage many different versions
8181
of python

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2,<7"]
2+
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.setuptools_scm]

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ classifiers =
2222
Operating System :: POSIX :: Linux
2323
Programming Language :: Python
2424
Programming Language :: Python :: 3
25-
Programming Language :: Python :: 3.6
2625
Programming Language :: Python :: 3.7
2726
Programming Language :: Python :: 3.8
2827
Programming Language :: Python :: 3.9

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ def _get_fallback_version():
3636
if __name__ == "__main__":
3737
setuptools.setup(
3838
use_scm_version={"fallback_version": _get_fallback_version()},
39-
setup_requires=["setuptools_scm<7"],
39+
setup_requires=["setuptools_scm"],
4040
)

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@
1616
# See the License for the specific language governing permissions and
1717
# limitations under the License.
1818
[tox]
19-
envlist = py36, py37, py38, py39, py310, docs, pypi, linters
19+
envlist = py37, py38, py39, py310, docs, pypi, linters
2020
skipdist = true
2121

2222
# Mapping required by tox-gh-actions, only used in CI
2323
[gh-actions]
2424
python =
25-
3.6: py36
2625
3.7: py37
2726
3.8: py38
2827
3.9: py39

0 commit comments

Comments
 (0)