Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/release-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build twine

pip install -r utils/requirements.txt

- name: Build package
run: python -m build
run: bash utils/build_package.sh

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
4 changes: 2 additions & 2 deletions .github/workflows/release-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build twine

pip install -r utils/requirements.txt
- name: Build package
run: python -m build
run: bash utils/build_package.sh

- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Repo specific
/dist/
/build/
.build
/MANIFEST

__pycache__/
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "universalpython"
version = "0.1.5"
version = "0.1.8"
authors = [
{name = "Saad Bazaz", email = "saadbazaz@hotmail.com"},
]
Expand Down
7 changes: 7 additions & 0 deletions static/paper/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*.aux
*.bbl
*.blg
*.brf
*.fls
*.log
*.synctex.gz
Binary file removed static/paper/IEEEtran_HOWTO copy.pdf
Binary file not shown.
Binary file removed static/paper/IEEEtran_HOWTO.pdf
Binary file not shown.
Loading
Loading