Skip to content

Commit

Permalink
build: Be able to build wheels for publishing.
Browse files Browse the repository at this point in the history
Previously wheel would just be installed wherever we needed it but
python environment tooling seems to be moving away from that so
explicitly install it since we need it for building and publishing
wheels.
  • Loading branch information
feanil committed Apr 12, 2024
1 parent 1369f33 commit 9c678dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: 3.8

- name: Install pip
run: pip install -U pip
run: pip install -U pip wheel

- name: Build package
run: python setup.py sdist bdist_wheel
Expand Down
2 changes: 1 addition & 1 deletion ccx_keys/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""init"""

__version__ = '1.2.2'
__version__ = '1.3.0'

0 comments on commit 9c678dc

Please sign in to comment.