Skip to content

Commit

Permalink
Drop support for python 3.9 (#477)
Browse files Browse the repository at this point in the history
Albrja/mic-5575/drop support for python 3.9

Drop support for python 3.9
- *Category*: Feature
- *JIRA issue*: [MIC-5575](https://jira.ihme.washington.edu/browse/MIC-5575)

-drop support for python 3.9
  • Loading branch information
albrja authored Nov 14, 2024
1 parent 1623dfb commit db92ce8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 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.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**1.2.0 - 11/14/24**

- Drop support for Python 3.9

**1.1.1 - 06/17/24**

- Hotfix pin numpy below 2.0
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pseudopeople is a Python package that generates realistic simulated data about a
fictional United States population, designed for use in testing entity resolution
(record linkage) methods or other data science algorithms at scale.

**pseudopeople requires Python 3.8-3.11 to run**
**pseudopeople requires Python 3.10-3.11 to run**

You can install pseudopeople from PyPI with pip:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from packaging.version import parse
from setuptools import find_packages, setup

min_version, max_version = ("3.9", "3.11")
min_version, max_version = ("3.10", "3.11")

min_version = parse(min_version)
max_version = parse(max_version)
Expand Down

0 comments on commit db92ce8

Please sign in to comment.