-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drop Python 3.8/3.9, unpin old dependencies (#941)
* drop Python 3.8/3.9, unpin old dependencies
- Loading branch information
1 parent
6976603
commit 4379f87
Showing
4 changed files
with
10 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
-r requirements.txt | ||
flake8 | ||
pytest>=3.8 | ||
pytest | ||
pytest-cov | ||
Pillow | ||
tox | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
dataclasses; python_version < '3.7' | ||
lxml | ||
python-dateutil>=1.5 | ||
python-dateutil | ||
pytz | ||
pyyaml | ||
requests>=1.0 | ||
requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# ============================================================================= | ||
# Copyright (c) 2023 Tom Kralidis | ||
# Copyright (c) 2024 Tom Kralidis | ||
# | ||
# Author: Tom Kralidis <[email protected]> | ||
# | ||
|
@@ -89,7 +89,7 @@ def get_package_version(): | |
maintainer_email='[email protected]', | ||
url='https://owslib.readthedocs.io', | ||
install_requires=reqs, | ||
python_requires='>=3.6', | ||
python_requires='>=3.10', | ||
cmdclass={'test': PyTest}, | ||
packages=find_packages(exclude=["docs", "etc", "examples", "tests"]), | ||
classifiers=[ | ||
|
@@ -100,10 +100,6 @@ def get_package_version(): | |
'Natural Language :: English', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Topic :: Scientific/Engineering :: GIS', | ||
'Topic :: Scientific/Engineering :: GIS' | ||
] | ||
) |