Skip to content

Commit

Permalink
v4.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnz committed Oct 28, 2021
1 parent 5b4cd58 commit afd78a5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/REFEREE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# StoGrade Referee

StoGrade Referee is a tool that, for all intensive purposes, has been superseded by `stograde ci`.
StoGrade Referee is a tool that, for all intents and purposes, has been superseded by `stograde ci`.
Its codebase has not been updated in many years.
But, because the code still exists, here is the documentation that was created for it:

Expand Down
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@
sys.exit("The toolkit requires Python 3.6 or greater.\nYou have {}".format(sys.version_info))

install_requires = [
'PyYAML >= 5,< 7',
'requests >= 2.20.*',
'termcolor == 1.*',
'PyYAML>=5,< 7',
'requests>=2.20.*',
'termcolor==1.*',
'natsort==7.1.*',
'appdirs == 1.4.*',
'python-dateutil >= 2.7,< 2.9',
'PyInquirer == 1.0.*', # required by stograde web
'appdirs==1.4.*',
'python-dateutil>=2.7,< 2.9',
'PyInquirer==1.0.*', # required by stograde web
'google-api-python-client>=2.24,<2.29', # required by stograde drive
'google-auth-oauthlib == 0.4.*', # required by stograde drive
'six >= 1.13.0', # required by google-api-core
'setuptools >= 40.3.0', # required by google-auth
'google-auth-oauthlib==0.4.*', # required by stograde drive
'six>=1.13.0', # required by google-api-core
'setuptools>=40.3.0', # required by google-auth
]

# This allows us to use dataclasses in python 3.6
if sys.version_info < (3, 7):
install_requires.append('dataclasses >= 0.6')
install_requires.append('dataclasses>=0.6')

setup(
name='stograde',
version='4.4.0',
version='4.4.4',
description='The StoGrade Toolkit',
author='Hawken Rives',
author_email='hawkrives@gmail.com',
Expand Down

0 comments on commit afd78a5

Please sign in to comment.