Skip to content

Commit

Permalink
fix readthedocs error & up2 python3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
HowcanoeWang committed Jan 9, 2024
1 parent e5dd443 commit 56bc1eb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-20.04
tools:
python: "3.8"
python: "3.10"
# You can also specify other tool versions:
# nodejs: "16"
# rust: "1.55"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<p align="center">
<img alt="GitHub Actions Badge" src="https://github.com/UTokyo-FieldPhenomics-Lab/EasyIDP/actions/workflows/pytest.yml/badge.svg?style=plastic">
<img alt="GitHub code size in bytes" src="https://img.shields.io/tokei/lines/github/UTokyo-FieldPhenomics-Lab/EasyIDP?style=plastic">
<img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/easyidp">
<img alt="GitHub" src="https://img.shields.io/github/license/UTokyo-FieldPhenomics-Lab/EasyIDP?style=plastic">
<img alt="GitHub top language" src="https://img.shields.io/github/languages/top/UTokyo-FieldPhenomics-Lab/EasyIDP?style=plastic">
<img alt="GitHub Downloads" src="https://img.shields.io/github/downloads/UTokyo-FieldPhenomics-Lab/EasyIDP/total?label=github%20downloads&style=plastic">
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ EasyIDP (Easy Intermediate Data Processor) is a handy tool for dealing with regi

.. _Sphinx: http://sphinx-doc.org

.. image:: https://img.shields.io/tokei/lines/github/UTokyo-FieldPhenomics-Lab/EasyIDP?style=plastic
:alt: GitHub code size in bytes
.. image:: https://img.shields.io/pypi/pyversions/easyidp
:alt: PyPI - Python Version

.. image:: https://img.shields.io/github/license/UTokyo-FieldPhenomics-Lab/EasyIDP?style=plastic
:alt: GitHub
Expand Down
2 changes: 1 addition & 1 deletion easyidp/shp.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def _find_name_related_int_id(shp_fields, name_field):

return field_id

def _get_plot_name_template(roi_fields: dict, field_id:int | list, include_title:bool):
def _get_plot_name_template(roi_fields, field_id, include_title):
"""
Parameters
----------
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@ def parse_requirements_file(filename):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
],
python_requires='>=3.6, <4',
python_requires='>=3.7, <4',
project_urls={
'Documentation': 'https://easyidp.readthedocs.io/en/latest/',
'Source': 'https://github.com/UTokyo-FieldPhenomics-Lab/EasyIDP',
Expand Down

0 comments on commit 56bc1eb

Please sign in to comment.