Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,23 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if (Test-Path requirements.txt) { python -m pip install -r requirements.txt }
python -m pip install ".[test]" flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
# - name: Test with pytest
# run: |
# pytest TODO need to turn off my env var first
- name: Test with pytest
run: python -m pytest -m "not integration"
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
[0.1.5] - 2026-08-05
--------------------

**Changed**
- Corrected the supported Python range to 3.9 through 3.14
- Removed the NumPy 1.x restriction to support NumPy 2
- Made CI install ESApp and run the offline test suite across every supported Python version

[0.1.4] - 2026-06-05
--------------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.4
0.1.5
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "esapp"
dynamic = ["version"]
description = "ESA++ is an open-source power-grid toolkit."
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.9"
license = {text = "Apache License 2.0"}
authors = [
{name = "Adam Birchfield", email = "abirchfield@tamu.edu"},
Expand All @@ -31,10 +31,12 @@ keywords = [
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
"Development Status :: 5 - Production/Stable",
Expand All @@ -49,7 +51,7 @@ classifiers = [
]
dependencies = [
"pandas",
"numpy<2.0",
"numpy",
"scipy",
"pywin32; sys_platform == 'win32'",
]
Expand Down
Loading