Skip to content

Commit

Permalink
Merge pull request #3208 from kif/python3_dev_tools
Browse files Browse the repository at this point in the history
use Python3 for all developer tools
  • Loading branch information
t20100 authored Oct 1, 2020
2 parents 8e58119 + 4d1db9d commit 1475eb1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions bootstrap.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#!/usr/bin/env python3
# coding: utf8
"""
Bootstrap helps you to test scripts without installing them
by patching your PYTHONPATH on the fly
Expand Down
6 changes: 3 additions & 3 deletions run_tests.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python
# coding: utf-8
#!/usr/bin/env python3
# coding: utf8
# /*##########################################################################
#
# Copyright (c) 2015-2018 European Synchrotron Radiation Facility
# Copyright (c) 2015-2020 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 2 additions & 3 deletions version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# coding: utf-8
# /*##########################################################################
#
Expand Down Expand Up @@ -53,7 +53,7 @@
__authors__ = ["Jérôme Kieffer"]
__license__ = "MIT"
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
__date__ = "28/02/2018"
__date__ = "30/09/2020"
__status__ = "production"
__docformat__ = 'restructuredtext'
__all__ = ["date", "version_info", "strictversion", "hexversion", "debianversion",
Expand Down Expand Up @@ -115,6 +115,5 @@ def calc_hexversion(major=0, minor=0, micro=0, releaselevel="dev", serial=0):

hexversion = calc_hexversion(*version_info)


if __name__ == "__main__":
print(version)

0 comments on commit 1475eb1

Please sign in to comment.