File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
1010 runs-on : ubuntu-latest
1111 steps :
1212 - uses : actions/checkout@v4
13- - name : Set up Python 3.10
13+ - name : Set up Python 3.13
1414 uses : actions/setup-python@v5
1515 with :
16- python-version : " 3.10 "
16+ python-version : " 3.13 "
1717 - name : Generate
1818 run : |
1919 if ! which yq; then
Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ jobs:
1010 runs-on : ubuntu-latest
1111 steps :
1212 - uses : actions/checkout@v4
13- - name : Set up Python 3.10
13+ - name : Set up Python 3.13
1414 uses : actions/setup-python@v5
1515 with :
16- python-version : " 3.10 "
16+ python-version : " 3.13 "
1717 - name : Test
1818 run : |
1919 pip install .[dev]
20- nosetests
20+ python -m unittest discover -v -p 'test_*.py' -s test
2121 - name : Package
2222 run : |
2323 python -m pip install setuptools wheel
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ jobs:
1010 runs-on : ubuntu-latest
1111 steps :
1212 - uses : actions/checkout@v4
13- - name : Set up Python 3.10
13+ - name : Set up Python 3.13
1414 uses : actions/setup-python@v5
1515 with :
16- python-version : " 3.10 "
16+ python-version : " 3.13 "
1717 - name : Test
1818 run : |
1919 pip install .[dev]
20- nosetests
20+ python -m unittest discover -v -p 'test_*.py' -s test
Original file line number Diff line number Diff line change 1010 build :
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : release-drafter/release-drafter@v5
13+ - uses : release-drafter/release-drafter@v6
1414 env :
1515 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 99 build :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v2
13- - name : Set up Python 3.8
14- uses : actions/setup-python@v1
12+ - uses : actions/checkout@v4
13+ - name : Set up Python 3.13
14+ uses : actions/setup-python@v5
1515 with :
16- python-version : 3.8
16+ python-version : " 3.13 "
1717 - name : Test
1818 run : |
1919 pip install .[dev]
20- nosetests
20+ python -m unittest discover -v -p 'test_*.py' -s test
2121 - name : Package
2222 run : |
2323 python -m pip install setuptools wheel
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ htmlcov/
4040.coverage
4141.coverage. *
4242.cache
43- nosetests.xml
4443coverage.xml
4544* ,cover
4645.hypothesis /
@@ -64,4 +63,4 @@ target/
6463.ipynb_checkpoints
6564
6665.idea /
67- metal-api.json
66+ metal-api.json
Original file line number Diff line number Diff line change 2121 install_requires = REQUIRES ,
2222 extras_require = dict (
2323 dev = [
24- "nose" ,
2524 "coverage" ,
2625 ]
2726 ),
You can’t perform that action at this time.
0 commit comments