From 78960e885f4c4e48c12e9b1614a19bfda8990f4a Mon Sep 17 00:00:00 2001 From: "Michael J. Sullivan" Date: Tue, 29 Apr 2025 12:28:55 -0700 Subject: [PATCH 1/2] gel-python 3.1.0 Changes ======= * Enable reflecting of `ext` types. (by @vpetrovykh in 80a6b520) * Enable multiple modules for SQLModel reflection. (by @vpetrovykh in 8a7fdb5f) * Update SQLModel generator. (by @vpetrovykh in 1d1c9378) * Fix an issue with generating SQLModel with array props. (by @vpetrovykh in 2acffba8) * Add encode and decode for array of array. (by @dnwpark in cc104634 for #594) * Improve nested array test skipping (by @elprans in 4dd19cb6) * Fix server binary detection in WSL (by @elprans in 0d606623 for #601) * Drop Python 3.8 support (by @elprans in 1209adc7 for #600) * Fix reused SSLContext ALPN bug (by @fantix in 88740605 for #602) * Pin Django to ~5.1 (by @msullivan in dff941eb for #610) * Make IsolationLevel enum values match the server names (by @msullivan in 7d2a4012 for #611) * Make TransactionOptions default to optional (by @msullivan in 553e3ce8 for #612) * Implement PreferRepeatableRead, apply TransactionOptions to config state (by @msullivan in 46dae11c for #609) * Support PreferRepeatableRead on explicit transactions by retrying (by @msullivan in e1e25c04 for #616) * Make EnumValue support comparison to strings (by @msullivan in bb93ed75 for #615) * Update AI RAG response parsing. (by @dnwpark in 9060b047 for #618) --- gel/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gel/_version.py b/gel/_version.py index ad6c6f0e3..aaefa6df8 100644 --- a/gel/_version.py +++ b/gel/_version.py @@ -28,4 +28,4 @@ # supported platforms, publish the packages on PyPI, merge the PR # to the target branch, create a Git tag pointing to the commit. -__version__ = "3.1.0b1" +__version__ = "3.1.0" From 3a1b45a6a55ca1acf06985d2eab130c43f6788c7 Mon Sep 17 00:00:00 2001 From: "Michael J. Sullivan" Date: Tue, 29 Apr 2025 12:50:58 -0700 Subject: [PATCH 2/2] Try to fix sdist build --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 803899552..0b4096222 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,8 +66,8 @@ jobs: - name: Build source distribution run: | - pip install -U setuptools wheel pip - python setup.py sdist + pip install -U setuptools wheel pip build + python -m build --sdist - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 with: