From: Bob Halley Date: Wed, 3 Sep 2025 19:51:27 +0000 (-0700) Subject: fix project rename and try again X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=041ecf0a8b9028f0b13931709c93a2728955a3a7;p=thirdparty%2Fdnspython.git fix project rename and try again --- diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7b51f9fe..c48cc203 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,7 +41,7 @@ jobs: with: persist-credentials: false - name: Update project - run: sed -i '' -e 's/"dnspython"/"dnspython_test"/g' pyproject.toml + run: python3 util/make-test-project - name: Set up Python uses: actions/setup-python@v5 with: @@ -57,7 +57,7 @@ jobs: - name: Store the distribution packages uses: actions/upload-artifact@v4 with: - name: python-package-distributions + name: python-test-package-distributions path: dist/ publish-to-testpypi: @@ -77,7 +77,7 @@ jobs: - name: Download all the dists uses: actions/download-artifact@v4 with: - name: python-package-distributions + name: python-test-package-distributions path: dist/ - name: Publish distribution to TestPyPI uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/pyproject.toml b/pyproject.toml index fef9f2cc..afaef597 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["hatchling>=1.21.0"] build-backend = "hatchling.build" [project] -name = "dnspython_test" +name = "dnspython" description = "DNS toolkit" authors = [{ name = "Bob Halley", email = "halley@dnspython.org" }] license = { text = "ISC" }