myl-discovery 0.5.6__tar.gz → 0.5.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/.github/workflows/lint.yaml +2 -2
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/.github/workflows/pypi.yaml +2 -2
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/.github/workflows/release.yaml +2 -2
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/PKG-INFO +6 -1
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/myl_discovery.egg-info/PKG-INFO +6 -1
- myl_discovery-0.5.8/myl_discovery.egg-info/requires.txt +5 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/pyproject.toml +6 -6
- myl-discovery-0.5.6/myl_discovery.egg-info/requires.txt +0 -5
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/.github/dependabot.yml +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/.gitignore +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/HACKING.md +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/LICENSE +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/README.md +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/myl_discovery.egg-info/SOURCES.txt +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/myl_discovery.egg-info/dependency_links.txt +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/myl_discovery.egg-info/entry_points.txt +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/myl_discovery.egg-info/top_level.txt +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/myldiscovery/__init__.py +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/myldiscovery/__main__.py +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/myldiscovery/discovery.py +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/myldiscovery/main.py +0 -0
- {myl-discovery-0.5.6 → myl_discovery-0.5.8}/setup.cfg +0 -0
@@ -17,10 +17,10 @@ jobs:
|
|
17
17
|
permissions:
|
18
18
|
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
19
19
|
steps:
|
20
|
-
- uses: actions/checkout@
|
20
|
+
- uses: actions/checkout@v4
|
21
21
|
|
22
22
|
- name: Set up Python
|
23
|
-
uses: actions/setup-python@
|
23
|
+
uses: actions/setup-python@v5
|
24
24
|
with:
|
25
25
|
python-version: '3.x'
|
26
26
|
|
@@ -13,7 +13,7 @@ jobs:
|
|
13
13
|
contents: write
|
14
14
|
steps:
|
15
15
|
- name: Checkout code
|
16
|
-
uses: actions/checkout@
|
16
|
+
uses: actions/checkout@v4
|
17
17
|
with:
|
18
18
|
fetch-depth: 0
|
19
19
|
|
@@ -40,6 +40,6 @@ jobs:
|
|
40
40
|
echo "$EOF" >> $GITHUB_OUTPUT
|
41
41
|
|
42
42
|
- name: Create Release
|
43
|
-
uses: softprops/action-gh-release@
|
43
|
+
uses: softprops/action-gh-release@v2
|
44
44
|
with:
|
45
45
|
body: ${{ steps.changelog.outputs.changelog }}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: myl-discovery
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.8
|
4
4
|
Summary: email autodiscovery
|
5
5
|
Author-email: Philipp Schmitt <philipp@schmitt.co>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -683,6 +683,11 @@ Classifier: Programming Language :: Python :: 3
|
|
683
683
|
Requires-Python: >=3.8
|
684
684
|
Description-Content-Type: text/markdown
|
685
685
|
License-File: LICENSE
|
686
|
+
Requires-Dist: dnspython<3.0.0,>=2.7.0
|
687
|
+
Requires-Dist: exchangelib<6.0.0,>=5.0.0
|
688
|
+
Requires-Dist: requests<3.0.0,>=2.0.0
|
689
|
+
Requires-Dist: rich<14.0.0,>=13.0.0
|
690
|
+
Requires-Dist: xmltodict<1.0.0,>=0.14.1
|
686
691
|
|
687
692
|
# 📩 myl-discovery
|
688
693
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: myl-discovery
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.8
|
4
4
|
Summary: email autodiscovery
|
5
5
|
Author-email: Philipp Schmitt <philipp@schmitt.co>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -683,6 +683,11 @@ Classifier: Programming Language :: Python :: 3
|
|
683
683
|
Requires-Python: >=3.8
|
684
684
|
Description-Content-Type: text/markdown
|
685
685
|
License-File: LICENSE
|
686
|
+
Requires-Dist: dnspython<3.0.0,>=2.7.0
|
687
|
+
Requires-Dist: exchangelib<6.0.0,>=5.0.0
|
688
|
+
Requires-Dist: requests<3.0.0,>=2.0.0
|
689
|
+
Requires-Dist: rich<14.0.0,>=13.0.0
|
690
|
+
Requires-Dist: xmltodict<1.0.0,>=0.14.1
|
686
691
|
|
687
692
|
# 📩 myl-discovery
|
688
693
|
|
@@ -16,13 +16,13 @@ classifiers = [
|
|
16
16
|
"Programming Language :: Python :: 3",
|
17
17
|
]
|
18
18
|
dependencies = [
|
19
|
-
"dnspython
|
20
|
-
"exchangelib
|
21
|
-
"requests
|
22
|
-
"rich
|
23
|
-
"xmltodict
|
19
|
+
"dnspython >= 2.7.0, < 3.0.0",
|
20
|
+
"exchangelib >= 5.0.0, < 6.0.0",
|
21
|
+
"requests >= 2.0.0, < 3.0.0",
|
22
|
+
"rich >= 13.0.0, < 14.0.0",
|
23
|
+
"xmltodict >= 0.14.1, < 1.0.0"
|
24
24
|
]
|
25
|
-
version = "0.5.
|
25
|
+
version = "0.5.8"
|
26
26
|
|
27
27
|
[project.scripts]
|
28
28
|
myl-discovery = "myldiscovery:main"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|