Skip to content

Commit

Permalink
Remove support for Python 3.6 and 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Feb 2, 2024
1 parent 6731560 commit 94a1ba0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Expand Up @@ -31,10 +31,6 @@ jobs:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.11" ]
include:
- python-version: "3.6"
os: ubuntu-20.04
- python-version: "3.7"
os: ubuntu-latest
- python-version: "3.8"
os: ubuntu-latest
- python-version: "3.9"
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Expand Up @@ -3,11 +3,16 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/alexdlaird/pyngrok/compare/7.0.5...HEAD)
## [Unreleased](https://github.com/alexdlaird/pyngrok/compare/7.1.0...HEAD)

## [7.1.0](https://github.com/alexdlaird/pyngrok/compare/7.0.5...7.1.0) - 2023-02-02
### Added
- Documentation improvements.
- Test improvements.

### Removed
- Support for 3.6 and 3.7.

## [7.0.5](https://github.com/alexdlaird/pyngrok/compare/7.0.4...7.0.5) - 2023-12-30
### Fixed
- Test improvements, suite now respects `NGROK_AUTHTOKEN` for all necessary tests (skipped if not set, rather than tests failing).
Expand Down
4 changes: 2 additions & 2 deletions pyngrok/ngrok.py
Expand Up @@ -17,8 +17,8 @@
from pyngrok.process import NgrokProcess

__author__ = "Alex Laird"
__copyright__ = "Copyright 2023, Alex Laird"
__version__ = "7.0.5"
__copyright__ = "Copyright 2024, Alex Laird"
__version__ = "7.1.0"

logger = logging.getLogger(__name__)

Expand Down
8 changes: 3 additions & 5 deletions setup.py
Expand Up @@ -3,8 +3,8 @@
from setuptools import setup

__author__ = "Alex Laird"
__copyright__ = "Copyright 2023, Alex Laird"
__version__ = "7.0.5"
__copyright__ = "Copyright 2024, Alex Laird"
__version__ = "7.1.0"

name = "pyngrok" if os.environ.get("BUILD_PACKAGE_AS_NGROK", "False") != "True" else "ngrok"

Expand All @@ -15,7 +15,7 @@
name=name,
version=__version__,
packages=["pyngrok"],
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=[
"PyYAML"
],
Expand Down Expand Up @@ -55,8 +55,6 @@
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 94a1ba0

Please sign in to comment.