Skip to content

Commit

Permalink
Aligned versions of Python packages between requirements.txt and setu…
Browse files Browse the repository at this point in the history
…p.py
  • Loading branch information
flemming-n-larsen committed Feb 20, 2025
1 parent b673f53 commit 6453579
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bot-api/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Bot API is provided via a pip package.

### From the current directory:

```sh
```shell
pip install -e .
```

Expand Down
6 changes: 3 additions & 3 deletions bot-api/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pillow~=11.1.0
setuptools~=75.8.0
PyYAML~=6.0.2
pillow>=11
setuptools>=75
PyYAML>6
4 changes: 2 additions & 2 deletions bot-api/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
packages=find_packages(where='src') + find_packages(where='generated'),
python_requires='>=3.10',
install_requires=[
'pillow>11.0',
'PyYAML>6.0'
'pillow>11',
'PyYAML>6'
],
description='The Python bot API for Robocode Tank Royale',
long_description=open('README.md').read(),
Expand Down

0 comments on commit 6453579

Please sign in to comment.