Skip to content

Commit

Permalink
Remove py37 and py38 support
Browse files Browse the repository at this point in the history
  • Loading branch information
pogzyb committed Feb 9, 2024
1 parent b70460a commit f6a7748
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- ubuntu-latest
- macos-latest
- windows-latest
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ classifiers =
Topic :: Security
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Expand All @@ -28,7 +26,7 @@ classifiers =
[options]
package_dir = asyncwhois
packages = find:
python_requires = >=3.7
python_requires = >=3.9

[options.packages.find]
where = asyncwhois
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ def get_version(location: str) -> str:
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -51,5 +49,5 @@ def get_version(location: str) -> str:
url="https://github.com/pogzyb/asyncwhois",
packages=["asyncwhois"],
package_dir={"asyncwhois": "asyncwhois"},
python_requires=">=3.7",
python_requires=">=3.9",
)

0 comments on commit f6a7748

Please sign in to comment.