Skip to content

Commit

Permalink
- cosmetics: clean up spacing around setuptools version specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Oct 10, 2024
1 parent d345584 commit 210c1a0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/zope/meta/default/tox-testenv.j2
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ wheel_build_env = .pkg
pip_pre = py%(future_python_shortversion)s: true
{% endif %}
deps =
setuptools %(setuptools_version_spec)s
setuptools %(setuptools_version_spec)s
{% for line in testenv_deps %}
%(line)s
{% endfor %}
Expand Down
4 changes: 2 additions & 2 deletions src/zope/meta/shared/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
NEWEST_PYTHON_VERSION = '3.13'
FUTURE_PYTHON_VERSION = '3.14'
PYPY_VERSION = '3.10'
SETUPTOOLS_VERSION_SPEC = '<74'
SETUPTOOLS_VERSION_SPEC = '< 74'
MANYLINUX_PYTHON_VERSION = '3.11'
MANYLINUX_AARCH64 = 'manylinux2014_aarch64'
MANYLINUX_I686 = 'manylinux2014_i686'
MANYLINUX_X86_64 = 'manylinux2014_x86_64'
PYPROJECT_TOML_DEFAULTS = {
'build-system': {
'requires': [f'setuptools{SETUPTOOLS_VERSION_SPEC}'],
'requires': [f'setuptools {SETUPTOOLS_VERSION_SPEC}'],
'build-backend': 'setuptools.build_meta',
},
'tool': {
Expand Down
2 changes: 1 addition & 1 deletion src/zope/meta/toolkit/tox.ini.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[testenv]
skip_install = true
deps =
setuptools %(setuptools_version_spec)s
setuptools %(setuptools_version_spec)s
zc.buildout >= 3.1
wheel > 0.37
{% for line in testenv_deps %}
Expand Down
2 changes: 1 addition & 1 deletion src/zope/meta/zope-product/tox.ini.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[testenv]
skip_install = true
deps =
setuptools %(setuptools_version_spec)s
setuptools %(setuptools_version_spec)s
zc.buildout >= 3.1
wheel > 0.37
{% for line in testenv_deps %}
Expand Down

0 comments on commit 210c1a0

Please sign in to comment.