File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -51,4 +51,12 @@ https://www.moritzkoerber.com/posts/versioning-with-setuptools_scm/
5151
5252## TODOs  
5353
54- https://github.com/pypa/gh-action-pypi-publish/discussions/15 
54+ https://github.com/pypa/gh-action-pypi-publish/discussions/15 
55+ 
56+ ``` 
57+ git add .  
58+ git commit -m sync 
59+ git tag -a v0.1.0.dev0 
60+ python -m setuptools_scm 
61+ git push --follow-tags 
62+ ``` 
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ license = {file = "LICENSE.txt"}
1313[tool .scikit-build ]
1414metadata.version.provider  = " scikit_build_core.metadata.setuptools_scm" 
1515cmake.source-dir  = " resources/EnergyPlus" 
16+ wheel.py-api  = " cp38" 
1617wheel.packages  = [" packages/energyplus_core" 
1718wheel.install-dir  = " energyplus_core/lib" 
1819
@@ -29,3 +30,14 @@ test = ["pytest"]
2930[tool .pytest .ini_options ]
3031minversion  = " 6.0" 
3132testpaths  = [" ./tests" 
33+ 
34+ [tool .tox ]
35+ legacy_tox_ini  = """ 
36+ [tox] 
37+ envlist = py38,py39,py310,py311 
38+ 
39+ [testenv] 
40+ deps =  
41+     pytest 
42+ commands = pytest 
43+ """ 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments