Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
funilrys committed Jun 16, 2018
1 parent bde642b commit 71caa3a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion PyFunceble/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
from PyFunceble.production import Production

CURRENT_DIRECTORY = getcwd() + directory_separator
VERSION = "0.80.5.dev-beta"
VERSION = "0.80.6.dev-beta"

CONFIGURATION_FILENAME = ".PyFunceble.yaml"

Expand Down
4 changes: 2 additions & 2 deletions PyFunceble/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,12 @@ def _update_setup_py(self):
if self._is_dev_version():
regexes = {
'name="PyFunceble-dev"': r'name=".*"',
"Development Status :: 4 - Beta": r'Development\sStatus\s::.*"',
'"Development Status :: 4 - Beta"': r'"Development\sStatus\s::.*"',
}
elif self._is_master_version():
regexes = {
'name="PyFunceble"': r'name=".*"',
"Development Status :: 5 - Production/Stable": r'Development\sStatus\s::.*"',
'"Development Status :: 5 - Production/Stable"': r'"Development\sStatus\s::.*"',
}
else:
raise Exception("Please switch to `dev` or `master` branch.")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def _get_long_description():
classifiers=[
"Environment :: Console",
"Topic :: Internet",
"Development Status :: 4 - Beta,
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
Expand Down
2 changes: 1 addition & 1 deletion version.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
current_version: 0.80.5.dev-beta
current_version: 0.80.6.dev-beta
deprecated: [0.0.0, 0.0.1, 0.65.0, 0.67.1, 0.68.0, 0.69.3, 0.69.5, 0.70.4, 0.71.2,
0.72.7, 0.73.1, 0.74.5, 0.75.1, 0.76.2, 0.77.0, 0.78.0, 0.79.1]
force_update:
Expand Down

0 comments on commit 71caa3a

Please sign in to comment.