Skip to content

Commit db92ce8

Browse files
authored
Drop support for python 3.9 (#477)
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
1 parent 1623dfb commit db92ce8

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11"]
18+
python-version: ["3.10", "3.11"]
1919
steps:
2020
- uses: actions/checkout@v3
2121
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**1.2.0 - 11/14/24**
2+
3+
- Drop support for Python 3.9
4+
15
**1.1.1 - 06/17/24**
26

37
- Hotfix pin numpy below 2.0

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pseudopeople is a Python package that generates realistic simulated data about a
66
fictional United States population, designed for use in testing entity resolution
77
(record linkage) methods or other data science algorithms at scale.
88

9-
**pseudopeople requires Python 3.8-3.11 to run**
9+
**pseudopeople requires Python 3.10-3.11 to run**
1010

1111
You can install pseudopeople from PyPI with pip:
1212

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from packaging.version import parse
55
from setuptools import find_packages, setup
66

7-
min_version, max_version = ("3.9", "3.11")
7+
min_version, max_version = ("3.10", "3.11")
88

99
min_version = parse(min_version)
1010
max_version = parse(max_version)

0 commit comments

Comments
 (0)