mirror of
https://github.com/esphome/esphome.git
synced 2024-11-21 22:48:10 +01:00
[core] Remove references to deleted setup.py (#6757)
This commit is contained in:
parent
d410cc4f7b
commit
df838b5788
4 changed files with 5 additions and 4 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -61,7 +61,9 @@ jobs:
|
||||||
ESPHOME_NO_VENV: 1
|
ESPHOME_NO_VENV: 1
|
||||||
run: script/setup
|
run: script/setup
|
||||||
- name: Build
|
- name: Build
|
||||||
run: python setup.py sdist bdist_wheel
|
run: |-
|
||||||
|
pip3 install build
|
||||||
|
python3 -m build
|
||||||
- name: Publish
|
- name: Publish
|
||||||
uses: pypa/gh-action-pypi-publish@v1.8.14
|
uses: pypa/gh-action-pypi-publish@v1.8.14
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# the integration's code owner is automatically notified.
|
# the integration's code owner is automatically notified.
|
||||||
|
|
||||||
# Core Code
|
# Core Code
|
||||||
setup.py @esphome/core
|
pyproject.toml @esphome/core
|
||||||
esphome/*.py @esphome/core
|
esphome/*.py @esphome/core
|
||||||
esphome/core/* @esphome/core
|
esphome/core/* @esphome/core
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ BASE = """
|
||||||
# the integration's code owner is automatically notified.
|
# the integration's code owner is automatically notified.
|
||||||
|
|
||||||
# Core Code
|
# Core Code
|
||||||
setup.py @esphome/core
|
pyproject.toml @esphome/core
|
||||||
esphome/*.py @esphome/core
|
esphome/*.py @esphome/core
|
||||||
esphome/core/* @esphome/core
|
esphome/core/* @esphome/core
|
||||||
|
|
||||||
|
|
|
@ -229,7 +229,6 @@ def lint_ext_check(fname):
|
||||||
"docker/ha-addon-rootfs/**",
|
"docker/ha-addon-rootfs/**",
|
||||||
"docker/*.py",
|
"docker/*.py",
|
||||||
"script/*",
|
"script/*",
|
||||||
"setup.py",
|
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
def lint_executable_bit(fname):
|
def lint_executable_bit(fname):
|
||||||
|
|
Loading…
Reference in a new issue