Skip to content

Commit

Permalink
Dropping python versions below 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
benpearman committed Mar 20, 2024
1 parent 33d215b commit c6b0451
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 28 deletions.
24 changes: 0 additions & 24 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c6b0451

Please sign in to comment.