File tree Expand file tree Collapse file tree 7 files changed +41
-8
lines changed
Expand file tree Collapse file tree 7 files changed +41
-8
lines changed File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5757 - name : Documentation coverage with interrogate
5858 run : |
5959 interrogate -vv bobocep --fail-under 100
60+
61+ cd :
62+ name : CD
63+ needs : ci
64+ runs-on : ${{ matrix.os }}
65+ strategy :
66+ matrix :
67+ os : [ ubuntu-latest ]
68+ python-version : [ "3.9" ]
69+ steps :
70+ - name : Checkout repository
71+ uses : actions/checkout@v2
72+
73+ - name : Set up Python ${{ matrix.python-version }}
74+ uses : actions/setup-python@v2
75+ with :
76+ python-version : ${{ matrix.python-version }}
77+
78+ - name : Install pypa/build
79+ run : >-
80+ python -m
81+ pip install
82+ build
83+ --user
84+
85+ - name : Build binary wheel and source tarball
86+ run : >-
87+ python -m
88+ build
89+ --sdist
90+ --wheel
91+ --outdir dist/
92+
93+ - name : Publish to PyPI Test
94+ uses : pypa/gh-action-pypi-publish@release/v1
95+ with :
96+ password : ${{ secrets.PYPI_TEST_TOKEN }}
97+ repository-url : https://test.pypi.org/legacy/
Original file line number Diff line number Diff line change 11*
22! .gitignore
3- ! .readthedocs.yaml
3+ ! .bumpversion.cfg
44! .coveragerc
5+ ! .readthedocs.yaml
56
67! CODE_OF_CONDUCT.md
78! CONTRIBUTING.md
1213! requirements.txt
1314! requirements-dev.txt
1415! setup.py
15- ! setup.cfg
1616
1717! .github /
1818! .github /**
Original file line number Diff line number Diff line change @@ -24,8 +24,6 @@ https://app.fossa.com/projects/git%2Bgithub.com%2Fr3w0p%2Fbobocep?ref=badge_shie
2424
2525[ ![ JOSS] ( https://img.shields.io/badge/10.21105/joss.05858-red?label=JOSS )] (
2626https://doi.org/10.21105/joss.05858 )
27- [ ![ Donate] ( https://img.shields.io/badge/ko--fi-red?label=donate )] (
28- https://ko-fi.com/r3w0p )
2927<br />
3028
3129` BoboCEP ` is a [ Complex Event Processing] ( https://en.wikipedia.org/wiki/Complex_event_processing ) (CEP) engine
Original file line number Diff line number Diff line change @@ -13,5 +13,3 @@ Here are other ways through which you can contribute.
1313
1414* `Report any security vulnerabilities <https://github.com/r3w0p/bobocep/security/policy >`_
1515 that you become aware of.
16-
17- * Donate to the project via `Ko-fi <https://ko-fi.com/r3w0p >`_.
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ Flask==2.3.3
55interrogate == 1.7.0
66mypy == 1.10.1
77pytest == 8.2.2
8- setuptools == 70.1.1
8+ setuptools == 80.9.0
99sphinx == 7.3.7
1010sphinx-rtd-theme == 2.0.0
You can’t perform that action at this time.
0 commit comments