File tree 3 files changed +12
-5
lines changed
3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ jobs:
181
181
runs-on : ubuntu-latest
182
182
permissions :
183
183
id-token : write
184
+ attestations : write
184
185
185
186
# upload to PyPI only on release
186
187
if : github.event.release && github.event.action == 'published'
Original file line number Diff line number Diff line change 8
8
import logging
9
9
from typing import Any , Dict
10
10
11
- __version__ = "4.4.0-rc.1 "
11
+ __version__ = "4.4.0-rc.2 "
12
12
__all__ = [
13
13
"ASCReader" ,
14
14
"ASCWriter" ,
Original file line number Diff line number Diff line change @@ -117,13 +117,19 @@ Creating a new Release
117
117
- Update ``CONTRIBUTORS.txt `` with any new contributors.
118
118
- For larger changes update ``doc/history.rst ``.
119
119
- Sanity check that documentation has stayed inline with code.
120
- - Create a temporary virtual environment. Run ``python setup.py install `` and ``tox ``.
121
- - Create and upload the distribution: ``python setup.py sdist bdist_wheel ``.
122
- - Sign the packages with gpg ``gpg --detach-sign -a dist/python_can-X.Y.Z-py3-none-any.whl ``.
123
- - Upload with twine ``twine upload dist/python-can-X.Y.Z* ``.
124
120
- In a new virtual env check that the package can be installed with pip: ``pip install python-can==X.Y.Z ``.
125
121
- Create a new tag in the repository.
126
122
- Check the release on
127
123
`PyPi <https://pypi.org/project/python-can/#history >`__,
128
124
`Read the Docs <https://readthedocs.org/projects/python-can/versions/ >`__ and
129
125
`GitHub <https://github.com/hardbyte/python-can/releases >`__.
126
+
127
+
128
+ Manual release steps (deprecated)
129
+ ---------------------------------
130
+
131
+ - Create a temporary virtual environment.
132
+ - Build with ``pipx run build ``
133
+ - Create and upload the distribution: ``python setup.py sdist bdist_wheel ``.
134
+ - Sign the packages with gpg ``gpg --detach-sign -a dist/python_can-X.Y.Z-py3-none-any.whl ``.
135
+ - Upload with twine ``twine upload dist/python-can-X.Y.Z* ``.
You can’t perform that action at this time.
0 commit comments