Skip to content

Commit

Permalink
Merge pull request #16 from fhswf/unittest
Browse files Browse the repository at this point in the history
Python: Update of version range to 3.10-3.13
  • Loading branch information
steveyuwono authored Oct 10, 2024
2 parents a21054e + 701c665 commit 99d2bdc
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
if: needs.deps_gen.outputs.trigger_build == 'true'
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- name: Checkout Codes
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
if: needs.deps_gen.outputs.trigger_build == 'true'
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.12']

steps:
- name: Checkout Codes
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
if: needs.deps_gen.outputs.trigger_build == 'true'
strategy:
matrix:
python-version: ['3.11']
python-version: ['3.12']

steps:
- name: Checkout Codes
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
if: needs.deps_gen.outputs.trigger_build == 'true'
strategy:
matrix:
python-version: ['3.11']
python-version: ['3.12']

steps:
- name: Checkout Codes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: [3.10]
steps:
- name: Checkout Codes
uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion doc/rtd/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
mlpro_int_gymnasium[full]>=1.0.2
mlpro_int_gymnasium>=1.0.2
mlpro_int_mujoco[full]>=1.0.1
gymnasium!=1.0.0
stable_baselines3>=2.3.0
torch>=2.0.0,<=2.3.1
numpy>=1.0.0,<=1.26.4
setuptools >= 75.0.0

sphinxcontrib-napoleon
sphinx-copybutton
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
mlpro_int_gymnasium[full]>=1.0.2
mlpro_int_gymnasium>=1.0.2
mlpro_int_mujoco[full]>=1.0.1
gymnasium!=1.0.0
stable_baselines3>=2.3.0
torch>=2.0.0,<=2.3.1
numpy>=1.0.0,<=1.26.4
setuptools >= 75.0.0
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,18 @@ classifiers =
package_dir =
= src
packages = find:
python_requires = >=3.9
python_requires = >=3.10
include_package_data = True

[options.packages.find]
where = src

[options.extras_require]
full =
mlpro_int_gymnasium[full]>=1.0.2
mlpro_int_gymnasium>=1.0.2
mlpro_int_mujoco[full]>=1.0.1
gymnasium!=1.0.0
stable_baselines3>=2.3.0
torch>=2.0.0,<=2.3.1
numpy>=1.0.0,<=1.26.4
setuptools >= 75.0.0
6 changes: 4 additions & 2 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
# Package dependencies for full installation
extras_require={
"full": [
"mlpro_int_gymnasium[full]>=1.0.2",
"mlpro_int_gymnasium>=1.0.2",
"mlpro_int_mujoco[full]>=1.0.1",
"gymnasium!=1.0.0",
"stable_baselines3>=2.3.0",
"torch>=2.0.0,<=2.3.1",
"numpy>=1.0.0,<=1.26.4"
"numpy>=1.0.0,<=1.26.4",
"setuptools >= 75.0.0"
],
},

Expand Down

0 comments on commit 99d2bdc

Please sign in to comment.