Skip to content

Commit

Permalink
Mic 4617/drop 3.8 support (#325)
Browse files Browse the repository at this point in the history
Mic 4617/drop 3.8 support

Drop support for python 3.8
- *Category*: CI
- *JIRA issue*: [MIC-4617](https://jira.ihme.washington.edu/browse/MIC-4617)

-drops support for python 3.8

Testing
All tests pass.
  • Loading branch information
albrja authored Oct 16, 2023
1 parent 2e5b463 commit 5911938
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**0.7.2 - 10/16/23**
- Drop support for python 3.8

**0.7.1 - 09/18/23**
- Improved configuration validation
- Security patch for configuration file loading
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import find_packages, setup

min_version, max_version = ((3, 8), "3.8"), ((3, 11), "3.11")
min_version, max_version = ((3, 9), "3.9"), ((3, 11), "3.11")

if not (min_version[0] <= sys.version_info[:2] <= max_version[0]):
# Python 3.5 does not support f-strings
Expand Down

0 comments on commit 5911938

Please sign in to comment.