Skip to content

Commit

Permalink
Try examples with different Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Sep 4, 2024
1 parent 541482b commit 0445c3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:

- name: Get minimum Python version
run: |
PYTHON_VERSION=$(cat pyproject.toml | grep "requires-python" | grep -Eo "[0-9]+\.[0-9]+")
#PYTHON_VERSION=$(cat pyproject.toml | grep "requires-python" | grep -Eo "[0-9]+\.[0-9]+")
PYTHON_VERSION="3.12"
echo "PYTHON_VERSION=${PYTHON_VERSION}" >> $GITHUB_ENV
- name: Set up Python ${{ env.PYTHON_VERSION }}
Expand Down
3 changes: 1 addition & 2 deletions rhodium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@
# You should have received a copy of the GNU General Public License
# along with Rhodium. If not, see <http://www.gnu.org/licenses/>.
__author__ = "David Hadka"
__copyright__ = "Copyright 2015, David Hadka"
__copyright__ = "Copyright 2015-2024, David Hadka"
__license__ = "GPLv3"
__version__ = "1.3.0"
__maintainer__ = "David Hadka"
__email__ = "[email protected]"
__status__ = "Development"

from .config import *
from .model import *
Expand Down

0 comments on commit 0445c3d

Please sign in to comment.