Skip to content

Commit 77f0211

Browse files
committed
setuptools==80.9.0
1 parent 82e2af9 commit 77f0211

File tree

7 files changed

+41
-8
lines changed

7 files changed

+41
-8
lines changed
File renamed without changes.

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,41 @@ jobs:
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/

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
*
22
!.gitignore
3-
!.readthedocs.yaml
3+
!.bumpversion.cfg
44
!.coveragerc
5+
!.readthedocs.yaml
56

67
!CODE_OF_CONDUCT.md
78
!CONTRIBUTING.md
@@ -12,7 +13,6 @@
1213
!requirements.txt
1314
!requirements-dev.txt
1415
!setup.py
15-
!setup.cfg
1616

1717
!.github/
1818
!.github/**

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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)](
2626
https://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

docs/contributing.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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>`_.

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ Flask==2.3.3
55
interrogate==1.7.0
66
mypy==1.10.1
77
pytest==8.2.2
8-
setuptools==70.1.1
8+
setuptools==80.9.0
99
sphinx==7.3.7
1010
sphinx-rtd-theme==2.0.0

0 commit comments

Comments
 (0)