From 7ab71489289997d44265820635ebc56f5292d663 Mon Sep 17 00:00:00 2001 From: Tony Locke Date: Sat, 13 Apr 2024 13:41:03 +0100 Subject: [PATCH] Add 'author' to pyproject Also upgrade scramp to 1.4.5 --- .github/workflows/test.yml | 4 ++-- pyproject.toml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cfc434f..c06197a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -129,7 +129,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install dependencies @@ -163,7 +163,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install dependencies diff --git a/pyproject.toml b/pyproject.toml index 619fc99..c3db28f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,7 @@ build-backend = "hatchling.build" [project] name = "pg8000" +authors = [{name = "The Contributors"}] description = "PostgreSQL interface library" readme = "README.md" requires-python = ">=3.8" @@ -30,7 +31,7 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ - "scramp >= 1.4.4", + "scramp >= 1.4.5", 'python-dateutil >= 2.8.2', ] dynamic = ["version"]