physfs.py 0.1.0__tar.gz → 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: physfs.py
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: PhysFS.py is a python wrapper for the PhysicsFS library.
5
5
  Home-page: https://github.com/shabbywu/physfs.py
6
6
  Author: shabbywu
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: physfs.py
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: PhysFS.py is a python wrapper for the PhysicsFS library.
5
5
  Home-page: https://github.com/shabbywu/physfs.py
6
6
  Author: shabbywu
@@ -8,7 +8,7 @@ from pathlib import Path
8
8
  from setuptools import Extension, setup
9
9
  from setuptools.command.build_ext import build_ext
10
10
 
11
- __version__ = "0.1.0"
11
+ __version__ = "0.2.0"
12
12
 
13
13
  # Convert distutils Windows platform specifiers to CMake -A arguments
14
14
  PLAT_TO_CMAKE = {
@@ -3,7 +3,7 @@ from pathlib import Path
3
3
  import physfs
4
4
 
5
5
  rootdir = Path(__file__).parent
6
- assert physfs.__version__ == '0.1.0'
6
+ assert physfs.__version__ == '0.2.0'
7
7
 
8
8
  physfs.init()
9
9
  assert physfs.ls("/") == []
File without changes
File without changes
File without changes
File without changes