Skip to content

Commit da8fe76

Browse files
committed
Changed github actions for release.
1 parent 10a52db commit da8fe76

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.github/workflows/python-publish-release.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ on:
1010
jobs:
1111
deploy:
1212

13-
runs-on: ${{ matrix.os }}
14-
strategy:
15-
matrix:
16-
os: [macos-latest, ubuntu-latest, windows-latest]
13+
runs-on: ubuntu-latest
1714

1815
steps:
1916
- uses: actions/checkout@v2

setup.py

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,22 @@
33
with open('requirements.txt') as f:
44
requirements = f.read().splitlines()
55

6+
# read the contents of the README file
7+
from os import path
8+
this_directory = path.abspath(path.dirname(__file__))
9+
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
10+
long_description = f.read()
11+
12+
613
setup(name='simple_playgrounds',
7-
version='0.9.30',
14+
version='0.9.31',
815
description='Simulator for Reinforcement Learning',
916
author='Michael Garcia Ortiz',
1017
author_email='[email protected]',
1118
packages=find_packages(where="src"),
1219
package_dir={"": "src"},
1320
include_package_data=True,
14-
install_requires=requirements)
21+
install_requires=requirements,
22+
long_description=long_description,
23+
long_description_content_type='text/markdown'
24+
)

0 commit comments

Comments
 (0)