Skip to content

Commit

Permalink
Merge 877885d into 4e403a9
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianolorenti committed Aug 18, 2022
2 parents 4e403a9 + 877885d commit ced180d
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 8 deletions.
8 changes: 8 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[bumpversion]
current_version = 2.0.0
commit = True
tag = True

[bumpversion:file:ceruleo/__init__.py]

[bumpversion:file:setup.cfg]
12 changes: 9 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,22 @@ on:

jobs:

doc:
publish:
if: "!contains(github.event.head_commit.message, 'Bump version')"
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v2
- name: Set up Python ${ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: FragileTech/bump-version
uses: FragileTech/bump-version@main
with:
commit_name: Version bumper
commit_email: lucianolorenti@gmail.com
login: lucianolorenti@gmail.com
token: "${{ secrets.TOKEN_GITHUB }}"
- name: Install pypa/build
run: >-
python -m
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Luciano Lorenti
Copyright (c) 2022 Luciano Lorenti

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ The source code is currently hosted on GitHub at:
https://github.com/lucianolorenti/ceruleo

```sh
git clone https://github.com/lucianolorenti/ruceruleol_pm
pip install [-e] rul_pm
pip install ceruleo
```


Expand Down
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

2 changes: 1 addition & 1 deletion ceruleo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
CACHE_PATH.mkdir(parents=True, exist_ok=True)


__version__ = 2.0
__version__ = "2.0.0"
8 changes: 8 additions & 0 deletions ceruleo/dataset/catalog/CMAPSS.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,14 @@ class CMAPSSDataset(AbstractLivesDataset):
[Dataset reference](https://data.nasa.gov/dataset/C-MAPSS-Aircraft-Engine-Simulator-Data/xaut-bemq)
Available models are:
- FD001
- FD002
- FD003
- FD004
Example:
``` py
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ dynamic = ["version"]

[project.optional-dependencies]
doc = ["mkdocs"]


0 comments on commit ced180d

Please sign in to comment.