Skip to content

Commit

Permalink
⚡️
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangyangcreate committed Jul 16, 2024
1 parent 702f441 commit a0e6c95
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ For detailed usage instructions, refer to the interface documentation section at

### 1. Import Modules

The latest version is Version: 1.0.4
The latest version is Version: 1.0.5

```python
sudo pip3 install exboard==1.0.4
sudo pip3 install exboard==1.0.5
```

When using functions, we import the specified module using the `import` keyword, or we can use `from module_name import function/class/method_name`:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "exboard"
version = "1.0.4"
version = "1.0.5"
authors = [
{ name="Allen", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='exboard',
version='1.0.4',
version='1.0.5',
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion src/exboard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# coding:utf-8
# Version: 1.0.4
# Version: 1.0.5

def get_linux_distribution():
try:
Expand Down

0 comments on commit a0e6c95

Please sign in to comment.