File tree Expand file tree Collapse file tree 4 files changed +23
-3
lines changed
Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
55## [ Unreleased]
66
7+ - N/A
8+
9+ ## [ 1.7.1]
10+
711- Updated package requirements
812
913## [ 1.7.0]
@@ -60,7 +64,9 @@ All notable changes to this project will be documented in this file.
6064
6165### Initial Release
6266
63- [ Unreleased ] : https://github.com/joeyagreco/sleeper/compare/v1.7.0...HEAD
67+ [ Unreleased ] : https://github.com/joeyagreco/sleeper/compare/v1.7.1...HEAD
68+
69+ [ 1.7.1 ] : https://github.com/joeyagreco/sleeper/releases/tag/v1.7.1
6470
6571[ 1.7.0 ] : https://github.com/joeyagreco/sleeper/releases/tag/v1.7.0
6672
Original file line number Diff line number Diff line change 2222.PHONY : up-reqs
2323up-reqs :
2424 @pipreqs --force
25+
26+ .PHONY : pkg-build
27+ pkg-build :
28+ @python3 setup.py sdist bdist_wheel
29+
30+ .PHONY : pkg-test
31+ pkg-test :
32+ @python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
33+
34+ .PHONY : pkg-prod
35+ pkg-prod :
36+ @python3 -m twine upload dist/*
Original file line number Diff line number Diff line change 11black==23.3.0
22autoflake==2.1.1
33isort==5.12.0
4- pytest==7.4.3
4+ pytest==7.4.3
5+ twine==4.0.2
6+ wheel==0.42.0
Original file line number Diff line number Diff line change 1- __version__ = "1.7.0 "
1+ __version__ = "1.7.1 "
22
33# minimum supported Python version
44__version_minimum_python__ = "3.10"
You can’t perform that action at this time.
0 commit comments