dsff 1.0.4__tar.gz → 1.0.6__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.
- {dsff-1.0.4 → dsff-1.0.6}/.github/workflows/python-package.yml +31 -1
- {dsff-1.0.4/src/dsff.egg-info → dsff-1.0.6}/PKG-INFO +8 -5
- {dsff-1.0.4 → dsff-1.0.6}/README.md +2 -2
- {dsff-1.0.4 → dsff-1.0.6}/pyproject.toml +5 -2
- dsff-1.0.6/src/dsff/VERSION.txt +1 -0
- {dsff-1.0.4 → dsff-1.0.6/src/dsff.egg-info}/PKG-INFO +8 -5
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff.egg-info/SOURCES.txt +0 -1
- dsff-1.0.4/.github/workflows/pypi-publish.yml +0 -37
- dsff-1.0.4/src/dsff/VERSION.txt +0 -1
- {dsff-1.0.4 → dsff-1.0.6}/.gitignore +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/.readthedocs.yml +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/LICENSE +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/docs/coverage.svg +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/docs/mkdocs.yml +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/docs/pages/imgs/dsff-from.png +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/docs/pages/imgs/dsff-to.png +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/docs/pages/imgs/icon.png +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/docs/pages/imgs/logo.png +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/docs/pages/index.md +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/docs/pages/usage.md +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/docs/requirements.txt +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/requirements.txt +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/setup.cfg +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff/__common__.py +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff/__info__.py +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff/__init__.py +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff/arff.py +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff/csv.py +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff/dataset.py +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff.egg-info/dependency_links.txt +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff.egg-info/requires.txt +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/src/dsff.egg-info/top_level.txt +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/tests/__init__.py +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/tests/test_dsff.py +0 -0
- {dsff-1.0.4 → dsff-1.0.6}/tests/utils.py +0 -0
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
fail-fast: false
|
|
20
20
|
matrix:
|
|
21
21
|
os: [ubuntu-latest]
|
|
22
|
-
python-version: ["3.
|
|
22
|
+
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
23
23
|
steps:
|
|
24
24
|
- uses: actions/checkout@v3
|
|
25
25
|
- name: Set up Python ${{ matrix.python-version }}
|
|
@@ -77,3 +77,33 @@ jobs:
|
|
|
77
77
|
with:
|
|
78
78
|
github_token: ${{ secrets.github_token }}
|
|
79
79
|
branch: ${{ github.ref }}
|
|
80
|
+
deploy:
|
|
81
|
+
runs-on: ubuntu-latest
|
|
82
|
+
needs: coverage
|
|
83
|
+
steps:
|
|
84
|
+
- uses: actions/checkout@v3
|
|
85
|
+
with:
|
|
86
|
+
fetch-depth: 0
|
|
87
|
+
- name: Check for version change
|
|
88
|
+
uses: dorny/paths-filter@v2
|
|
89
|
+
id: filter
|
|
90
|
+
with:
|
|
91
|
+
filters: |
|
|
92
|
+
version:
|
|
93
|
+
- '**/VERSION.txt'
|
|
94
|
+
- if: steps.filter.outputs.version == 'true'
|
|
95
|
+
name: Cleanup README
|
|
96
|
+
run: |
|
|
97
|
+
sed -ri 's/^(##*)\s*:.*:\s*/\1 /g' README.md
|
|
98
|
+
awk '{if (match($0,"## Supporters")) exit; print}' README.md > README
|
|
99
|
+
mv -f README README.md
|
|
100
|
+
- if: steps.filter.outputs.version == 'true'
|
|
101
|
+
name: Build ${{ env.package }} package
|
|
102
|
+
run: python3 -m pip install --upgrade build && python3 -m build
|
|
103
|
+
- if: steps.filter.outputs.version == 'true'
|
|
104
|
+
name: Upload ${{ env.package }} to PyPi
|
|
105
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
106
|
+
with:
|
|
107
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
108
|
+
verbose: true
|
|
109
|
+
verify_metadata: false
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dsff
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: DataSet File Format (DSFF)
|
|
5
5
|
Author-email: Alexandre D'Hondt <alexandre.dhondt@gmail.com>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -686,14 +686,17 @@ Keywords: python,programming,dataset-file-format,dsff
|
|
|
686
686
|
Classifier: Development Status :: 5 - Production/Stable
|
|
687
687
|
Classifier: Environment :: Console
|
|
688
688
|
Classifier: Intended Audience :: Developers
|
|
689
|
+
Classifier: Intended Audience :: Information Technology
|
|
690
|
+
Classifier: Intended Audience :: Other Audience
|
|
689
691
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
690
|
-
Classifier: Programming Language :: Python :: 3
|
|
692
|
+
Classifier: Programming Language :: Python :: 3
|
|
693
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
691
694
|
Classifier: Programming Language :: Python :: 3.8
|
|
692
695
|
Classifier: Programming Language :: Python :: 3.9
|
|
693
696
|
Classifier: Programming Language :: Python :: 3.10
|
|
694
697
|
Classifier: Programming Language :: Python :: 3.11
|
|
695
698
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
696
|
-
Requires-Python: <4,>=3.
|
|
699
|
+
Requires-Python: <4,>=3.8
|
|
697
700
|
Description-Content-Type: text/markdown
|
|
698
701
|
License-File: LICENSE
|
|
699
702
|
|
|
@@ -703,8 +706,8 @@ License-File: LICENSE
|
|
|
703
706
|
|
|
704
707
|
[](https://pypi.python.org/pypi/dsff/)
|
|
705
708
|
[](https://python-dsff.readthedocs.io/en/latest/?badge=latest)
|
|
706
|
-
[](https://github.com/dhondta/python-dsff/actions/workflows/python-package.yml)
|
|
710
|
+
[](#)
|
|
708
711
|
[](https://pypi.python.org/pypi/dsff/)
|
|
709
712
|
[](https://snyk.io/test/github/packing-box/python-dsff?targetFile=requirements.txt)
|
|
710
713
|
[](https://pypi.python.org/pypi/dsff/)
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://pypi.python.org/pypi/dsff/)
|
|
6
6
|
[](https://python-dsff.readthedocs.io/en/latest/?badge=latest)
|
|
7
|
-
[](https://github.com/dhondta/python-dsff/actions/workflows/python-package.yml)
|
|
8
|
+
[](#)
|
|
9
9
|
[](https://pypi.python.org/pypi/dsff/)
|
|
10
10
|
[](https://snyk.io/test/github/packing-box/python-dsff?targetFile=requirements.txt)
|
|
11
11
|
[](https://pypi.python.org/pypi/dsff/)
|
|
@@ -16,13 +16,16 @@ authors = [
|
|
|
16
16
|
description = "DataSet File Format (DSFF)"
|
|
17
17
|
license = {file = "LICENSE"}
|
|
18
18
|
keywords = ["python", "programming", "dataset-file-format", "dsff"]
|
|
19
|
-
requires-python = ">=3.
|
|
19
|
+
requires-python = ">=3.8,<4"
|
|
20
20
|
classifiers = [
|
|
21
21
|
"Development Status :: 5 - Production/Stable",
|
|
22
22
|
"Environment :: Console",
|
|
23
23
|
"Intended Audience :: Developers",
|
|
24
|
+
"Intended Audience :: Information Technology",
|
|
25
|
+
"Intended Audience :: Other Audience",
|
|
24
26
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
25
|
-
"Programming Language :: Python :: 3
|
|
27
|
+
"Programming Language :: Python :: 3",
|
|
28
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
26
29
|
"Programming Language :: Python :: 3.8",
|
|
27
30
|
"Programming Language :: Python :: 3.9",
|
|
28
31
|
"Programming Language :: Python :: 3.10",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.0.6
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dsff
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: DataSet File Format (DSFF)
|
|
5
5
|
Author-email: Alexandre D'Hondt <alexandre.dhondt@gmail.com>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -686,14 +686,17 @@ Keywords: python,programming,dataset-file-format,dsff
|
|
|
686
686
|
Classifier: Development Status :: 5 - Production/Stable
|
|
687
687
|
Classifier: Environment :: Console
|
|
688
688
|
Classifier: Intended Audience :: Developers
|
|
689
|
+
Classifier: Intended Audience :: Information Technology
|
|
690
|
+
Classifier: Intended Audience :: Other Audience
|
|
689
691
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
690
|
-
Classifier: Programming Language :: Python :: 3
|
|
692
|
+
Classifier: Programming Language :: Python :: 3
|
|
693
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
691
694
|
Classifier: Programming Language :: Python :: 3.8
|
|
692
695
|
Classifier: Programming Language :: Python :: 3.9
|
|
693
696
|
Classifier: Programming Language :: Python :: 3.10
|
|
694
697
|
Classifier: Programming Language :: Python :: 3.11
|
|
695
698
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
696
|
-
Requires-Python: <4,>=3.
|
|
699
|
+
Requires-Python: <4,>=3.8
|
|
697
700
|
Description-Content-Type: text/markdown
|
|
698
701
|
License-File: LICENSE
|
|
699
702
|
|
|
@@ -703,8 +706,8 @@ License-File: LICENSE
|
|
|
703
706
|
|
|
704
707
|
[](https://pypi.python.org/pypi/dsff/)
|
|
705
708
|
[](https://python-dsff.readthedocs.io/en/latest/?badge=latest)
|
|
706
|
-
[](https://github.com/dhondta/python-dsff/actions/workflows/python-package.yml)
|
|
710
|
+
[](#)
|
|
708
711
|
[](https://pypi.python.org/pypi/dsff/)
|
|
709
712
|
[](https://snyk.io/test/github/packing-box/python-dsff?targetFile=requirements.txt)
|
|
710
713
|
[](https://pypi.python.org/pypi/dsff/)
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
# This workflow will deploy the Python package to PyPi.org
|
|
2
|
-
|
|
3
|
-
name: deploy
|
|
4
|
-
|
|
5
|
-
env:
|
|
6
|
-
package: dsff
|
|
7
|
-
|
|
8
|
-
on:
|
|
9
|
-
push:
|
|
10
|
-
branches:
|
|
11
|
-
- main
|
|
12
|
-
paths:
|
|
13
|
-
- '**/VERSION.txt'
|
|
14
|
-
workflow_run:
|
|
15
|
-
workflows: ["build"]
|
|
16
|
-
types: [completed]
|
|
17
|
-
|
|
18
|
-
jobs:
|
|
19
|
-
deploy:
|
|
20
|
-
runs-on: ubuntu-latest
|
|
21
|
-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
22
|
-
steps:
|
|
23
|
-
- uses: actions/checkout@v3
|
|
24
|
-
with:
|
|
25
|
-
fetch-depth: 0
|
|
26
|
-
- name: Cleanup README
|
|
27
|
-
run: |
|
|
28
|
-
sed -ri 's/^(##*)\s*:.*:\s*/\1 /g' README.md
|
|
29
|
-
awk '{if (match($0,"## Supporters")) exit; print}' README.md > README
|
|
30
|
-
mv -f README README.md
|
|
31
|
-
- run: python3 -m pip install --upgrade build && python3 -m build
|
|
32
|
-
- name: Upload ${{ env.package }} to PyPI
|
|
33
|
-
uses: pypa/gh-action-pypi-publish@release/v1
|
|
34
|
-
with:
|
|
35
|
-
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
36
|
-
verbose: true
|
|
37
|
-
verify_metadata: false
|
dsff-1.0.4/src/dsff/VERSION.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.0.4
|
|
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
|
|
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
|