Skip to content

Commit

Permalink
sets up environment for 3.0a0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielfalcao committed Jan 15, 2024
1 parent b65631f commit 5ff28fc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
click==8.1.7
couleur==0.7.4
coverage==7.3.3
coverage==7.4.0
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,15 @@

if sys.version_info[0:2] in EXPL_NOT_SUPPORTED_VERSIONS:
raise SystemExit(
"sure does explicitly not support the following python versions "
"Sure does explicitly not support the following python versions "
"due to big incompatibilities: {0}".format(EXPL_NOT_SUPPORTED_VERSIONS)
)

if sys.version_info[0] < 3:
raise SystemExit(
"Sure no longer supports Python 2"
)


PROJECT_ROOT = os.path.dirname(__file__)

Expand Down Expand Up @@ -81,7 +86,7 @@ def read_readme():
return __doc__


install_requires = ["mock", "coverage==7.3.3", "click==8.1.7", "couleur==0.7.4"]
install_requires = ["mock", "coverage==7.4.0", "click==8.1.7", "couleur==0.7.4"]
tests_require = []
version = read_version()

Expand Down
2 changes: 1 addition & 1 deletion sure/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "3.0dev0"
version = "3.0a0"

0 comments on commit 5ff28fc

Please sign in to comment.