Skip to content

Commit

Permalink
feat: deprecating python 3.7 due to end of life
Browse files Browse the repository at this point in the history
  • Loading branch information
jhgjeraker committed Aug 3, 2023
1 parent 7bd8833 commit 2cbbd23
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
platform: ["ubuntu-latest"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand All @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
platform: ["ubuntu-latest"]
python-version: ["3.10"]
python-version: ["3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: '3.11'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The project adheres to [semantic versioning](https://semver.org/).
# Unreleased
### Changed
- Bumped pandas extras dependency to major 2.0.
- Python 3.7 is end-of-life and has been deprecated.

# v1.5.6
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pip install .

### Requirements

- Python 3.7, 3.8, 3.9, 3.10, and 3.11
- Python 3.8, 3.9, 3.10, and 3.11

## Authentication

Expand Down
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Global options:

[mypy]
python_version = 3.7
python_version = 3.8

disallow_any_unimported = True

Expand Down
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,14 @@ classifiers =
License :: OSI Approved :: MIT License
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
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
Operating System :: OS Independent

[options]
python_requires = >=3.7
python_requires = >=3.8
install_requires =
requests >= 2.19.0, < 3.0.0
pyjwt >= 2.0.0, < 3.0.0
Expand All @@ -57,4 +55,4 @@ dev =
flake8>=3.9.0

extra =
pandas >= 1.3.5, < 3.0.0
pandas >= 2.0.0, < 3.0.0

0 comments on commit 2cbbd23

Please sign in to comment.