Skip to content

Commit

Permalink
improve release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielfalcao committed Feb 6, 2023
1 parent ee81f16 commit 4c9f121
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ push-release: dist # pushes distribution tarballs of the current version

# Prepares release of this package prior to pushing to pypi
build-release:
$(VENV)/bin/twine check dist/*.tar.gz
$(VENV)/bin/python setup.py build sdist
$(VENV)/bin/twine check dist/*.tar.gz

# Convenience target that runs all tests then builds and pushes a release to pypi
release: tests
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ def read_readme():
include_package_data=True,
packages=find_packages(exclude=["*tests*"]),
install_requires=install_requires,
long_description_content_type='text/x-rst',
entry_points={
"console_scripts": ["sure = sure.cli:entrypoint"],
},
Expand Down
2 changes: 1 addition & 1 deletion sure/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "2.1.0"
version = "2.0.0"

0 comments on commit 4c9f121

Please sign in to comment.