Skip to content

Commit baebe5c

Browse files
author
Jiaaming
committed
prepare for v0.1.1
1 parent d0bbf00 commit baebe5c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/python-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v3
2727
with:
28-
python-version: '3.x'
28+
python-version: '>=3.8'
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
**/*.pyc
44
**/__pycache__
55
**/test.py
6-
snapsort.egg-info
76
.DS_Store
87
dist
9-
snap_sort/models
8+
snap_sort/models
9+
build
10+
snap_sort.egg-info/

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33
setup(
4-
name='snap-sort',
4+
name='cli-snapsort',
55
version='0.1.1',
66
packages=find_packages(),
77
install_requires=[

0 commit comments

Comments
 (0)