From c6b0451b2324737b82672dcf0a2a80e7e02a7cb6 Mon Sep 17 00:00:00 2001 From: Ben Pearman Date: Wed, 20 Mar 2024 15:19:47 +1300 Subject: [PATCH] Dropping python versions below 3.7 --- .buildkite/pipeline.yml | 24 ------------------------ setup.py | 5 +---- 2 files changed, 1 insertion(+), 28 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index a1045a6..38abca7 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -39,30 +39,6 @@ steps: shell: false artifact_paths: "./pytest*.xml" - - label: ":pytest: run tests (:python: 3.6)" - command: - - ./.buildkite/test.sh - plugins: - artifacts#v1.2.0: - download: "dist/*.whl" - docker#v1.4.0: - image: "python:3.6-alpine" - workdir: /app - shell: false - artifact_paths: "./pytest*.xml" - - - label: ":pytest: run tests (:python: 3.5)" - command: - - ./.buildkite/test.sh - plugins: - artifacts#v1.2.0: - download: "dist/*.whl" - docker#v1.4.0: - image: "python:3.5-alpine" - workdir: /app - shell: false - artifact_paths: "./pytest*.xml" - # Record test failures - wait: ~ continue_on_failure: true diff --git a/setup.py b/setup.py index 279664f..275de93 100755 --- a/setup.py +++ b/setup.py @@ -37,15 +37,12 @@ "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Scientific/Engineering :: GIS", ], - python_requires=">=3.5", + python_requires=">=3.7", install_requires=[ "python-dateutil>=2,<3", "pytz",