Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 338969a

Browse files
committedJan 15, 2024
Version 1.3.0
1 parent 3113756 commit 338969a

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed
 

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,8 @@ Rhodium.egg-info/
1313
examples/Languages/C/src/boost_1_56_0/
1414
examples/Basic/*_results.csv
1515
.DS_Store
16+
libtest.so
17+
test.dll
18+
test.o
19+
rhodium.cache
20+

‎README.md

+13
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,19 @@ plt.show()
131131
Check out the [examples](https://github.com/Project-Platypus/Rhodium/tree/master/examples) folder
132132
to see Rhodium in action!
133133

134+
## Publishing
135+
136+
To publish a new version to PyPI, use:
137+
138+
```bash
139+
python3 -m build
140+
python3 -m pip install --upgrade twine
141+
142+
# The following command publishes the build. Add `--repository testpypi` for testnig.
143+
# Use `__token__` for the username and the PyPI token to authenticate.
144+
python3 -m twine upload dist/*
145+
```
146+
134147
## References
135148

136149
1. Rhodium logo by Tyler Glaude, Creative Commons License, https://thenounproject.com/term/knight/30912/

‎rhodium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
__author__ = "David Hadka"
2020
__copyright__ = "Copyright 2015, David Hadka"
2121
__license__ = "GPLv3"
22-
__version__ = "1.2.0"
22+
__version__ = "1.3.0"
2323
__maintainer__ = "David Hadka"
2424
__email__ = "dhadka@users.noreply.github.com"
2525
__status__ = "Development"

0 commit comments

Comments
 (0)
Please sign in to comment.