Skip to content

Commit

Permalink
require py3.9, because 3.8 is about to go EOL, use path separator
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Sep 26, 2024
1 parent ca9efd6 commit c3f8783
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.5.10"
description = "Parse US addresses using conditional random fields"
readme = "README.md"
license = {text = "MIT License", url = "http://www.opensource.org/licenses/mit-license.php"}
requires-python = ">=3.7"
requires-python = ">=3.9"
dependencies = [
"python-crfsuite>=0.7",
"probableparsing"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def run(self):
PYTHONPATH = os.environ.get("PYTHONPATH", "")
subprocess.run(
["parserator", "train", "training/labeled.xml", "usaddress"],
env=dict(os.environ, PYTHONPATH=f".:{PYTHONPATH}"),
env=dict(os.environ, PYTHONPATH=f".{os.pathsep}{PYTHONPATH}"),
)


Expand Down

0 comments on commit c3f8783

Please sign in to comment.