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
10 changes: 5 additions & 5 deletions .github/workflows/publishing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
suffix: ${{ steps.release.outputs.suffix }}
tag_name: ${{ steps.release.outputs.tag_name }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Extract tag and Details
id: release
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
needs: [details, check_pypi]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -97,7 +97,7 @@ jobs:
python setup.py sdist bdist_wheel

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v2
with:
name: dist
path: dist/
Expand All @@ -112,7 +112,7 @@ jobs:
id-token: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v2
with:
name: dist
path: dist/
Expand All @@ -133,7 +133,7 @@ jobs:
fetch-depth: 0

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v2
with:
name: dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="spicecode",
version="2.1.0", # version 2.0.0 = all features from N2
version="2.1.1", # version 2.0.0 = all features from N2
packages=find_packages(exclude=["spicecode-venv", "spicecode.egg-info"]),
install_requires=install_requires,
entry_points={
Expand Down