Skip to content

Commit 6c09833

Browse files
committed
0.17.0
1 parent d2f913b commit 6c09833

File tree

5 files changed

+107
-30
lines changed

5 files changed

+107
-30
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Upload Python Package
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
release-build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: "3.13"
20+
21+
- uses: astral-sh/setup-uv@v5
22+
23+
- name: Build release distributions
24+
run: uv build
25+
26+
- name: Upload distributions
27+
uses: actions/upload-artifact@v4
28+
with:
29+
name: release-dists
30+
path: dist/
31+
32+
pypi-publish:
33+
runs-on: ubuntu-latest
34+
needs:
35+
- release-build
36+
permissions:
37+
id-token: write
38+
39+
environment:
40+
name: pypi
41+
url: https://pypi.org/p/reloader.py
42+
43+
steps:
44+
- name: Retrieve release distributions
45+
uses: actions/download-artifact@v4
46+
with:
47+
name: release-dists
48+
path: dist/
49+
50+
- name: Publish release distributions to PyPI
51+
uses: pypa/gh-action-pypi-publish@release/v1
52+
with:
53+
packages-dir: dist/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 EcmaXp
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reloader.py"
3-
version = "0.16.3"
3+
version = "0.17.0"
44
description = "A simple script reloader"
55
license = "MIT"
66
authors = [{ name = "EcmaXp", email = "[email protected]" }]
@@ -10,13 +10,16 @@ classifiers = [
1010
"Development Status :: 4 - Beta",
1111
"Environment :: Console",
1212
"Intended Audience :: Developers",
13-
"Programming Language :: Python :: 3",
13+
"License :: OSI Approved :: MIT License",
14+
"Operating System :: OS Independent",
1415
"Programming Language :: Python :: 3 :: Only",
16+
"Programming Language :: Python :: 3",
1517
"Programming Language :: Python :: 3.10",
1618
"Programming Language :: Python :: 3.11",
1719
"Programming Language :: Python :: 3.12",
1820
"Programming Language :: Python :: 3.13",
1921
"Programming Language :: Python :: Implementation :: CPython",
22+
"Programming Language :: Python",
2023
"Topic :: Software Development :: Debuggers",
2124
"Topic :: Software Development :: Libraries :: Python Modules",
2225
"Topic :: Software Development :: Testing",

reloader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from watchdog.utils.event_debouncer import EventDebouncer
3535

3636
__author__ = "EcmaXp"
37-
__version__ = "0.16.3"
37+
__version__ = "0.17.0"
3838
__license__ = "MIT"
3939
__url__ = "https://pypi.org/project/reloader.py/"
4040
__all__ = [

uv.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)