Skip to content
This repository was archived by the owner on Apr 30, 2024. It is now read-only.

Commit dd483d8

Browse files
Merge pull request #187 from matthewbelisle-wf/RED-5091-3
RED-5091 - Fix pypi upload
2 parents 1705ad1 + e1a4f2d commit dd483d8

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Diff for: .github/workflows/publish.yml

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ jobs:
44
Publish:
55
runs-on: ubuntu-latest
66
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-python@v2
9+
with:
10+
python-version: 2.x
11+
- name: Install dependencies
12+
run: >-
13+
python -m pip install --user --upgrade setuptools wheel
14+
- name: Build
15+
run: >-
16+
python setup.py sdist bdist_wheel
717
- name: Publish package
818
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
919
uses: pypa/gh-action-pypi-publish@release/v1

Diff for: furious/_pkg_meta.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (1, 6, 2)
1+
version_info = (1, 6, 3)
22
version = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)