Skip to content

Commit 01523f9

Browse files
committed
Remove setuptools workarounds.
1 parent 2ea9d41 commit 01523f9

File tree

5 files changed

+4
-9
lines changed

5 files changed

+4
-9
lines changed

.github/workflows/run-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
- name: Check style
5252
if: matrix.os == 'ubuntu-22.04'
5353
run: |
54-
SETUPTOOLS_USE_DISTUTILS=stdlib python3 -m tox -v -e style
54+
python3 -m tox -v -e style
5555
5656
- name: Run tests
5757
run: |
5858
python3 -c "import gi"
59-
SETUPTOOLS_USE_DISTUTILS=stdlib python3 -m tox -v -e py
59+
python3 -m tox -v -e py
6060
python3 -m pip install .

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# 2.29.3 (2023-01-16)
2+
* Make all menu items translatable (Jendrik Seipp).
23
* Packaging: install translation files under <prefix>/share/locale again (#666, Jendrik Seipp).
34

45
# 2.29.2 (2023-01-13)

appveyor.yml

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ build_script:
6363
- move enchant C:\gtk\share
6464

6565
# Run tests.
66-
- set SETUPTOOLS_USE_DISTUTILS=stdlib
6766
- "%PYTHON% -m tox -v -e py"
6867

6968
- cd win

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools==59.6.0"]
2+
requires = ["setuptools"]
33
build-backend = "setuptools.build_meta"
44

55
# NOTE: you have to use single-quoted strings in TOML for regular expressions.

tox.ini

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
[tox]
22
envlist = py3, style
33
basepython = python3
4-
requires =
5-
setuptools==59.6.0
6-
tox==3.27.1
7-
# Hopefully, we can get rid of this environment variable in the future.
8-
passenv = SETUPTOOLS_USE_DISTUTILS
94

105
[testenv]
116
deps =

0 commit comments

Comments
 (0)