Skip to content

Commit

Permalink
package bump
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyagreco committed Nov 27, 2023
1 parent 7d87225 commit eaa171a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

- N/A

## [1.7.1]

- Updated package requirements

## [1.7.0]
Expand Down Expand Up @@ -60,7 +64,9 @@ All notable changes to this project will be documented in this file.

### Initial Release

[Unreleased]: https://github.com/joeyagreco/sleeper/compare/v1.7.0...HEAD
[Unreleased]: https://github.com/joeyagreco/sleeper/compare/v1.7.1...HEAD

[1.7.1]: https://github.com/joeyagreco/sleeper/releases/tag/v1.7.1

[1.7.0]: https://github.com/joeyagreco/sleeper/releases/tag/v1.7.0

Expand Down
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,15 @@ test:
.PHONY: up-reqs
up-reqs:
@pipreqs --force

.PHONY: pkg-build
pkg-build:
@python3 setup.py sdist bdist_wheel

.PHONY: pkg-test
pkg-test:
@python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*

.PHONY: pkg-prod
pkg-prod:
@python3 -m twine upload dist/*
4 changes: 3 additions & 1 deletion requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
black==23.3.0
autoflake==2.1.1
isort==5.12.0
pytest==7.4.3
pytest==7.4.3
twine==4.0.2
wheel==0.42.0
2 changes: 1 addition & 1 deletion sleeper/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.7.0"
__version__ = "1.7.1"

# minimum supported Python version
__version_minimum_python__ = "3.10"

0 comments on commit eaa171a

Please sign in to comment.