Skip to content

Commit

Permalink
updating version
Browse files Browse the repository at this point in the history
  • Loading branch information
martin de la gorce committed Jul 16, 2023
1 parent fbd9ca8 commit b3083a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [windows-latest]
python-version: [ "3.9", "3.10"]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019]
os: [ubuntu-20.04, windows-2019, macOS-11]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion deodr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Martin de La Gorce. 2019.
"""
__version__ = "0.2.0"
__version__ = "0.2.1"

__all__ = [
"Scene2D",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
include_dirs=[np.get_include()],
packages=find_packages(),
package_data={"deodr": ["*.pyx", "*.pxd", "data/*.*", "data/**/*.*"]},
long_description=open('readme.md', 'r').read(),
long_description_content_type='text/markdown',
long_description=open("readme.md", "r").read(),
long_description_content_type="text/markdown",
)

0 comments on commit b3083a4

Please sign in to comment.