Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
VForiel committed Oct 22, 2022
1 parent b650c6e commit 7b41bc0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/archive.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Archive created at ./archives/2022-10-22_14298e9/1_My archive-p1=3.14,p2=42,p3=hello\n"
"Archive created at ./archives/2022-10-22_14298e9/2_My_archive-p1=3.14,p2=42,p3=hello\n"
]
}
],
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@

setup(
name="LRFutils",
version = "0.0.12",
version = "0.0.13",
description = 'Just a custom library to share with some colleagues. Use it at your own risks.',
author = 'Leirof',
author_email = 'vince.lrf@gmail.com',
url = 'https://github.com/LeiRoF/Utils',
readme = "README.md",
packages=['LRFutils'],
install_requires=requirements,
python_requires='>=3.10.0',
Expand Down
6 changes: 6 additions & 0 deletions upload_on_pypi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import os

# Remove old versions
if os.path.isdir("dist"):
for file in os.listdir("dist"):
os.remove("dist/" + file)

# Build and send package
os.system("python3 -m pip install --upgrade build")
os.system("python3 -m build -s")
os.system("python3 -m pip install --upgrade twine")
Expand Down

0 comments on commit 7b41bc0

Please sign in to comment.